Jump to content
  • 0

[Requst qustion]How to call xml files


Question

Posted

So lets start

i am using .aio command

and when i press shop/weapon its all ok

but THE PROBLEM is after that

when press s80 for example i doesnt do anytning

 

When i call the xml File

Htmls works fine the Xml files dont work

 

So Can someone tell how to call the Xml files on java Code ?

 

I use L2JGracia Epilogue !!!!

 

 

So i want this think

 

 

35bbj2u.png

Recommended Posts

  • 0
Posted

<a action="bypass -h npc_%objectId%_multisell 90042">somethinghere</a>

bypass -h npc_ i am not using Npc

i am using the command .aio

also i must add your code on bypasstoserver?

because i have only MulltisellChoose.java

 

 

Edited: i found  Multisell.java

  • 0
Posted

<a action="bypass -h npc_%objectId%_multisell 90042">somethinghere</a>

bypass -h npc_ i am not using Npc

i am using the command .aio

also i must add your code on bypasstoserver?

because i have only MulltisellChoose.java

 

 

Edited: i found  Multisell.java

  • 0
Posted

bypass -h npc_ i am not using Npc

i am using the command .aio

also i must add your code on bypasstoserver?

because i have only MulltisellChoose.java

 

you can open a html with your code and add this <a action.... to it as Mhoska suggested, or you can send the multisell directly to the player with the code I posted before.

  • 0
Posted

bypass -h npc_ i am not using Npc

i am using the command .aio

also i must add your code on bypasstoserver?

because i have only MulltisellChoose.java

 

you can open a html with your code and add this <a action.... to it as Mhoska suggested, or you can send the multisell directly to the player with the code I posted before.

  • 0
Posted

you can open a html with your code and add this <a action.... to it as Mhoska suggested, or you can send the multisell directly to the player with the code I posted before.

 

I guess its the easiest way, and less complicaded to do what you want to do.

  • 0
Posted

you can open a html with your code and add this <a action.... to it as Mhoska suggested, or you can send the multisell directly to the player with the code I posted before.

 

I guess its the easiest way, and less complicaded to do what you want to do.

  • 0
Posted

I guess its the easiest way, and less complicaded to do what you want to do.

Yours or Rizels ? :D

Also i didint realy undestand your way

 

else if (_command.startsWith("aio_store"))

                      {

                              if (Config.ENABLE_Aio_store)

                              {

                              String htmFile = "data/html/aio/aiostore.htm";

                              String htmContent = HtmCache.getInstance().getHtm(htmFile);

                              if (htmContent != null)

                              {

                                      NpcHtmlMessage infoHtml = new NpcHtmlMessage(1);

                                      infoHtml.setHtml(htmContent);

                                      activeChar.sendPacket(infoHtml);

                              }

                              }

                      }

because i want to call

data/multisell/90042.xml

and more like this

 

give me a sec to Upload a pic

  • 0
Posted

I guess its the easiest way, and less complicaded to do what you want to do.

Yours or Rizels ? :D

Also i didint realy undestand your way

 

else if (_command.startsWith("aio_store"))

                      {

                              if (Config.ENABLE_Aio_store)

                              {

                              String htmFile = "data/html/aio/aiostore.htm";

                              String htmContent = HtmCache.getInstance().getHtm(htmFile);

                              if (htmContent != null)

                              {

                                      NpcHtmlMessage infoHtml = new NpcHtmlMessage(1);

                                      infoHtml.setHtml(htmContent);

                                      activeChar.sendPacket(infoHtml);

                              }

                              }

                      }

because i want to call

data/multisell/90042.xml

and more like this

 

give me a sec to Upload a pic

  • 0
Posted

Yours or Rizels ? :D

Also i didint realy undestand your way

because i want to call

data/multisell/90042.xml

and more like this

 

give me a sec to Upload a pic

 

just paste this into  data/html/aio  and call it aiostore.htm and it will work

<html><body>Trader Lector:<br>
May I offer you a word of advice? The most expensive equipment isn't necessarily the best buy for you. A child cannot handle a two-handed sword, right? You must buy equipment appropriate for your class and experience. Now, select what you need.<br>
<a action="bypass -h npc_%objectId%_Chat 1">Buy Equipment.</a><br>
<a action="bypass -h npc_%objectId%_exc_multisell 003">Exchange equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000100">Try on Fighter equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000101">Try on Mystic equipment.</a><br>
<a action="bypass -h npc_%objectId%_Sell">Sell</a><br>
<a action="bypass -h npc_%objectId%_TerritoryStatus">Ask about the local lord and tax rate.</a><br>
<a action="bypass -h npc_%objectId%_Quest">Quest</a>
</body></html>

  • 0
