Page 1 of 1
Queen Ant and Ancient tome of demon issues
Posted: Mon Jan 25, 2010 9:26 pm
by florinel
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?
Re: Queen Ant and Ancient tome of demon issues
Posted: Tue Jan 26, 2010 3:20 pm
by Zoey76
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.
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.
Re: Queen Ant and Ancient tome of demon issues
Posted: Wed Jan 27, 2010 11:12 am
by jurchiks
tome of demon notdone, you can make it yourself, change handler to extractableitems and add an entry to data/extractable_items.csv
Re: Queen Ant and Ancient tome of demon issues
Posted: Thu Jan 28, 2010 3:10 am
by Uphillyout
change handler to extractableitems
can you help with this? what iam need to change?
Re: Queen Ant and Ancient tome of demon issues
Posted: Thu Jan 28, 2010 3:31 pm
by jurchiks
database>etcitem
update etcitem set handler="ExtractableItems" where item_id=9599
i hope you can handle the extractable_items.csv part
Re: Queen Ant and Ancient tome of demon issues
Posted: Sun Jan 31, 2010 8:47 pm
by crnicholls
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
Re: Queen Ant and Ancient tome of demon issues
Posted: Mon Feb 01, 2010 7:26 am
by janiii
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 [ ] )
Re: Queen Ant and Ancient tome of demon issues
Posted: Mon Feb 01, 2010 8:26 am
by crnicholls
ok so if I am understanding that correctly it would be displayed as
Code: Select all
# Ancient Tome of Demon9599;9600,1,9601,1,9602,1,33Item;Prod1,Quan1,Prod2,Quan2,Prod3,Quan3,chance
? 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

Re: Queen Ant and Ancient tome of demon issues
Posted: Mon Feb 01, 2010 7:57 pm
by alabamapj
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.
Re: Queen Ant and Ancient tome of demon issues
Posted: Mon Feb 01, 2010 11:50 pm
by crnicholls
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
Re: Queen Ant and Ancient tome of demon issues
Posted: Fri Mar 12, 2010 8:53 pm
by Blotch
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.
Re: Queen Ant and Ancient tome of demon issues
Posted: Sat Mar 13, 2010 2:30 pm
by jurchiks
AFAIK the extractable_skills are only needed if you need some checks done before opening it (or some effects?)