Queen Ant and Ancient tome of demon issues
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- florinel
- Posts: 10
- Joined: Sun Nov 29, 2009 6:21 am
Queen Ant and Ancient tome of demon issues
If you want to receive support we need this info to help you properly.
ยป Find Revision
L2J Revision 3813:
L2JDP Revision 6891:
Ant Queen is bugged on my server. it can be targeted but not killed. Are there any known issues, or any ideas for a resolve? It has been tried with non-GM char after quest completed and still it looks like it's bugged.
Ancient tome of demon should give out some items for the noblesse quest, but it doesn't when dbl clicked. Any known issues with this item?
ยป Find Revision
L2J Revision 3813:
L2JDP Revision 6891:
Ant Queen is bugged on my server. it can be targeted but not killed. Are there any known issues, or any ideas for a resolve? It has been tried with non-GM char after quest completed and still it looks like it's bugged.
Ancient tome of demon should give out some items for the noblesse quest, but it doesn't when dbl clicked. Any known issues with this item?
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: Queen Ant and Ancient tome of demon issues
Hello there.
What is the quest for Queen Ant? :p
Ancient Tome of the Demon are releated to Hellbound's quests, to get Dynasty stuff.
What is the quest for Queen Ant? :p
Ancient Tome of the Demon are releated to Hellbound's quests, to get Dynasty stuff.
Ancient Tome of the Demon can be opened by double-clicking them โ they randomly turn into Hidden First Pages, Hidden Second Pages and Demon Contracts.
Powered by Eclipse 4.34
| Eclipse Temurin 21
| MariaDB 11.3.2
| L2J Server 2.6.3.0 - High Five 
Join our Discord! 

- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: Queen Ant and Ancient tome of demon issues
tome of demon notdone, you can make it yourself, change handler to extractableitems and add an entry to data/extractable_items.csv
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
-
- Posts: 255
- Joined: Wed Jan 20, 2010 9:06 pm
Re: Queen Ant and Ancient tome of demon issues
can you help with this? what iam need to change?change handler to extractableitems
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: Queen Ant and Ancient tome of demon issues
database>etcitem
update etcitem set handler="ExtractableItems" where item_id=9599
i hope you can handle the extractable_items.csv part
update etcitem set handler="ExtractableItems" where item_id=9599
i hope you can handle the extractable_items.csv part
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- crnicholls
- Posts: 28
- Joined: Sat Nov 01, 2008 12:48 am
Re: Queen Ant and Ancient tome of demon issues
Ok in extractable_items.csv, since the ATD extracts into 3 diferent possible things, is it then set as
9599;9600,1,33
9599;9601,1,33
9599;9602,1,33
Just wanting to make sure I have the format & numbers right for chance.
Thanks
9599;9600,1,33
9599;9601,1,33
9599;9602,1,33
Just wanting to make sure I have the format & numbers right for chance.
Thanks
CRNicholls aka Moffet
- janiii
- L2j Veteran
- Posts: 4269
- Joined: Wed May 28, 2008 3:15 pm
- Location: Slovakia
Re: Queen Ant and Ancient tome of demon issues
no. 1 item = 1 line
Code: Select all
#itemId;Production1,Quantity1,Chance1[;Production2,Quantity2,Chance2... ;ProductionN,QuantityN,ChanceN]#itemId;[Production1,Quantity1,Production2,Quantity2,....],Chance1 - for 2 or more rewards (use witout [ ] )
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper โ
I don't give private support - PM will be ignored!
forum flOOder dancing dEVILoper โ
I don't give private support - PM will be ignored!
- crnicholls
- Posts: 28
- Joined: Sat Nov 01, 2008 12:48 am
Re: Queen Ant and Ancient tome of demon issues
ok so if I am understanding that correctly it would be displayed as
? Since there is more than 2 items that could be produced I didn't use brackets, and since i don't want all 3 dropping at the same time i'm assuming 33% chance
Sorry if I am not understanding but the way it's written out is a bit confusing
Code: Select all
# Ancient Tome of Demon9599;9600,1,9601,1,9602,1,33Item;Prod1,Quan1,Prod2,Quan2,Prod3,Quan3,chance
Sorry if I am not understanding but the way it's written out is a bit confusing

CRNicholls aka Moffet
-
- Posts: 12
- Joined: Mon Aug 15, 2005 2:55 am
Re: Queen Ant and Ancient tome of demon issues
Janii,
I was not ableto make it function using extractable_items, but was able to make it function using extractable_skills:
2440;1;9600,5,20;9601,5,40;9602,1,10
i get a poison like effect but it does produce the hfp,hsp,dc andthe occasional failure.
I was not ableto make it function using extractable_items, but was able to make it function using extractable_skills:
2440;1;9600,5,20;9601,5,40;9602,1,10
i get a poison like effect but it does produce the hfp,hsp,dc andthe occasional failure.
- crnicholls
- Posts: 28
- Joined: Sat Nov 01, 2008 12:48 am
Re: Queen Ant and Ancient tome of demon issues
I got my Ancient tome of demon opening the way I think it should using the format above so I no longer need a reply
Thanks
Thanks
CRNicholls aka Moffet
-
- Posts: 13
- Joined: Thu Nov 08, 2007 7:12 pm
Re: Queen Ant and Ancient tome of demon issues
Actually it'll be:
9599;9600,1,33;9601,1,33;9602,1,33
to get it to properly drop 1 of the choices at a 33% chance.
This works perfectly.
9599;9600,1,33;9601,1,33;9602,1,33
to get it to properly drop 1 of the choices at a 33% chance.
This works perfectly.
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: Queen Ant and Ancient tome of demon issues
AFAIK the extractable_skills are only needed if you need some checks done before opening it (or some effects?)
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.