• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Feature [0.2.4+/0.3.4+]NG/Elf Lookbot detection


change
Code:
Logger->eFile("logs/otadmin.txt", getName() + " is suspected of using a lookbot.", true);
to
Code:
logger->eFile("logs/otadmin.txt", getName() + " is suspected of using a lookbot.", true);


sorry little spelling misstake.
fixed it in the main thread also.
 
TFS 0.4 logs can only be seen in the console does not have them in a scrapbook

change
Lua:
logger->eFile("logs/otadmin.txt", getName() + " is suspected of using a lookbot.", true);

for

Lua:
logger->efile = getDataDir() .. "/logs/otadmin.txt", getName() + " is suspected of using a lookbot.", true);

no tested :ninja:
 
TFS 0.4 logs can only be seen in the console does not have them in a scrapbook

change
Lua:
logger->eFile("logs/otadmin.txt", getName() + " is suspected of using a lookbot.", true);

for

Lua:
logger->efile = getDataDir() .. "/logs/otadmin.txt", getName() + " is suspected of using a lookbot.", true);

no tested :ninja:

They're stored in txt files, check your "logs" folder

try this instead:
Code:
logger->eFile("admin.txt", getName() + " is suspected of using a lookbot.", true);
 
I added this to my 0.2.7 distro and it causes the server to crash on start-up. I done everything correctly, anyone else getting this problem?

Halp plax :p
 
or instead:
PHP:
          Logger* logger = Logger::getInstance();
	  logger->eFile("admin.txt", getName() + " is suspected of using a lookbot.", true);

try

PHP:
		Logger::getInstance()->eFile("bots/botdetect.txt", getName() + " is suspected of using a lookbot.", true);
not tested :p
 
I added this to my 0.2.7 distro and it causes the server to crash on start-up. I done everything correctly, anyone else getting this problem?

Halp plax :p

send me a pm with your msn, gonna give you live help.

or instead:
PHP:
          Logger* logger = Logger::getInstance();
	  logger->eFile("admin.txt", getName() + " is suspected of using a lookbot.", true);

try

PHP:
		Logger::getInstance()->eFile("bots/botdetect.txt", getName() + " is suspected of using a lookbot.", true);
not tested :p

Should be working just fine aswell.
 
or instead:
PHP:
          Logger* logger = Logger::getInstance();
	  logger->eFile("admin.txt", getName() + " is suspected of using a lookbot.", true);

try

PHP:
		Logger::getInstance()->eFile("bots/botdetect.txt", getName() + " is suspected of using a lookbot.", true);
not tested :p


100 % work for tfs 0.4 rep ++

Lua:
[24/3/2010 12:26:7] Damian is suspected of using a lookbot.
[24/3/2010 12:30:23] Elite Odi is suspected of using a lookbot.
[24/3/2010 12:32:34] New Style is suspected of using a lookbot.
[24/3/2010 12:33:28] Loonatic is suspected of using a lookbot.
[24/3/2010 12:34:3] Poompoon is suspected of using a lookbot.
[24/3/2010 12:35:46] Blackend is suspected of using a lookbot.
[24/3/2010 12:36:20] Fetta is suspected of using a lookbot.
[24/3/2010 12:37:45] Spoqster is suspected of using a lookbot.
 
Doesn't work for TFS 0.3.6 which is very strange :O

I mean, I can't compile... it says that its some errors in creatures.h.. I haven't even touched that file
 
Doesn't work for TFS 0.3.6 which is very strange :O

I mean, I can't compile... it says that its some errors in creatures.h.. I haven't even touched that file

Post a screenshot of your errors or pm me with your msn.
 
For 0.3.5pl1

after:
PHP:
#include "chat.h"
add:
PHP:
#include "textlogger.h"

change:
PHP:
Logger* logger = Logger::getInstance();
logger->eFile("admin.txt", getName() + " is suspected of using a lookbot.", true);
to:
PHP:
      Loggar* loggar = Loggar::getInstance();
	  loggar->log("admin.txt", getName() + " is suspected of using a lookbot.", true);


100% works

[25/03/2010 14:13:28] Robbin is suspected of usung a lookbot
[25/03/2010 14:19:33] Robbin is suspected of usung a lookbot
[26/03/2010 16:18:57] Robbin is suspected of usung a lookbot
[27/03/2010 07:36:07] Shor Terox is suspected of usung a lookbot
[27/03/2010 09:42:51] Shor Terox is suspected of usung a lookbot
[27/03/2010 12:08:04] Shor Terox is suspected of usung a lookbot
[27/03/2010 12:46:55] Shor Terox is suspected of usung a lookbot
[27/03/2010 17:37:52] Robbin is suspected of usung a lookbot
[27/03/2010 19:04:25] Robbin is suspected of usung a lookbot
[27/03/2010 20:58:36] Robbin is suspected of usung a lookbot
[27/03/2010 22:09:57] Robbin is suspected of usung a lookbot
[28/03/2010 18:00:31] Jerzy is suspected of usung a lookbot
[28/03/2010 19:41:53] Jerzy is suspected of usung a lookbot
[28/03/2010 19:47:17] Jerzy is suspected of usung a lookbot
[28/03/2010 22:16:08] Robbin is suspected of usung a lookbot
[28/03/2010 22:19:53] Robbin is suspected of usung a lookbot
[28/03/2010 22:32:05] Robbin is suspected of usung a lookbot
[28/03/2010 22:35:28] Robbin is suspected of usung a lookbot
 
Last edited:
Back
Top