[Help]How to create Buffer with Item (ItemBuffer) L2J 

Newbie Spellweaver
Joined
Sep 27, 2006
Messages
20
Reaction score
0
Hi to all.

Some body know how to create a buffer with item?
click items in inventory and open htm with buff. Same npc buffer but with item.


only this, thanks
 
Last edited:
Example:

I have a :

-one item id=12345
-one quest 9999_npcbuffer
-htm for item 12345
-htm for npc buffer id=54321


I can see the first htm to npcbuffer but push the buttom and dont go to quest, why?
The quest its ok, becouse with npc only, I can buff.

htm to npc buffer:

<html>
<body>
<center>
<img src="L2UI_CH3.herotower_deco" width=256 height=32>
<br>
<button value="~L2xxx~" action="bypass -h npc_%objectId%_Quest 9999_NPCBuffer" width=75 height=21 back="L2UI_ch3.Btn1_normalOn" fore="L2UI_ch3.Btn1_normal">
<img src=Sek.start_logo width=256 height=256 align=center>
</body></html>

htm to item:

<html><body>
<font color="LEVEL">Lineage II New Player Guide</font><br>
<a action="bypass -h player_help tutorial/5588-1.htm">1. Movement</a><br>
<a action="bypass -h player_help tutorial/5588-2.htm">2. Point Of View </a><br>
<a action="bypass -h player_help tutorial/5588-3.htm">3. Mouse Button and Wheel Functions</a><br>
<a action="bypass -h player_help tutorial/5588-4.htm">4. Radar</a><br>
<a action="bypass -h player_help tutorial/5588-5.htm">5. Adena and Items</a><br>
<a action="bypass -h player_help tutorial/5588-6.htm">6. Quest Items</a><br>
<a action="bypass -h player_help tutorial/5588-7.htm">7. Putting On/Taking Off Equipment</a><br>
<a action="bypass -h player_help tutorial/5588-8.htm">8. Mini Map</a><br>
<a action="bypass -h player_help tutorial/5588-9.htm">9. Character's Death</a><br>
<a action="bypass -h player_help tutorial/5588-10.htm">10. HP & MP Regeneration</a><br>
<a action="bypass -h player_help tutorial/5588-11.htm">11. Shortcut Registration</a><br>
<a action="bypass -h player_help tutorial/5588-12.htm">12. Newbie Character Bonus</a><br>
<a action="bypass -h player_help tutorial/10600.htm">13. Newbie Character Bonus</a><br>
</body></html>

I dont stand why only see the first page to npcbuffer but I cant go to quest.


Thanks for answer!!!
 
Upvote 0
The script will not be the same, because you logically call a quest by an NPC, not a single HTML.

I think you need to make a new item instance for that, and allow jython to start from this instance. And, btw, it's java side...
 
Upvote 0
Back