cyta5 Posted May 12, 2018 Posted May 12, 2018 (edited) hello guys i want to make a back button but i dont know what i write... at voicedcommand you write <a action=\"bypass voiced_blablabla\">Back</a> but at instance ? the file name is L2DonateInstance.java and how i can make at at this file to use a button to open html file for example custom/donate/shop/dshop.html i tried this but does not work :/ "bypass -h npc_" + getObjectId() + "_Link custom/donate/shop/dshop.htm\" Edited May 26, 2018 by Solomun
0 melron Posted May 12, 2018 Posted May 12, 2018 convert all html from java into files (for many reasons) and then create your own method to handle byasses. see onBypassFeedBack of your instance how it works and make your own else if (command.startsWith("chat") then add your html . there are many examples for this one. in case you dont want to convert htmls you have to create methods that returning the html as a String. getHtml("data/donate/shop/dshop.htm") and on this getHtml() you have to create your own html via string builder and finally return it as string (sb.toString()).
0 protoftw Posted May 12, 2018 Posted May 12, 2018 You need a button that is going to return you to the main page? If you have the htmls then you can use them as redirecting.. For example you open your chat-11.htm and you want to go back to chat-10.htm Add chat-10 to the back button: action= "bypass -h npc_%objectId%_Chat 10"
0 cyta5 Posted May 12, 2018 Author Posted May 12, 2018 4 minutes ago, protoftw said: You need a button that is going to return you to the main page? If you have the htmls then you can use them as redirecting.. For example you open your chat-11.htm and you want to go back to chat-10.htm Add chat-10 to the back button: action= "bypass -h npc_%objectId%_Chat 10" html is in java file
0 SweeTs Posted May 12, 2018 Posted May 12, 2018 If you are not using 'chat' pages aka id-page_number then you should create bypasses at the instance. If bypass x - > send htm y. You can check even SchemeBuffer of aCis.
0 Solomun Posted May 26, 2018 Posted May 26, 2018 (edited) On 5/12/2018 at 3:58 PM, cyta5 said: ok thanks lock Locked and marked @melron 's answer. Edited May 26, 2018 by Solomun
Question
cyta5
hello guys i want to make a back button but i dont know what i write...
at voicedcommand you write <a action=\"bypass voiced_blablabla\">Back</a>
but at instance ? the file name is L2DonateInstance.java
and how i can make at at this file to use a button to open html file for example custom/donate/shop/dshop.html
i tried this but does not work :/
"bypass -h npc_" + getObjectId() + "_Link custom/donate/shop/dshop.htm\"
6 answers to this question
Recommended Posts