-
Posts
835 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Mhoska
-
I never read the private servers launch but when I do it, I just see a lot of failz0rs, wich is your ddos protection company?
-
I never read the private servers launch but when I do it, I just see a lot of failz0rs, wich is your ddos protection company?
-
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
try to do it by youself and if you got any problems ill help you :) -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
try to do it by youself and if you got any problems ill help you :) -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
try to do it by youself and if you got any problems ill help you :) -
i just dont know if he means that he delete the table or if he still has it.
-
i just dont know if he means that he delete the table or if he still has it.
-
i just dont know if he means that he delete the table or if he still has it.
-
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
download this http://maxcheaters.com/forum/index.php?topic=209161.0 and add everything it says there and then else if (_command.startsWith("aio_store")) { if (Config.ENABLE_Aio_store) { String htmFile = "data/html/merchant/10002.htm"; String htmContent = HtmCache.getInstance().getHtm(htmFile); if (htmContent != null) { NpcHtmlMessage infoHtml = new NpcHtmlMessage(1); infoHtml.setHtml(htmContent); activeChar.sendPacket(infoHtml); } } } after this create a voiced command that call its and thats it, if you dont get it just stop using l2jserver. -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
download this http://maxcheaters.com/forum/index.php?topic=209161.0 and add everything it says there and then else if (_command.startsWith("aio_store")) { if (Config.ENABLE_Aio_store) { String htmFile = "data/html/merchant/10002.htm"; String htmContent = HtmCache.getInstance().getHtm(htmFile); if (htmContent != null) { NpcHtmlMessage infoHtml = new NpcHtmlMessage(1); infoHtml.setHtml(htmContent); activeChar.sendPacket(infoHtml); } } } after this create a voiced command that call its and thats it, if you dont get it just stop using l2jserver. -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
Oh Mighty thor save his soul, I just give you the whole code and the html so you can call all the xml files you want. -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
Oh Mighty thor save his soul, I just give you the whole code and the html so you can call all the xml files you want. -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
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> -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
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> -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
I guess its the easiest way, and less complicaded to do what you want to do. -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
I guess its the easiest way, and less complicaded to do what you want to do. -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
yeap but, doing a command for each xml isnt easier just to call a html and then just bypass the xml from there? -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
yeap but, doing a command for each xml isnt easier just to call a html and then just bypass the xml from there? -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
just do it like this and call a html and you just call the xml from inside using any gmshop that its already done. 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); } } } -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
just do it like this and call a html and you just call the xml from inside using any gmshop that its already done. 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); } } } -
oh didnt read, my bad.
-
oh didnt read, my bad.
-
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
not understand a word :( you doing a voicedcommand that call a html and then the html call the xmls? -
[Requst qustion]How to call xml files
Mhoska replied to SkySkase's question in Request Server Development Help [L2J]
not understand a word :( you doing a voicedcommand that call a html and then the html call the xmls? -
done

