How Queen Ant works?
Posted: Mon Oct 25, 2010 8:25 am
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 4420
L2JDP Revision Number: 7668
Hi people,
this may not be to best place to ask that question but i hope i'm not doing anything wrong.
My problem is the QA: how does that rb work?
I mean: yesterday i teleported to the QA using the //admin teleport. There was a Queen ant larva here.
My char is level 85, i tried to attack the larva but she was immortal. I switched my char to level 40, hit the larva and she died. Since nothing was happening after the larva died, i manually spawned the Queen Ant.
I changed her level to 85 and //delete her. After that, i went to sleep and relogged today.
I went back to the QA spot and the larva was there again. Killed her (she wasn't immortal now!), she died and disappeared.
How do i make the real QA spawn? Do i need to wait for her after the larva dies? Are QA and larva independent?
I had a look at the QueenAnt.java but couldn't figure out that
hope someone can enlight me!
Bye and thx!
EDIT: i tried to /target Queen Ant. I CAN TARGET HER but i can't delete her or recall. Is somewhere inside the nest (above my head or underground) but i can't delete or recall...

The place where i am in this screenshot is the same coordinates of queen ant spawn inside the queenant.java file
» Find Revision
L2J Revision Number: 4420
L2JDP Revision Number: 7668
Hi people,
this may not be to best place to ask that question but i hope i'm not doing anything wrong.
My problem is the QA: how does that rb work?
I mean: yesterday i teleported to the QA using the //admin teleport. There was a Queen ant larva here.
My char is level 85, i tried to attack the larva but she was immortal. I switched my char to level 40, hit the larva and she died. Since nothing was happening after the larva died, i manually spawned the Queen Ant.
I changed her level to 85 and //delete her. After that, i went to sleep and relogged today.
I went back to the QA spot and the larva was there again. Killed her (she wasn't immortal now!), she died and disappeared.
How do i make the real QA spawn? Do i need to wait for her after the larva dies? Are QA and larva independent?
I had a look at the QueenAnt.java but couldn't figure out that
hope someone can enlight me!
Bye and thx!
EDIT: i tried to /target Queen Ant. I CAN TARGET HER but i can't delete her or recall. Is somewhere inside the nest (above my head or underground) but i can't delete or recall...

The place where i am in this screenshot is the same coordinates of queen ant spawn inside the queenant.java file
Code: Select all
if (status == DEAD) { // load the unlock date and time for queen ant from DB long temp = info.getLong("respawn_time") - System.currentTimeMillis(); // if queen ant is locked until a certain time, mark it so and start the unlock timer // the unlock time has not yet expired. if (temp > 0) startQuestTimer("queen_unlock", temp, null, null); else { // the time has already expired while the server was offline. Immediately spawn queen ant. L2GrandBossInstance queen = (L2GrandBossInstance) addSpawn(QUEEN, -21610, 181594, -5734, 0, false, 0); GrandBossManager.getInstance().setBossStatus(QUEEN, ALIVE); spawnBoss(queen); } }