I want a way to tell simba that when dead, do this. Is there any built in function / Way that will say the player is dead?
I want to create something easy like:
if (dead) then (action);
I want a way to tell simba that when dead, do this. Is there any built in function / Way that will say the player is dead?
I want to create something easy like:
if (dead) then (action);
I believe there is a text that comes up in the chat box correct? Try searching for that?
Finished B.S. Program in Radiology!!
Projects: A big one! Total secret! hehe
How would I do that? I'm kind of new to scripting.
There are some nice stuff built in for this actually so long as you use the SRL include
Simba Code:procedure SetupScript;//Wherever you do your one time initilization stuff
begin
Reincarnate:=true;//This makes FindNormalRandoms not end the script when it notices you've died.
end;
//whatever part of your code you want the death determination to be in
If(FindDead()) Then
begin
//action
end else
exit;//you aren't dead!
My Outdated ScriptsEdgeville Log Cutter | Edgeville AIO Jewelry | AIO Pickpocketer | Urn Activator | Slayer Tower | Slaying KuradalMy Working Scripts: Tutorials:Function Pointers and Why You Should Care! | Forms and Saving Settings | The Magic Behind Programming Tutorial | Recursive Recursion![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)