09.05.2009, 09:23
Quote:
Originally Posted by FreeSoul
How can I make a command like /jetpack,that will give the player a jetpack?
![]() |
pawn Code:
if(strcmp(cmdtext,"/jetpack",true) == 0)
{
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid,X,Y,Z);
CreatePickup(370,2,X,Y,Z);
SendClientMessage(playerid, COLOR_GREY, "* Spawned jetpack");
return 1;
}