30.10.2010, 00:27
can someone make a simple command that gives you a jetpack?
} if(strcmp(cmd, "/jetpack", true) == 0) { SendClientMessage(playerid, 0xFF7F50AA, "You have jetpack now!"); SetPlayerSpecialAction(playerid,SPECIAL_ACTION_USEJETPACK); return 1; }
if(strcmp("/jetpack",cmdtext,true, 8) == 0)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_USEJETPACK);
SendClientMessage(playerid,COLOR,"Your now using a jetpack");
return 1;
}