[Bug] Banned From This Server -
qmnty - 12.01.2015
Anyone know why this bug it's happen?
By the way the player that caused that bug, not banned from server.
How to fix that?
I'm using mysql plugin.
And otherwise, byte of download rate when connect to server up to 50Kb++
Why that bug is happen??
Thanks
Re: [Bug] Banned From This Server -
CalvinC - 12.01.2015
The bug that says "You are banned from this server"?
Either you have a faulthy "Ban(playerid)" somewhere or it's the known SA-MP bug.
Can happen to all servers sometimes that it closes connection by sending that message, just relog.
Re: [Bug] Banned From This Server -
iCurse - 12.01.2015
Sir,
You might have accidentally added this on your GM/FS
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/Ban", cmdtext, true, 10) == 0) //Your command
{
Ban(playerid); //This will ban the player that used the command "/Ban"
return 1;
}
return 0;
}
If you did, you must go to your SAMP Folder location(Where you are doing your Scripts like that.) and you will see a "SAMP.BAN", open it with NOTEPAD++/Notepad/Wordpad etc... And remove your name in it.
Re: [Bug] Banned From This Server -
qmnty - 13.01.2015
Thanks for reply.
But i'm not using that command.
It happen sometimes when player incomming to server.
And client networks stats, download rate up to 50++KB/s
Re: [Bug] Banned From This Server -
AAleks123321 - 13.01.2015
It happens to me when I log onto servers, faulty bug that happens with SA:MP I guess..
Re: [Bug] Banned From This Server -
CalvinC - 13.01.2015
Yes it's a SAMP bug then, it's already been reported alot.
I digged out a topic recently though, you can try putting this on a timer that repeats every 2 seconds.
pawn Код:
SendRconCommand("reloadbans");
Haven't tested, just found a topic saying that could fix it.