.cfgIs there a way to auto enable the hwid lock from the cfg (when the character is created)?
I didn't find any option for that ...
It's clearly from there ... BUT I want to make it automatically to be turned ON and to remove the option from the .cfg so, the player will have always this option ON..cfg
Overall, the idea is good. Ok, I'll do it.It's clearly from there ... BUT I want to make it automatically to be turned ON and to remove the option from the .cfg so, the player will have always this option ON.
I know that to block malicious users you can add them to the blacklist in the authserver, but how can I ban a user’s hard drive?Is there a way to auto enable the hwid lock from the cfg (when the character is created)?
I didn't find any option for that ...
You need to have anti cheat because they allow you to ban by hwidI know that to block malicious users you can add them to the blacklist in the authserver, but how can I ban a user’s hard drive?
Did you add so I can buy the updates?Overall, the idea is good. Ok, I'll do it.
yes, today will be commentedDid you add so I can buy the updates?
I don't see the point of even adding this to the package. Here's a ready-made solution.Did you add so I can buy the updates?
package services;
import l2.gameserver.listener.actor.player.OnPlayerEnterListener;
import l2.gameserver.model.Player;
public class HWIDLockListener implements OnPlayerEnterListener
{
@Override
public void onPlayerEnter(Player player)
{
String hwidLock = player.getHWIDLock();
if(hwidLock == null || hwidLock.isEmpty())
{
player.setHWIDLock(player.getNetConnection().getHwid());
}
}
}
Did you add so I can buy the updates?
Even if I set it with HWID lock and IP lock using the .menu command on another character, the admin account can still see that character’s IP and HWID. Isn’t it the same for you?Did you add so I can buy the updates?
It's the same. I wanted the HWID lock for other reasons.Even if I set it with HWID lock and IP lock using the .menu command on another character, the admin account can still see that character’s IP and HWID. Isn’t it the same for you?