Hello guys. I am looking for code/line that prohibit dualbox inside a zone ..
Like when player enter in a Zone (L2RaidBoss as example) check Ip or HWID and not allow to a second char to enter and teleport back ..
Spoiler
protected void onEnter(final L2Character character)
{
if (_enabled)
{
if (character instanceof L2PcInstance)
{
// Thread.dumpStack();
L2PcInstance player = (L2PcInstance) character;
if (player.isGM() || Config.ALLOW_DIRECT_TP_TO_BOSS_ROOM)
{
player.sendMessage("You entered " + _zoneName);
Thank you in advance
Edit: i just see one more guy just LF that aswell (i guess perfect timming)
I present to your attention two options for the Hellbound location map
details in the archive
if you have larger effect files, you do not need to replace them
download
updates can be made behind the scenes, so if you catch a crit, post on the forum or download the archive, it may have already been fixed
additionally you can download
all la2 music from the latest version of the game 2025 download
the entire La2 ambisound from the latest version of the game 2025 download
Question
scraw
Hello guys. I am looking for code/line that prohibit dualbox inside a zone ..
Like when player enter in a Zone (L2RaidBoss as example) check Ip or HWID and not allow to a second char to enter and teleport back ..
protected void onEnter(final L2Character character)
{
if (_enabled)
{
if (character instanceof L2PcInstance)
{
// Thread.dumpStack();
L2PcInstance player = (L2PcInstance) character;
if (player.isGM() || Config.ALLOW_DIRECT_TP_TO_BOSS_ROOM)
{
player.sendMessage("You entered " + _zoneName);
Thank you in advance
Edited by scrawEdit: i just see one more guy just LF that aswell (i guess perfect timming)
L2jfrozen 1132. java 7
15 answers to this question
Recommended Posts