Page 2 of 12
Re: Against bots
Posted: Sat Oct 31, 2009 8:16 am
by JIV
it work only for l2walker, not for l2net, etc..
still this one is most popular so it mostly ban noobs and test chars
Re: Against bots
Posted: Sat Oct 31, 2009 10:27 am
by Sadahar
The only solution i find (software) is a "log" that trac multiple clients with same ids that hunt all together.
This doesnt mean they are bots, but imagine you have 600 players online, and just 2 partys with that requirements, theres a good start for gms to investigate.
Re: Against bots
Posted: Sat Oct 31, 2009 11:20 am
by _DS_
"clients with same ids" ?

Re: Against bots
Posted: Sat Oct 31, 2009 11:31 am
by streamsss
Re: Against bots
Posted: Sat Oct 31, 2009 11:35 am
by gio
Probably he means IPs^^
What about Gameguard now? Does it make sense to enable it on the server?
Re: Against bots
Posted: Sat Oct 31, 2009 3:18 pm
by ZaKaX
gio wrote:
Probably he means IPs^^
What about Gameguard now? Does it make sense to enable it on the server?
Gameguard doesn't help...
GameGuard no ayuda ...
Gameguard nuk ndihmon...
Gameguard nicht hilft...
Gameguard 도움이되지 않는다 ...
Gameguard δεν βοηθά...
Gameguard nepadeda...
GameGuard không giúp...
Gameguard işe yaramazsa...
Re: Against bots
Posted: Sat Oct 31, 2009 3:22 pm
by RiZe
GameGuard is software build to protect itself and get the users mad
Re: Against bots
Posted: Sat Oct 31, 2009 3:48 pm
by _DS_
Gameguard is a software for preventing players from legal access to the private l2 servers (like l2j). This is only and single purpose.
Re: Against bots
Posted: Sat Oct 31, 2009 4:11 pm
by gio
Meaning it doesn't even protect against hacking tools?
Re: Against bots
Posted: Sat Oct 31, 2009 4:16 pm
by _DS_
gio wrote:Meaning it doesn't even protect against hacking tools?
Efficiency of this "protection" is zero.
Re: Against bots
Posted: Sat Oct 31, 2009 4:43 pm
by gio
_DS_ wrote:gio wrote:Meaning it doesn't even protect against hacking tools?
Efficiency of this "protection" is zero.
realy? Oo
Why does it exist then? lol
Re: Against bots
Posted: Sat Oct 31, 2009 5:40 pm
by caramon81
_DS_ wrote:gio wrote:Meaning it doesn't even protect against hacking tools?
Efficiency of this "protection" is zero.
was a few people it protected against keyloggers before. but that was WAYYYYYYYY back
Re: Against bots
Posted: Sun Nov 01, 2009 1:49 am
by eri
ZaKaX wrote:gio wrote:
Probably he means IPs^^
What about Gameguard now? Does it make sense to enable it on the server?
Gameguard doesn't help...
GameGuard no ayuda ...
Gameguard nuk ndihmon...
Gameguard nicht hilft...
Gameguard 도움이되지 않는다 ...
Gameguard δεν βοηθά...
Gameguard nepadeda...
GameGuard không giúp...
Gameguard işe yaramazsa...
hahaha lol with albanian part the right is (mos e çaj karrin lale )
about topic gio if u have any software to share no modding here .
Re: Against bots
Posted: Mon Nov 02, 2009 11:12 pm
by neo25
gio wrote:LOL
neo25 wrote:Subject: Against bots
gio wrote:Hello guys,
I just like to know your methods against bots on your servers.
thank you
gio
This is what I have used in the past. L2Walkers can still log into your server, but when they activate and try and do an action, it will kick the player and ban the account. Good Luck!
Code: Select all
Index: java/config/l2jmods.properties===================================================================--- java/config/l2jmods.properties (revision 2796)+++ java/config/l2jmods.properties (working copy)@@ -161,4 +161,9 @@ #---------------------------------- EnableWarehouseSortingClan = False EnableWarehouseSortingPrivate = False-EnableWarehouseSortingFreight = False\ No newline at end of file+EnableWarehouseSortingFreight = False++#---------------------------------+# Walker Protection+#---------------------------------+L2WalkerProtection = False\ No newline at end of fileIndex: java/net/sf/l2j/Config.java===================================================================--- java/net/sf/l2j/Config.java (revision 2796)+++ java/net/sf/l2j/Config.java (working copy)@@ -80,6 +80,7 @@ /******************************************************************************************************************************************************/ /** L2J Property File Definitions End Here**/ /******************************************************************************************************************************************************/@@ -560,6 +561,8 @@ public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_CLAN; public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE; public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_FREIGHT;+ // L2WalkerProtection+ public static boolean KICK_L2WALKER; /** ************************************************** **/ /** L2JMods Settings -End **/@@ -1767,6 +1770,8 @@ L2JMOD_ENABLE_WAREHOUSESORTING_CLAN = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingClan", "False")); L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingPrivate", "False")); L2JMOD_ENABLE_WAREHOUSESORTING_FREIGHT = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingFreight", "False"));+ // L2Walker Protection+ KICK_L2WALKER = Boolean.parseBoolean(L2JModSettings.getProperty("L2WalkerProtection", "False")); if (TVT_EVENT_PARTICIPATION_NPC_ID == 0) {Index: java/net/sf/l2j/gameserver/network/clientpackets/MoveBackwardToLocation.java===================================================================--- java/net/sf/l2j/gameserver/network/clientpackets/MoveBackwardToLocation.java (revision 2796)+++ java/net/sf/l2j/gameserver/network/clientpackets/MoveBackwardToLocation.java (working copy)@@ -23,6 +23,9 @@ import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.network.serverpackets.ActionFailed; import net.sf.l2j.gameserver.network.serverpackets.PartyMemberPosition;+import net.sf.l2j.gameserver.network.SystemMessageId;+import net.sf.l2j.gameserver.util.IllegalPlayerAction;+import net.sf.l2j.gameserver.util.Util; /** * This class ...@@ -71,6 +74,12 @@ catch (BufferUnderflowException e) { // ignore for now+ if(Config.KICK_L2WALKER)+ {+ L2PcInstance activeChar = getClient().getActiveChar();+ activeChar.sendPacket(SystemMessageId.HACKING_TOOL);+ Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " is trying to use l2walker! Character being kicked and account locked.", IllegalPlayerAction.PUNISH_KICKBAN);+ } } } Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java===================================================================--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 2796)+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (working copy)@@ -11971,4 +11971,13 @@ } } }++ /**+ * @param hacking_tool+ */+ public void sendPacket(SystemMessageId hacking_tool)+ {+ sendMessage("Please try again after closing unnecessary programs!");+ + } }
I just got this pm from neo25 lol! He thought he could kid me with that script xD
Kid you? I think not... I was trying to help you with detecting bots, but since you think it's a joke I won't offer anymore input. We see your maturity level when it comes to receiving help from others. There are lots of things you can do to combat having bots in a server and this is one of many tools that do work. Have fun with the bots on your server!
Re: Against bots
Posted: Mon Nov 02, 2009 11:32 pm
by Gleamor
Dude, I was a DEV on neo25's server. I saw, first hand, players attempt to use walker and be auto kicked upon logging in. You think he was "kidding" you? You better check the script one more time and rethink who is kidding who.