[Resources] Script Library
Posted: Fri Nov 03, 2006 6:57 pm
Well I don't think anyone has done this yet, but to help some people out, I made this topic. Basically what you will do is post any scripts that you may find useful (Big Scripts, Small Useful ones), That everyone will be able to use pubically for their mods(As long as they give credit). So Instead of having scripts in many topics split all over, post any scripts here so that other users may learn from them or them.
These are resources for the Halo 2 Engine. Therefore in my opinion, should be kept.
This Topic May Be Used For:
-Script Posting
-Getting Scripts
-Requesting Scripts
-Script Help(We may fix your scripts.)
I'll start the topic with a simple script.
Random Gravity(Changes randomly in game):
In Order to make the above script work, replace your db.txt(In your ScriptTools folder with this one.
Everyone Else post yours to help the community.
Also... Post Saying...
<Name>
<Description>
<How To Use(If Needed)>
<Script>
That way it is organized.
These are resources for the Halo 2 Engine. Therefore in my opinion, should be kept.
This Topic May Be Used For:
-Script Posting
-Getting Scripts
-Requesting Scripts
-Script Help(We may fix your scripts.)
I'll start the topic with a simple script.
Random Gravity(Changes randomly in game):
Code: Select all
(script continuous random_gravity
(begin
(physics_set_gravity 0.5)
(sleep (random_range 900 1800))
(begin
(begin_random
(begin
(print "stopping")
(physics_set_gravity 1 (random_range 10 20))
(sleep (random_range 900 1800))
(print "restarting")
(physics_set_gravity 0.5 (random_range 10 20))
(sleep (random_range 900 1800))
)
(begin
(print "light grav")
(physics_set_gravity 0.8 (random_range 10 20))
(sleep (random_range 900 1800))
)
(begin
(print "light grav")
(physics_set_gravity 0.1 (random_range 10 20))
(sleep (random_range 900 1800))
)
(begin
(print "heavy grav")
(physics_set_gravity 2 (random_range 10 20))
(sleep (random_range 900 1200))
(physics_set_gravity 0.4 (random_range 10 20))
(sleep (random_range 900 1200))
)
)
)
)
)
Everyone Else post yours to help the community.
Also... Post Saying...
<Name>
<Description>
<How To Use(If Needed)>
<Script>
That way it is organized.