18.11.2012, 11:57
Erro:C:\Users\admin\Documents\SERVIDOR CFP\gamemodes\GAMEMODE.pwn(1143) : warning 213: tag mismatch[/pawn]
Linha 1143:
Comando Completo:
Linha 1143:
pawn Код:
if(sscanf(params, "d", PlayerB, Cargo)) return SendClientMessage(playerid, 0x1E90FF99, "Uso correto: /Promover [ID] [Cargo]");
pawn Код:
CMD:promover(playerid, params[])
{
new PlayerB, cargo;
if(sscanf(params, "d", 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;
}