17.02.2014, 03:08
copei o VBan.inc pra pasta das includes e estou tendo esses erros:
a linha 1 й isso:
e a linha 43 й isso:
como arruma isso?
Код:
D:\SERVIDOR\Yaoi\pawno\include\VBan.inc(1) : error 010: invalid function or declaration D:\SERVIDOR\Yaoi\pawno\include\VBan.inc(43) : error 037: invalid string (possibly non-terminated string) D:\SERVIDOR\Yaoi\pawno\include\VBan.inc(43) : warning 215: expression has no effect D:\SERVIDOR\Yaoi\pawno\include\VBan.inc(43) : error 001: expected token: ";", but found "-identifier-" D:\SERVIDOR\Yaoi\pawno\include\VBan.inc(43) : error 017: undefined symbol "VBan" D:\SERVIDOR\Yaoi\pawno\include\VBan.inc(43) : fatal error 107: too many error messages on one line
pawn Код:
/* <--- linha 1
Nome: VBan
Descriзгo: Sistema de bans
Autor: ViniBorn
Contato : vini-elite@hotmail.com
*** *** *** ***** *** *** *** *** ***** ******** ****** ***
*** *** *** *** *** *** *** *** ** *** *** *** *** *** *** ***
*** *** *** *** *** *** *** *** ** *** *** *** *** *** *** ***
*** *** *** *** *** *** *** *** ** *** *** *** *** *** *** ***
****** *** *** ****** *** *** **** ***** *** *** *** ******
Nгo retire os crйditos.
Seu nome й valioso, nгo suje-o.
Observaзхes :
- O diretуrio padrгo para salvar os bans й : scriptfiles/bans. Crie a pasta bans.
*/
pawn Код:
stock VBanID(playerid,giveid,motivo[])
{
format(NICKBAN,20,VBanPlayer(giveid));
if(playerid > -1)
{
format(Vstring,128,"'- VBan -' O jogador %s foi banido por %s. Motivo: <--- linha 43
%s",VBanPlayer(giveid),VBanPlayer(playerid),motivo);
SendClientMessageToAll(CorBan,Vstring);
GetPlayerIp(giveid, VIP, sizeof(VIP));
format(Vnewban,32,BanDir,VIP);
DOF2_CreateFile(Vnewban);
VBanSaveInfo(playerid,Vnewban,motivo,false);
format(Vnewban,32,BanDir,VBanPlayer(giveid));
DOF2_CreateFile(Vnewban);
VBanSaveInfo(playerid,Vnewban,motivo,false);
}
else
{
format(Vnewban,32,BanDir,VBanPlayer(giveid));
format(Vstring,128,"'- VBan -' O jogador %s foi banido por VBot Admin(%s). Motivo:
%s",VBanPlayer(giveid),DOF2_GetString(Vnewban,"Admin"),motivo);
SendClientMessageToAll(CorBan,Vstring);
DOF2_CreateFile(Vnewban);
VBanSaveInfo(-1,Vnewban,motivo,false);
}
if(IsPlayerConnected(giveid))
VBanLoadInfo(giveid,Vnewban);
SetTimerEx("VBKick",300, false, "i", giveid);
return 1;
}