Jump to content
  • 0

[Requst qustion]How to call xml files


SkySkase

Question

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

Link to comment
Share on other sites

Recommended Posts

  • 0

<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

Link to comment
Share on other sites

  • 0

<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

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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

Link to comment
Share on other sites

  • 0

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

Link to comment
Share on other sites

  • 0

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>

Link to comment
Share on other sites

  • 0

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>

Link to comment
Share on other sites

  • 0

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);
                                          }
                                     {

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



  • Posts

    • ENGLISH As you know, we have always profiled in the development of Java emulators, we continue to do our favorite thing, and now we have the opportunity to provide you with services in the field of private development of L2 assemblies Essence, Classic and High Five, which we have been doing in recent years, we have not been working on basic builds for a long time and work only on contracts for the world's best projects. These are the best builds we can offer, we have test servers and we can show them to you on the test, and if you are very good at gameplay, you will see a big difference in the quality and detail of the official content compared to the basic builds. These are the best top solutions in the world, which are currently used to implement the largest projects in the world. We guarantee 100% implementation of all official content. If you have any questions about testing, discussions, etc., please contact our studio and we will discuss everything. At the moment, you can get acquainted with the preliminary information and prices for Private L2 contracts here: Private Server packs L2 Essence 464, 447, 388, 362, 286 protocols Private server packs L2Classic Private server pack High Five РУССКИЙ --------------------------------------------- Как вы знаете мы всегда профилировались на разработке в сфере Java эмуляторов, мы продолжаем заниматься своим любимым делом, и сейчас у нас появилась возможность предоставлять вам услуги в сфере приватных разработок L2 сборок Essence, Classic и High Five, которыми мы занимаемся последние годы, мы уже давно не работаем над базовыми сборками и работаем только на контрактах для лучших мировых проектов. Это лучшие сборки, которые мы можем предложить, у нас есть тестовые сервера, и мы можем показать их вам на тесте, и если вы очень хорошо разбираетесь в игровом процессе, вы увидите большую разницу в качестве и детализации официального контента по сравнению с базовыми сборками. Это лучшие топовые решения в мире, которые на данный момент используются для реализации крупнейших проектов в мире. Мы даем гарантии - 100% реализации всего официального контента. По вопросам тестирования, обсуждений и тд - пишите по контактам нашей студии и мы все обсудим. На данный момент вы можете ознакомиться с предварительной информацией и ценами на Приватные контракты L2 тут: Приватные Сборки L2 Essence 464, 447, 388, 362, 286 protocols Приватные Сборки L2Classic Приватная Сборка High Five -------------------------------------------------------------- Contacts: Telegram: https://t.me/L2scripts Whatsapp, Viber: +1 (916) 226 1910 С уважением, Администрация !
    • I can sell it. If you are interested just pm.
    • Its really not that hard to setup a server on a vps.
    • its AAC features... izi check add new acc here and later go to system folder and find last file with new date... have data.dat in system ? 
  • Topics

×
×
  • Create New...