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)
Lineage II Classic Einhovant new project is looking for a skilled Java Developer to join our team!
If you're passionate about game development and eager to contribute to this project, we'd love to hear from you.
For more details, feel free to send us a message. Let’s create something amazing together!
DISCORD :
https://discord.com/users/325653525793210378
utchiha_market
telegram :
https://t.me/utchiha_market
SELLIX STORE :
https://utchihamkt.mysellix.io/
Join our server for more products :
https://discord.gg/uthciha-services
https://campsite.bio/utchihaamkt
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