/rac and /rtc - 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)
+--- Thread: /rac and /rtc (
/showthread.php?tid=388013)
/rac and /rtc -
Justin Reif - 27.10.2012
Hey guys! I really need these commands to get added to the ladmin script! can someone create them for me? It should support with ladmin (Level 4)
Thanks!
Re: /rac and /rtc -
JaKe Elite - 27.10.2012
this is not a Scripting Request Thread
Re: /rac and /rtc -
_Khaled_ - 27.10.2012
I'll give you mine, you edit it
I won't make it for admin level 4, do it yourself
PHP код:
CMD:rac(playerid, params[])
{
new string[128];
format(string, sizeof(string), "All vehicles have been respawned.");
SendClientMessageToAll(COLOR_BLUE, string);
for(new i = 0; i < MAX_VEHICLES; i++)
{
SetVehicleToRespawn(i);
}
return 1;
}