Is there any way to make fusion cores to respawn?
-
- Posts: 15
- Joined: Sat Mar 25, 2006 11:56 pm
- Location: Texas...wOOt
- Contact:
Is there any way to make fusion cores to respawn?
basically what topic says....any way to make a scenery object respawn like the fusion cores to respawn?
- FleetAdmiralBacon
- Posts: 2377
- Joined: Sat Nov 26, 2005 7:01 pm
- Location: Ohio
- Contact:
![]() |
![]() |
![]() |
In Halo CE?
You can use a script to make them respawn every X game ticks.
You can use a script to make them respawn every X game ticks.

Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.
- kirby_422
- Posts: 250
- Joined: Mon Apr 11, 2005 4:07 pm
- Location: In front of my computer.. how do you think im talking to you?
![]() |
ya, a script something like thisFleetAdmiralBacon wrote:In Halo CE?
You can use a script to make them respawn every X game ticks.
(script continuous respawn
(sleep 60
(object_create_anew bomb)
))
(I think I spelled continuous wrong, but I dont care lol, it should be you that cares)
so, sleep means wait for so and so time, then preform the comand (witch is object_create_anew. object_create_anew either creates a new object, but if it exists already, it destroys it and makes a new one)
-
- Posts: 15
- Joined: Sat Mar 25, 2006 11:56 pm
- Location: Texas...wOOt
- Contact:
- FleetAdmiralBacon
- Posts: 2377
- Joined: Sat Nov 26, 2005 7:01 pm
- Location: Ohio
- Contact:
![]() |
![]() |
![]() |
Ug, in notepad, actually, then you save it as [something].hsc in [halo ce\data]\[your level]\scripts\
Then you start Sapien and name all your fusion cores "fc#" where # is a random number, you can increment for each one from 0.
Then, go file>compile scripts.
Save it and you're done.
The script I would use is:
Then you start Sapien and name all your fusion cores "fc#" where # is a random number, you can increment for each one from 0.
Then, go file>compile scripts.
Save it and you're done.
The script I would use is:
Code: Select all
(script continuous fus_cor
(sleep 300)
(object_create_anew_containing fc)
)

Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.