SA-MP Forums Archive
[HELP] Object Destroyed [HELPP ME PLEASEE :(] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HELP] Object Destroyed [HELPP ME PLEASEE :(] (/showthread.php?tid=66219)



[HELP] Object Destroyed [HELPP ME PLEASEE :(] - Hot - 20.02.2009

Okay , i make my new map called Rebounce, and it have the orange balls , but when my car hit many times they destroy, and i need to restart my server to the map reset , cam I make a command to the balls reset ?

Bye ~


Re: [HELP] Object Destroyed - ICECOLDKILLAK8 - 20.02.2009

Just set a timer ever x amount of seconds to destroy the Balls then recreate them


Re: [HELP] Object Destroyed - Hot - 20.02.2009

How could I do it ?

I am noob


Re: [HELP] Object Destroyed [HELPP ME PLEASEE :(] - Hot - 20.02.2009

Sorry for double post , but HELP ME !


Re: [HELP] Object Destroyed [HELPP ME PLEASEE :(] - ICECOLDKILLAK8 - 20.02.2009

pawn Код:
// Top of script
forward RecreateObject();
// Under OnGameModeInit
SetTimer("RecreateObject", x, 1);
// At the bottom of your script
public RecreateObject()
{
DestroyObject(w/e);
CreateObject(w/e)
return 1;
}



Re: [HELP] Object Destroyed [HELPP ME PLEASEE :(] - Hot - 20.02.2009

errr... where I put the time ? ;x

And one more thing look it at sa-mp wiki

https://sampwiki.blast.hk/wiki/SetTimer

Need to be forwarded and public , you gave me stock , is correct ?


Re: [HELP] Object Destroyed [HELPP ME PLEASEE :(] - Hot - 20.02.2009

SORRY AGAIN FOR DOUBLE POST ... BUT ...

ANSWER THE QUESTION PLEASE !

where I put the time on the timer? I would like every 2 minutes (120 secs)

And one more thing look it at sa-mp wiki

https://sampwiki.blast.hk/wiki/SetTimer

Need to be forwarded and public , you gave me stock , is correct ?


Re: [HELP] Object Destroyed [HELPP ME PLEASEE :(] - ICECOLDKILLAK8 - 20.02.2009

DONT DOUBLE POST, And i fixed it nao


Re: [HELP] Object Destroyed [HELPP ME PLEASEE :(] - Hot - 20.02.2009

Thank you