20.04.2012, 15:31
Hey Guys
I made a basic command which allows the player to spawn an infernus infront of themselves.
Is there any way I can make the command usable once per life?
the code for the command is
Thanks once again
I made a basic command which allows the player to spawn an infernus infront of themselves.
Is there any way I can make the command usable once per life?
the code for the command is
Код:
if(strcmp("/inf", cmdtext, true, 4) == 0) { new Float:X, Float:Y, Float:Z, Float:Ang; GetPlayerPos(playerid, Float:X, Float:Y, Float:Z); GetPlayerFacingAngle(playerid, Float:Ang); CreateVehicle(411, X - 4.0, Y, Z, Ang + 90.0, -1, -1, 5000); return 1; }