Posted

Yours or Rizels ? :D

Also i didint realy undestand your way

because i want to call

data/multisell/90042.xml

and more like this

 

give me a sec to Upload a pic

 

just paste this into  data/html/aio  and call it aiostore.htm and it will work

<html><body>Trader Lector:<br>
May I offer you a word of advice? The most expensive equipment isn't necessarily the best buy for you. A child cannot handle a two-handed sword, right? You must buy equipment appropriate for your class and experience. Now, select what you need.<br>
<a action="bypass -h npc_%objectId%_Chat 1">Buy Equipment.</a><br>
<a action="bypass -h npc_%objectId%_exc_multisell 003">Exchange equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000100">Try on Fighter equipment.</a><br>
<a action="bypass -h npc_%objectId%_Wear 3000101">Try on Mystic equipment.</a><br>
<a action="bypass -h npc_%objectId%_Sell">Sell</a><br>
<a action="bypass -h npc_%objectId%_TerritoryStatus">Ask about the local lord and tax rate.</a><br>
<a action="bypass -h npc_%objectId%_Quest">Quest</a>
</body></html>

  • 0
Posted

you can send the multisell to the player with this method if I'm right:

 

public final void separateAndSend(int listId, L2PcInstance player, L2Npc npc, boolean inventoryOnly)

in Multisell.java. at least the Multisell bypasshandler use this method

 

so in your case you have to call this:

 

else if (_command.startsWith("aio_Agathions"))
			     {
			    	 if (Config.ENABLE_Aio_Agathions)
			    	 {
                                          MultiSell.getInstance().separateAndSend(90042, activeChar, (L2Npc) target, false);
                                          }
                                     {

 

errors

 

public final void separateAndSend(int listId, L2PcInstance player, L2Npc npc, boolean inventoryOnly);

 

and were i must add this

 

else if (_command.startsWith("aio_Agathions"))
			     {
			    	 if (Config.ENABLE_Aio_Agathions)
			    	 {
                                          MultiSell.getInstance().separateAndSend(90042, activeChar, (L2Npc) target, false);
                                          }
                                     {

Guest
This topic is now closed to further replies.



  • Posts

    • Looking to hire a skilled L2J developer or team to build a custom private server for solo play with advanced server-side AI bots. This is NOT for public launch — just a self-hosted project where I can simulate a full L2 experience alone or with a few friends. 🔹 What I Need A private L2J server ( High Five preferred, newer versions can work as well) with bots that: Farm 24/7 on their own (solo or in bot parties) Can be invited into party and follow basic orders (attack, follow, res, heal, etc.) Are able to join Olympiad, fight with proper logic (per class), and rank up Can coordinate for Raid Bosses (check spawn, move, assist, heal, DPS, etc.) Act like real players: town routines, rebuffing, restocking, even chatting if possible Have different roles: tanks, healers, nukers, archers, etc. Can interact through simple in-game commands or NPC interface 🔹 Your Job Set up the server and geodata Integrate a scalable bot system (written in Java or scriptable) Write clean, modular AI behavior (farming, PvP, party play, raid logic, etc.) Allow me to control/assign bots easily (in-game or config) Bonus: basic UI or GM panel for bot config 🔹 Payment Serious budget for serious work PayPal, crypto, or preferred method Project-based or hourly, negotiable Milestone-based OK 🔹 Contact Send me: Your experience with L2J or similar projects Any bot/AI systems you've built before Estimated timeframe Pricing expectations
    • Yeah, it’s wild how much gambling has changed. When I was growing up, even scratch-off tickets felt like a big thing, but now with so many casino apps and betting sites, it’s just everywhere. I know a few people who got caught up in online slots during lockdown and really struggled to stop, just because it was always on their phone.   I stick to in-game stuff like skin trading for games like CS2 or Dota, which to me feels less risky, especially if you know the value of the items. If you’re curious how these trades work or want to see some guides, just visit website—there’s a lot of info about trading without real gambling involved.
    • Yea, his work is amazing, very well done designs, but the timing is not really his thing. I’m waiting for logo and launcher design since December 2024, so 10 days is not really that much lol
    • Discord         :  utchiha_market Telegram        : https://t.me/utchiha_market Auto Buy Store  : https://utchihamkt.mysellauth.com/ Not sure if we’re legit? Check Our server — real reviews, real buyers https://discord.gg/uthciha-servicess  | https://campsite.bio/utchihaamkt  
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock