05.03.2014, 20:55
Ae pessoa estou com um problema ao tentar compilar um comando aqui! Espero que vocкs saibam oque estб de errado... Deem uma olhada por favor!
ERRO:
Linhas:
Se puderem me ajudar agradeзo..
ERRO:
pawn Код:
gamemodes\NTxMataMata.pwn(129) : warning 217: loose indentation
gamemodes\NTxMataMata.pwn(129) : error 017: undefined symbol "cmd"
gamemodes\NTxMataMata.pwn(133) : error 017: undefined symbol "cmd"
gamemodes\NTxMataMata.pwn(140) : error 017: undefined symbol "GetPlayerGrana"
gamemodes\NTxMataMata.pwn(142) : error 017: undefined symbol "GivePlayerGrana"
gamemodes\NTxMataMata.pwn(143) : error 017: undefined symbol "GivePlayerGrana"
gamemodes\NTxMataMata.pwn(145) : error 017: undefined symbol "string"
gamemodes\NTxMataMata.pwn(145) : error 017: undefined symbol "string"
gamemodes\NTxMataMata.pwn(145) : error 029: invalid expression, assumed zero
gamemodes\NTxMataMata.pwn(145) : fatal error 107: too many error messages on one line
pawn Код:
if(strcmp(cmd, "/transferir", true) == 0)
{
new plid, quantia;
if(sscanf(cmdtext, "s[12]ud", cmd, plid, quantia))
{
SendClientMessage(playerid, Vermelho, "Use: /transferir [id] [quantidade]");
return 1;
}
if(IsPlayerConnected(plid))
{
if(quantia > 0 && GetPlayerGrana(playerid) >= quantia)
{
GivePlayerGrana(playerid, -quantia);
GivePlayerGrana(plid, quantia);
format(string, sizeof(string), "Vocк transferiu para %s (ID: %d) a importвncia de $%d.", GetPlayerNameEx(plid), plid, quantia);
SendClientMessage(playerid, Amarelo, string);
format(string, sizeof(string), "Vocк recebeu $%d de %s (ID: %d).", quantia, GetPlayerNameEx(playerid), playerid);
SendClientMessage(plid, Amarelo, string);
}
else
{
SendClientMessage(playerid, Amarelo, "Valor invбlido.");
}
}
else
{
SendClientMessage(playerid, Amarelo, "ID invбlido, tente novamente.");
}
return 1;
}