17.02.2014, 23:22
Erros resolvidos
sobrou somente a warning
Linha
Codigo
sobrou somente a warning
pawn Код:
C:\Users\Administrador\Desktop\GM Ades\gamemodes\pGM.pwn(163) : warning 213: tag mismatch
pawn Код:
if(sscanf(params, "dd", PlayerB, Cargo)) return SendClientMessage(playerid, 0x1E90FF99, "Uso correto: /Promover [id] [cargo]");
pawn Код:
CMD:promover(playerid, params[])
{
new PlayerB, cargo;
if(sscanf(params, "dd", PlayerB, Cargo)) return SendClientMessage(playerid, 0x1E90FF99, "Uso correto: /Promover [id] [cargo]");
if(ProgressaoInfo[playerid][Cargo] != 10) return SendClientMessage(playerid, 0x1E90FF99, "Vocк nгo й lнder");
if(ProgressaoInfo[PlayerB][Membro] != ProgressaoInfo[playerid][Membro]) return SendClientMessage(playerid, 0x1E90FF99, "Este jogador nгo й da mesma organizaзгo que vocк.");
ProgressaoInfo[playerid][Cargo] = cargo;
return true;
}