12.03.2017, 15:03
Quote:
Alguem Pode me ajudar a criar um comando de plantгo tu bota /plantгo ai comeзa o plantгo demora 40 minutos ai quando der 40 minutos ele ganha um dinheiro aotomatico Se alguem puder ajuda
DOU VPS E UMA HOST DE SAMP 1000 SLOTS OBG <3 MINHA GM E dcmd e nгo e strcmp |
PHP код:
new TaPlantao[MAX_PLAYERS];
PHP код:
if(strcmp(cmd, "/plantao", true)==0)
{
if(TaPlantao[playerid] == 0)
{
SetTimerEx("Plantao", 2400000, 0, "i", playerid);
SendClientMessage(playerid, 0xFFFFFFAA, "| PLANTГO | Vocк comeзou o plantгo. Aguarde 40 minutos.");
TaPlantao[playerid] = 1;
return 1;
}
else{
SendClientMessage(playerid, 0xFFFFFFAA, "| ERRO | Vocк jб estб de plantгo.");
return 1;
}
return 1;
}
PHP код:
forward Plantao(playerid);
public Plantao(playerid)
{
SendClientMessage(playerid, 0xFFFFFFAA, "| PLANTГO | Vocк terminou o plantгo. Com isso, vocк ganhou ... de dinheiro.");
GivePlayerMoney(playerid, QuantiaQueVoceQuer);
TaPlantao[playerid] = 0;
return 1;
}
