NickNames "con" attack my server :( - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: NickNames "con" attack my server :( (
/showthread.php?tid=476686)
NickNames "con" attack my server :( -
par30 - 19.11.2013
What to do
Re: NickNames "con" attack my server :( -
woot - 19.11.2013
https://sampforum.blast.hk/showthread.php?tid=314320
Respuesta: NickNames "con" attack my server :( -
par30 - 19.11.2013
What is the solution
Respuesta: NickNames "con" attack my server :( -
par30 - 19.11.2013
joine 'con' frozed the server
Respuesta: NickNames "con" attack my server :( -
par30 - 19.11.2013
help me
Re: NickNames "con" attack my server :( -
linuxthefish - 19.11.2013
Quote:
Originally Posted by linuxthefish
Use MySQL, or add the number 1 in front of flat files...
|
poor con
Re: NickNames "con" attack my server :( -
J4mmyHD - 19.11.2013
Windows detects con as a DDoS name, search ****** for a fix or just get the person to change his name.
Re: NickNames "con" attack my server :( -
ReV. - 19.11.2013
pawn Код:
public OnPlayerConnect(playerid)
{
new name[24];
GetPlayerName(playerid, name, 24);
if (!strcmp( name, "con", true, 3))
{
new str[25]
format(str, sizeof(str), "%s_", name);
SetPlayerName(playerid, str);
SetTimerEx("OnPlayerConnect", 2000, false, "i", playerid);
return 1;
}
}