18.09.2013, 18:17
Does your /makebomb command have this?
pawn Code:
CMD:makebomb(playerid, params[])
{
if(BombUse[playerid] == 1)
{
BombUse[playerid] = 0;
//code to make bomb go off.
}
else SendClientMessage(playerid, COLOR_HERE, "ERROR: You need a bomb to use this command!");
return 1;
}