Eric Eisenberg
Registered User
Join date: 24 Dec 2004
Posts: 18
|
06-01-2005 18:10
How do I stop a script from executing programmatically? Thanks for the help. 
|
DoteDote Edison
Thinks Too Much
Join date: 6 Jun 2004
Posts: 790
|
06-01-2005 18:13
If you don't want to kill the script all together, then you could try using a deadend state:
deadend() { .....on_rez(integer blahblah) { ..........llResetScript(); .....} }
This would allow you to reset the script by re-rezzing the object.
|
Strife Onizuka
Moonchild
Join date: 3 Mar 2004
Posts: 5,887
|
06-01-2005 18:23
_____________________
Truth is a river that is always splitting up into arms that reunite. Islanded between the arms, the inhabitants argue for a lifetime as to which is the main river. - Cyril Connolly
Without the political will to find common ground, the continual friction of tactic and counter tactic, only creates suspicion and hatred and vengeance, and perpetuates the cycle of violence. - James Nachtwey
|
Eric Eisenberg
Registered User
Join date: 24 Dec 2004
Posts: 18
|
06-01-2005 19:04
Thank you! 
|