09.10.2012, 19:39
Bom estб dando o seguinte erro na minha stock do sistema de ban.
stock:
pawn Код:
C:\Users\Lucas\Desktop\Sprite Gaming - RPG\gamemodes\SG.pwn(355) : error 035: argument type mismatch (argument 3)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
pawn Код:
stock BanNick(playerid,motivo[])
{
GetPlayerName(playerid,DSName,sizeof(DSName));
format(Don,sizeof(Don),LOCALBANNICK,DSName);
DOF2_CreateFile(Don);
DOF2_SetInt(Don, "Motivo", motivo);// erro estб acusando nessa linha aqui.
format(Don,sizeof(Don),"-Aviso- O jogador %s foi banido [Motivo: %s]",DSName, motivo);
SendClientMessageToAll(-1,Don);
Kick(playerid);
}