16.11.2011, 15:41
Ajudou e muito +rep obrigado!,
ficou assim:
funcionou certinho
ficou assim:
pawn Код:
if(strcmp(cmd, "/comerhotdog",true)==0)
{
if (bHotDog[playerid] != 1)
{
SendClientMessage(playerid, COLOR_GREY, " Vocк nгo tem um hotdog!");
return 1;
}
new Float:vida;
if(vida == 100) return SendClientMessage(playerid, COLOR_GREY, "Vocк nгo pode comer, esta de barriga cheia!");
GetPlayerHealth(playerid, vida);
SetPlayerHealth(playerid, vida+20);
format(string, sizeof(string), "* Vocк comeu um hotdog.");
SendClientMessage(playerid, COLOR_WHITE, string);
format(string, sizeof(string), "* %s pega um hotdog e come.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
bHotDog[playerid] = 0;
return 1;
}