03.10.2013, 19:20
Hello
i have a problem with making the settimer for my command
can you put it there for me
and i want that it will send a message for the player that has already used the command
"You need to wait before using this command agian!"
i have a problem with making the settimer for my command
can you put it there for me
and i want that it will send a message for the player that has already used the command
"You need to wait before using this command agian!"
pawn Код:
CMD:gunpack1(playerid,params[])
{
if(pInfo[playerid][Scores] >= 300)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "You have succesfully used gunpack1!");
GivePlayerWeapon(playerid, 11, 0);
GivePlayerWeapon(playerid, 22, 250);
GivePlayerWeapon(playerid, 29, 350);
GivePlayerWeapon(playerid, 30, 400);
}
else return SendClientMessage(playerid, COLOR_RED, "You need 300 score to use this command!");
return 1;
}