[Ajuda] Erro
#1

Bom estб dando o seguinte erro na minha stock do sistema de ban.

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.
stock:

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);
}
Reply
#2

Troque
pawn Код:
DOF2_SetInt(Don, "Motivo", motivo);
Por
pawn Код:
DOF2_SetString(Don, "Motivo", motivo);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)