![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
If you want to make advertisement for your server, you should not forget the following data: - server name in the line for reference text - IP address - server rules? - URL to your server or use [servermonitor] » further information |
![]() |
Wenn du Werbung für deinen Server machen willst, dann solltest du folgende Angaben nicht vergessen: - Servername in der Betreffzeile - IP-Adresse - Serverregeln? - URL zu deinem Server oder benutze [servermonitor] » weitere Informationen |
![]() |
Si tu veux faire de la pube pour ton serveur, alors il faut pas oublier les points suivants: - Le nom du serveur dans la ligne du sujet - l'adresse IP - Les regles du serveur - URL vers ton serveur ou utilises le [servermonitor] » autres infos |
![]() ![]() |
![]() |
![]()
Post
#251
|
|
![]() ![]() Group: Members Joined: 26-April 10 From: Düsseldorf Member No.: 91640 ![]() |
pleace can you fix mine server all ok now: http://et.splatterladder.com/?mod=serverinfo&idx=743713 Regards. Your Server still uses real playernames for bots -------------------- |
|
|
![]()
Post
#252
|
|
![]() ![]() Group: Management Joined: 4-August 06 From: "Toscana of Germany" (Dreieck KA-LU-NW) Member No.: 31172 ![]() |
Wobei ich auch langsam aufpassen muss, hab den ersten Server gefunden auf dem mein Ping stabil bei 0 ist mit einigen Ausschlägen hoch auf 4!!!
Bald bin ich auch nur nochn Bot o.O ![]() -------------------- |
|
|
![]()
Post
#253
|
|
![]() ![]() Group: Members Joined: 26-April 10 From: Düsseldorf Member No.: 91640 ![]() |
Wobei ich auch langsam aufpassen muss, hab den ersten Server gefunden auf dem mein Ping stabil bei 0 ist mit einigen Ausschlägen hoch auf 4!!! Bald bin ich auch nur nochn Bot o.O ![]() Jo,aber das wird nur auf dem Server (Im Spiel) direkt angezeigt. Auf externen Listen wird immer der richtige Ping angezeigt.Und wenn du mit einem 0 Ping angezeigt werden solltest müsstest du schon direkt auf dem Server sitzen xD @Volker es muss ja auch mal nette Menschen geben :P -------------------- |
|
|
![]()
Post
#254
|
|
![]() ![]() Group: Members Joined: 28-December 09 From: Poland Member No.: 89254 ![]() |
http://et.splatterladder.com/?mod=serverinfo&idx=743464
This fakeserver is out of ranking, however it is still present in serverlist: http://obrazki.elektroda.pl/9914361700_1353161215.png -------------------- |
|
|
![]()
Post
#255
|
|
![]() ![]() Group: Management Joined: 7-March 06 From: Wehr Member No.: 23716 ![]() |
The rp offset is now set to 999, the server will still be visible @ SL, but at the end of the List.
Its redirecting to 208.167.247.135:27960 and "only" a honeypot. IMO not a good behavior to fool player trying to connect to a almost full server. -------------------- |
|
|
![]()
Post
#256
|
|
![]() ![]() Group: Members Joined: 28-December 09 From: Poland Member No.: 89254 ![]() |
-------------------- |
|
|
![]()
Post
#257
|
|
![]() ![]() Group: Management Joined: 7-March 06 From: Wehr Member No.: 23716 ![]() |
THX for message.
Server is faking and forwarding to 75.125.237.219:27960 Since same host , RP for this server also lowered. -------------------- |
|
|
![]()
Post
#258
|
|
![]() Group: Members Joined: 2-December 09 Member No.: 88722 ![]() |
Hello,
i just checked the etcom server 195.4.17.142:27960 and i see this "The ranking system is disabled for this server (The server reports invalid game data!)" and this "Server fakes data >>> -999 reputation points" whats wrong? Should i change something ? Thank you and best regards |
|
|
![]()
Post
#259
|
|
![]() ![]() Group: Management Joined: 7-March 06 From: Wehr Member No.: 23716 ![]() |
The issue was discovered here: http://forum.splatterladder.com/index.php?...amp;#entry82318
-------------------- |
|
|
![]()
Post
#260
|
|
![]() Group: Members Joined: 2-December 09 Member No.: 88722 ![]() |
The issue was discovered here: http://forum.splatterladder.com/index.php?...amp;#entry82318 Cant be because of combinedfixes.lua and the Youtubevideo is from 2008 and not from our server, seems like someone joined our server and changed his names.... -- limit fakeplayers DOS -- http://aluigi.altervista.org/fakep.htm -- used if cvar is not set -- confugration: -- set ip_max_clients cvar as desired. If not set, defaults to the value below. --FAKEPLIMIT_VERSION = "1.0" DEF_IP_MAX_CLIENTS = 3 et.G_Printf = function(...) et.G_Print(string.format(unpack(arg))) end function IPForClient(clientNum) -- TODO listen servers may be 'localhost' local userinfo = et.trap_GetUserinfo( clientNum ) if userinfo == "" then return "" end local ip = et.Info_ValueForKey( userinfo, "ip" ) -- find IP and strip port local ipstart, ipend, ipmatch = string.find(ip,"(%d+%.%d+%.%d+%.%d+)") -- don't error out if we don't match an ip if not ipstart then return "" end -- et.G_Printf("IPForClient(%d) = [%s]\n",clientNum,ipmatch) return ipmatch end function et_ClientConnect( clientNum, firstTime, isBot ) -- userinfocheck stuff. Do this before IP limit -- printf("connect %d\n",cno) local reason = check_userinfo( clientNum ) if ( reason ) then et.G_LogPrint(string.format("userinfocheck connect: client %d bad userinfo %s\n",clientNum,reason)) return "bad userinfo" end -- note IP validity should be enforced by userinfocheck stuff local ip = IPForClient( clientNum ) local count = 1 -- we count as the first one local max = tonumber(et.trap_Cvar_Get( "ip_max_clients" )) if not max or max <= 0 then max = DEF_IP_MAX_CLIENTS end -- et.G_Printf("firstTime %d\n",firstTime); -- it's probably safe to only do this on firsttime, but checking -- every time doesn't hurt much -- validate userinfo to filter out the people blindly using luigi's code local userinfo = et.trap_GetUserinfo( clientNum ) -- et.G_Printf("userinfo: [%s]\n",userinfo) if et.Info_ValueForKey( userinfo, "rate" ) == "" then et.G_Printf("fakeplimit.lua: invalid userinfo from %s\n",ip) return "invalid connection" end for i = 0, et.trap_Cvar_Get("sv_maxclients") - 1 do -- pers.connected is set correctly for fake players -- can't rely on userinfo being empty if i ~= clientNum and et.gentity_get(i,"pers.connected") > 0 and ip == IPForClient(i) then count = count + 1 if count > max then et.G_Printf("fakeplimit.lua: too many connections from %s\n",ip) -- TODO should we drop / ban all connections from this IP ? return string.format("only %d connections per IP are allowed on this server",max) end end end end -- NoAutoDeclare() |
|
|
![]()
Post
#261
|
|
![]() ![]() Group: Members Joined: 16-October 04 From: Ravensburg Member No.: 1013 ![]() |
http://et.splatterladder.com/?mod=serverinfo&idx=758851
They use DooC names for Bots! Thanks for disabling ^^ -------------------- ![]() ![]() |
|
|
![]()
Post
#262
|
|
![]() ![]() Group: Members Joined: 28-December 09 From: Poland Member No.: 89254 ![]() |
-------------------- |
|
|
![]()
Post
#263
|
|
![]() ![]() Group: Members Joined: 28-December 09 From: Poland Member No.: 89254 ![]() |
Bump, server still at the top of active ones.
-------------------- |
|
|
![]()
Post
#264
|
|
![]() ![]() Group: Management Joined: 4-August 06 From: "Toscana of Germany" (Dreieck KA-LU-NW) Member No.: 31172 ![]() |
Bump, server still at the top of active ones. "The ranking system is disabled for this server (The server reports invalid game data!)." -------------------- |
|
|
![]()
Post
#265
|
|
![]() ![]() Group: Members Joined: 28-December 09 From: Poland Member No.: 89254 ![]() |
New fake servers:
http://et.splatterladder.com/?mod=serverinfo&idx=758971 http://et.splatterladder.com/?mod=serverinfo&idx=758968 -------------------- |
|
|
![]() ![]() |
![]() |
Lo-Fi Version | Time is now: 5th July 2025 - 01:56 AM |