02.04.2012, 22:19
pawn Код:
// ------------------ [ Sistema de Planta , venda , e colheita ]-------------
if(strcmp(cmd, "/comprarsementes", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /comprarsementes [Quantidade]");
return 1;
}
new quantique = strval(tmp);
if(GetPlayerMoneyEx(playerid) <= 10*quantique)
{
Seeds[playerid] += quantique;
GivePlayerMoneyEx(playerid, -10*quantique);
}
else
{
SendClientMessage(playerid, 0xFF0000AA, "* Voce nao tem Dinheiro Sufuciente!");
}
}
return 1;
Alguem me pode ajudar?