SQL Developer Posted March 13, 2015 Posted March 13, 2015 Hey i have a code here and i would like to add one extra button [Donate Shop] and open multisell is this possible? if yes explain me how to do it .. thanks private void showHtmlWindow(L2PcInstance activeChar) { TextBuilder tb = new TextBuilder(); NpcHtmlMessage html = new NpcHtmlMessage(1); tb.append("<html><head><title>Donation Manager</title></head><body><center><table width=\"250\" bgcolor=\"000000\"><tr><td align=center><font color=\"6fd3d1\">Easy Donation With Paysafe Card</font></td></tr></table>_______________________________________<br><br><table width=\"250\"><tr><td><font color=\"ddc16d\">Select Donation amount:</font></td><td><combobox width=80 height=17 var=amount list=5-Euro;10-Euro;15-Euro;20-Euro;25-Euro;50-Euro;100-Euro;></td></tr></table><br><br><font color=\"ddc16d\">Paysafe Card Pin:</font><table width=\"250\"><tr><td><edit var=\"pin1\" width=50 height=12 type=number></td><td><edit var=\"pin2\" width=50 height=12 type=number></td><td><edit var=\"pin3\" width=50 height=12 type=number></td><td><edit var=\"pin4\" width=50 height=12 type=number></td></table><br><br><multiedit var=\"message\" width=240 height=40><br><br><button value=\"Donate!\" action=\"bypass -h npc_" + getObjectId() + "_donate $amount $pin1 $pin2 $pin3 $pin4 $message\" width=95 height=21 back=\"bigbutton_over\" fore=\"bigbutton\"><br><button value=\"Donation List\" action=\"bypass -h npc_" + getObjectId() + "_dlist\" width=95 height=21 back=\"bigbutton_over\" fore=\"bigbutton\"><br><font color=\"a1df64\"></font></center></body></html>"); html.setHtml(tb.toString()); activeChar.sendPacket(html); } private void info(L2PcInstance activeChar) { TextBuilder tb = new TextBuilder(); NpcHtmlMessage html = new NpcHtmlMessage(1); tb.append("<html><head><title>Donation Manager</title></head><body><center>blablabla<br><br><br><br><br><br><br><br>name</center></body></html>"); html.setHtml(tb.toString()); activeChar.sendPacket(html); } } Quote
0 SweeTs Posted March 13, 2015 Posted March 13, 2015 add new tb.append line with the button. Move </body></html> from upper line in there or even remove it. Quote
0 SQL Developer Posted March 13, 2015 Author Posted March 13, 2015 i try allready this: <button value="Button Name" action="bypass -h npc_%objectId%_multisell 123456789" width=76 height=21 back="L2UI_ch3.Btn1_normalOn" fore="L2UI_ch3.Btn1_normal"> and this : <button value=\"Donation List\" action="bypass -h npc_%objectID%_multisell 123456789" width=95 height=21 back=\"bigbutton_over\" fore=\"bigbutton\"> and doesnt work ... can you fix me the whole line to copy past? or tell me my wrong Quote
0 StealthyS4m Posted March 13, 2015 Posted March 13, 2015 tb.replace("%objectID%",getObjectId()); before html.setHtml(tb.toString()); or something like that. Quote
0 Tessa Posted March 13, 2015 Posted March 13, 2015 I hate this hardcoding :( Instead of %objectID% concatenate with getObjectId() Quote
Question
SQL Developer
Hey i have a code here and i would like to add one extra button [Donate Shop] and open multisell is this possible?
if yes explain me how to do it .. thanks
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.