if (getId() == 12019)
{
if (player.getLevel() < 40 || player.getLevel() < 49)
{
player.sendMessage("Only players with level 40-49 can enter on Queen Ant zone!");
player.teleToLocation(MapRegionTable.TeleportWhereType.Town);
return;
}
}
My initial plan was to port the Homunculus system from Live 502 to ClassicAden 502. But, when the interface for Homunculus is enabled, it has some hardcoded function that tries to load the dat files which leads to a crash since those files dont exist in ClassicAden. I was hoping to do some injection hoping, forcing the client to load the files.
Question
@BuennaVista
hello
i added in L2BossZone this
if (getId() == 12019) { if (player.getLevel() < 40 || player.getLevel() < 49) { player.sendMessage("Only players with level 40-49 can enter on Queen Ant zone!"); player.teleToLocation(MapRegionTable.TeleportWhereType.Town); return; } }1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now