Jump to content

FactorX

Members
  • Posts

    116
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by FactorX

  1. Ok...i understand that. but i can add something like `Cancel` `Heal`? and how i can set bypass for that
  2. I am confuse, please help me...how i can make html in buffcommand?
  3. bypass -h buffCommand this is my bypass but after buffCommand i don;t know how to set
  4. <td><button value="Fight" action="bypass width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> somethink like that?
  5. I have this <html><body><title>Buffer Global</title> <center> <center><img src="l2font-e.replay_logo-e" width=250 height=80></center> <br><br> <img src="L2UI.SquareGray" width=295 height=1> <br> <table width=280> <tr> <td align=center><img src=icon.skill1036 width=32 height=32></td> <td align=center><img src=icon.skill0364 width=32 height=32></td> <td align=center><img src=icon.skill0311 width=32 height=32></td> <td align=center><img src=icon.skill1391 width=32 height=32></td> </tr> <tr><td></td></tr> <tr> <td><button value="Buff" action="bypass -h npc_%objectId%_Chat 2" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> <td><button value="Song" action="bypass -h npc_%objectId%_Chat 3" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> <td><button value="Dance" action="bypass -h npc_%objectId%_Chat 4" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> <td><button value="Chant" action="bypass -h npc_%objectId%_Chat 5" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> </tr> </table> <br> <table width=280> <tr> <td align=center><img src=icon.skill1331 width=32 height=32></td> <td align=center><img src=icon.skill1259 width=32 height=32></td> <td align=center><img src=icon.skill0440 width=32 height=32></td> <td align=center><img src=icon.skill1056 width=32 height=32></td> </tr> <tr><td></td></tr> <tr> <td><button value="Special" action="bypass -h npc_%objectId%_chat 7" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> <td><button value="Protection" action="bypass -h npc_%objectId%_chat 8" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> <td><button value="Recovery" action="bypass -h npc_%objectId%_heal" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> <td><button value="Cancel" action="bypass -h npc_%objectId%_cleanup" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> </tr> </table> <br> <table width=150> <tr> <td align=center><img src=icon.skill0426 width=32 height=32></td> <td align=center><img src=icon.skill0427 width=32 height=32></td> </tr> <tr><td></td></tr> <tr> <td><button value="Fight" action="bypass -h fbuffCommand" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> <td><button value="Mage" action="bypass -h npc_%objectId%_mbuff" width=65 height=19 back="L2UI_CH3.br_bar2_cp1" fore="L2UI_CH3.br_bar2_hp"></td> </tr> </table> <br> <img src="L2UI.SquareGray" width=295 height=1> </center> </body> </html> How i can put in buffcommand?
  6. Thanks..but i want a buff sets...Mages/Fighters. Then 1 by 1. Like a normal buffer. but in voice command.
  7. Who can tell me how i can set scroll of enchant (all scrolls) to enchant with 1 scroll value +10, +15? In L2jFrozen exist that option. In L2jaCis, not. please need help. Thakns
  8. Hey candyes, i am looking for a voice command buffer. (Without Npc), but html's and functions must be like `With npc`. If someone know this, let's me know. Thanks and have a blessed days!
  9. Solved! Thank you ! you are my SweeTs :)
  10. Hi guys...i try to add something on server (L2jaCis) and i get soem errors in eclipse. This is errors public static void Sex(L2PcInstance player) { player.getAppearance().setSex(player.getAppearance().getSex() ? false : true); player.sendMessage("Your gender has been changed,You will be disconected in 3 Seconds!"); player.broadcastUserInfo(); player.decayMe(); player.spawnMe(); ThreadPoolManager.getInstance().scheduleGeneral(() -> player.logout(false), 3000); } I try to add this command in my L2jaCis Rev. https://xp-dev.com/svn/aCis_public/ Errors with pictures #1 http:// #2 http:// Thank you
  11. I install latest java (JDK-8u151) and i still have soem errors) and i install jre's in eclipse. here it's Jre's installedhttp:// and here it`s little error what settings i have to do? Thank's
  12. :))))))))))))))))))) is vip system for l2jaCis
  13. Somebody know about this line? private static void onEnterVip=(L2PcInstance ); and this is error n this line: void is an invalid type for the variable onEnterVip Thanks
  14. i install L2jaCis Project,..and i have installed java 8u144 and 7u80. and in eclipse (Oxygen) i get this error http:// Help me thanks..
  15. Hi everyone..i want to know why i when i click Userfull info (from voice command) nothign happend. this is codes and html's. This is user.java package handlers.voicedcommandhandlers; import com.l2jserver.Config; import com.l2jserver.gameserver.GameTimeController; import com.l2jserver.gameserver.cache.HtmCache; import com.l2jserver.gameserver.handler.IVoicedCommandHandler; import com.l2jserver.gameserver.model.L2World; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage; import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage; /** * @author NeverMore */ public class User implements IVoicedCommandHandler { public static final String[] VOICED_COMMANDS = { "user", "user1", "user2", "user3" }; @Override public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params) { if (Config.SHOW_USER) { if (command.equalsIgnoreCase("user")) { User.showUserPage(activeChar, "user.htm"); } if (command.equalsIgnoreCase("user1")) { User.showUserPage(activeChar, "user1.htm"); } if (command.equalsIgnoreCase("user2")) { User.showUserPage(activeChar, "user2.htm"); } if (command.equalsIgnoreCase("user3")) { User.showUserPage(activeChar, "user3.htm"); } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); return false; } return false; } public static String getServerRunTime() { int timeSeconds = (GameTimeController.getInstance().getGameTicks() - 36000) / 10; String timeResult = ""; if (timeSeconds >= 86400) { timeResult = Integer.toString(timeSeconds / 86400) + " Days " + Integer.toString((timeSeconds % 86400) / 3600) + " hours"; } else { timeResult = Integer.toString(timeSeconds / 3600) + " Hours " + Integer.toString((timeSeconds % 3600) / 60) + " mins"; } return timeResult; } public static String getRealOnline() { int counter = 0; for (L2PcInstance onlinePlayer : L2World.getInstance().getPlayers()) { if (onlinePlayer.isOnline() && ((onlinePlayer.getClient() != null) && !onlinePlayer.getClient().isDetached())) { counter++; } } String realOnline = "<tr><td fixwidth=11></td><td FIXWIDTH=280>Players Active</td><td FIXWIDTH=470><font color=FF6600>" + counter + "</font></td></tr>" + "<tr><td fixwidth=11></td><td FIXWIDTH=280>Players Shops</td><td FIXWIDTH=470><font color=FF6600>" + (L2World.getInstance().getAllPlayersCount() - counter) + "</font></td></tr>"; return realOnline; } public static void showUserPage(L2PcInstance targetChar, String filename) { String content = HtmCache.getInstance().getHtmForce(targetChar.getHtmlPrefix(), "data/html/userpanel/" + filename); NpcHtmlMessage UserPanelReply = new NpcHtmlMessage(5); UserPanelReply.setHtml(content); UserPanelReply.replace("%online%", String.valueOf(L2World.getInstance().getPlayers().size())); UserPanelReply.replace("%name%", String.valueOf(targetChar.getName())); UserPanelReply.replace("%serveronline%", getRealOnline()); UserPanelReply.replace("%servercapacity%", Integer.toString(Config.MAXIMUM_ONLINE_USERS)); UserPanelReply.replace("%serverruntime%", getServerRunTime()); UserPanelReply.replace("%playernumber%", String.valueOf(L2World.getInstance().getPlayers().size())); if (!Config.ENABLE_SPECIAL_EFFECT) { UserPanelReply.replace("%effect%", "Disabled"); } else if (L2PcInstance._isoneffect == true) { UserPanelReply.replace("%effect%", "ON"); } else { UserPanelReply.replace("%effect%", "OFF"); } if (!Config.ENABLE_PM_REFUSAL) { UserPanelReply.replace("%pm%", "Disabled"); } else if (L2PcInstance._ispmrefusal == true) { UserPanelReply.replace("%pm%", "ON"); } else { UserPanelReply.replace("%pm%", "OFF"); } if (!Config.ENABLE_TRADE_REFUSAL) { UserPanelReply.replace("%trade%", "Disabled"); } else if (L2PcInstance._istraderefusal == true) { UserPanelReply.replace("%trade%", "ON"); } else { UserPanelReply.replace("%trade%", "OFF"); } if (!Config.ENABLE_EXP_REFUSAL) { UserPanelReply.replace("%exp%", "Disabled"); } else if (L2PcInstance._isexpsprefusal == true) { UserPanelReply.replace("%exp%", "ON"); } else { UserPanelReply.replace("%exp%", "OFF"); } if (!Config.ENABLE_SPECIAL_EFFECT) { UserPanelReply.replace("%effect%", "Disabled"); } else if (L2PcInstance._isoneffect == true) { UserPanelReply.replace("%effect%", "ON"); } else { UserPanelReply.replace("%effect%", "OFF"); } targetChar.sendPacket(UserPanelReply); } @Override public String[] getVoicedCommandList() { return VOICED_COMMANDS; } } this is for UserActions.java /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package handlers.voicedcommandhandlers; import com.l2jserver.Config; import com.l2jserver.gameserver.handler.IVoicedCommandHandler; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.effects.AbstractEffect; import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage; /** * @author NeverMore */ public class UserActions implements IVoicedCommandHandler { public static final String[] VOICED_COMMANDS = { "effecton", "effectoff", "tradeoff", "tradeon", "expoff", "expon", "pmoff", "pmon" }; @Override public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) { if ((command.startsWith("effecton"))) { if (Config.ENABLE_SPECIAL_EFFECT) { if (L2PcInstance._isoneffect == false) { activeChar.startAbstractEffect(AbstractEffect.VITALITY); activeChar.sendMessage("Your custom effect enabled!"); ExShowScreenMessage message1 = new ExShowScreenMessage("Your custom effect is now enabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._isoneffect = true; } else { activeChar.sendMessage("Your effect is already enabled!"); ExShowScreenMessage message1 = new ExShowScreenMessage("Your effect is already enabled!", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); } } if ((command.startsWith("effectoff"))) { if (Config.ENABLE_SPECIAL_EFFECT) { if (L2PcInstance._isoneffect == true) { activeChar.stopAbstractEffect(AbstractEffect.VITALITY); activeChar.sendMessage("Your custom effect is now disabled!"); ExShowScreenMessage message1 = new ExShowScreenMessage("Your custom effect is now disabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._isoneffect = false; } else { activeChar.sendMessage("You dont have effect enabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("You dont have effect enabled", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); } } if ((command.startsWith("tradeoff"))) { if (Config.ENABLE_TRADE_REFUSAL) { if (L2PcInstance._istraderefusal == false) { activeChar.setTradeRefusal(true); activeChar.sendMessage("Trade refusal enabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("Trade refusal mode is now enabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._istraderefusal = true; } else { activeChar.sendMessage("You are already in trade refusal mode!"); ExShowScreenMessage message1 = new ExShowScreenMessage("You are already in trade refusal mode!", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); } } if ((command.startsWith("tradeon"))) { if (Config.ENABLE_TRADE_REFUSAL) { if (L2PcInstance._istraderefusal == true) { activeChar.setTradeRefusal(false); activeChar.sendMessage("Trade refusal disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("Trade refusal mode is now disabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._istraderefusal = false; } else { activeChar.sendMessage("You are not in trade refusal mode!"); ExShowScreenMessage message1 = new ExShowScreenMessage("You are not in trade refusal mode!", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); } } if ((command.startsWith("expoff"))) { if (Config.ENABLE_EXP_REFUSAL) { if (L2PcInstance._isexpsprefusal == false) { activeChar.sendMessage("Exp/sp refusal enabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("Exp/sp refusal mode is now enabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._isexpsprefusal = true; } else { activeChar.sendMessage("You are already in exp/sp refusal mode!"); ExShowScreenMessage message1 = new ExShowScreenMessage("You are already in exp/sp refusal mode!", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); } } if ((command.startsWith("expon"))) { if (Config.ENABLE_TRADE_REFUSAL) { if (L2PcInstance._isexpsprefusal == true) { activeChar.sendMessage("Exp/sp refusal disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("Exp/sp refusal mode is now disabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._isexpsprefusal = false; } else { activeChar.sendMessage("You are not in exp/sp refusal mode!"); ExShowScreenMessage message1 = new ExShowScreenMessage("You are not in exp/sp refusal mode!", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); } } if ((command.startsWith("pmon"))) { if (Config.ENABLE_PM_REFUSAL) { if (L2PcInstance._ispmrefusal == true) { activeChar.setMessageRefusal(false); activeChar.sendMessage("Pm refusal mode disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("Pm refusal mode is now disabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._ispmrefusal = false; } else { activeChar.sendMessage("You are not in pm refusal mode!"); ExShowScreenMessage message1 = new ExShowScreenMessage("You are not in pm refusal mode!", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); return false; } } if ((command.startsWith("pmoff"))) { if (Config.ENABLE_PM_REFUSAL) { if (L2PcInstance._ispmrefusal == false) { activeChar.setMessageRefusal(true); activeChar.sendMessage("Pm refusal mode enabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("Pm refusal mode is now enabled!", 4000); activeChar.sendPacket(message1); L2PcInstance._ispmrefusal = true; } else { activeChar.sendMessage("You are already in pm refusal mode!"); ExShowScreenMessage message1 = new ExShowScreenMessage("You are already in pm refusal mode!", 4000); activeChar.sendPacket(message1); return false; } } else { activeChar.sendMessage("This command is disabled"); ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000); activeChar.sendPacket(message1); return false; } } return false; } @Override public String[] getVoicedCommandList() { return VOICED_COMMANDS; } } And this is for UserActions.java User.htm <html> <head><title>User Panel</title></head><body> <center><br> <table width="270" cellpadding="5"> <tr> <td valign="top">Welcome <font color="3399ff"> %name% </font>,<br1> Use this command to enable/disable user actions or learn whatever is related with our server!</td>! </tr> </table> </center> <br><font color="333333" align="center">_______________________________________</font><br><br> <center> <table width=225 border=0><tr><br> <td><button action="bypass -h voice .user1 $User" value="Usefull Info" width=90 height=18 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> <td><button action="bypass -h voice .user2 $User" value="User Actions" width=90 height=18 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr></table></center><br><td><center><button action="bypass -h voice .user3 $User" value="Change log" width=90 height=18 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td></center><br><br> <font color="333333" align="center">_______________________________________</font><br> <center><font color="3399ff">Server Statistics</font></center><br> <table border=0 cellspacing=0 cellpadding=2 bgcolor=111111> <tr> <td fixwidth=11></td> <td FIXWIDTH=280>Players Online</td> <td FIXWIDTH=470><font color=FF6600>%online%</font></td> </tr> %serveronline% <tr> <td fixwidth=11></td> <td FIXWIDTH=280>Server Capacity</td> <td FIXWIDTH=470><font color=FF6600>%servercapacity%</font></td> </tr> <tr> <td fixwidth=11></td> <td FIXWIDTH=280>Server Onl.Time</td> <td FIXWIDTH=470><font color=FF6600>%serverruntime%</font></td> </tr> </table><br><font color="333333" align="center">_______________________________________</font> <br> <center><font color=\"A9A9A9\">~ By ShayaK ~</font></center></body> </html> User1.htm <html> <head><title>Usefull Information</title></head><body> <center><br> <table width="270" cellpadding="5"> <tr> <td valign="top"><font color="3399ff"> %name% </font>,read this usefull information and learn every feature that our server supports!</td>! </tr> </table> </center> <br><font color="333333" align="center">_______________________________________</font><br> <center><font color="3399ff">GamePlay Informations</font></center><br> <center><table> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> </table></center><br><font color="333333" align="center">_______________________________________</font><br><center><font color="3399ff">Vote Informations</font></center><br> <center><table> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> </table></center><br><font color="333333" align="center">_______________________________________</font><br> <br><center><font color="3399ff">PvP Informations</font></center><br> <center><table> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> </table></center><br><font color="333333" align="center">_______________________________________</font> <br><center><button action="bypass -h voice .user $User" value="Back" width=50 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"> <center><font color=\"A9A9A9\">~ By ShayaK ~</font></center></body> </html> User2.htm <html> <head><title>User actions</title></head><body> <center><br> <table width="270" cellpadding="5"> <tr> <td valign="top"><font color="3399ff"> %name% </font>,from here you are able to use many features of our server and make your gameplay easier!</td>! </tr> </table> </center> <br><font color="333333" align="center">_____________________________________</font><br> <center><font color="3399ff">Exp/Sp refusal mode</font></center><br> <center><table width=230> <tr> <td align=center>Info</td> <td align=center>Status</td> <td align=center>On/Off</td> </tr> <tr><td height="5"></td></tr> <tr> <td align=center><font color="FF9933">Disable gaining </font></td> <td align=center><font color="FFFF33">%exp%</font></td> <td align=center><button value="Enable" action="bypass -h voice .expoff $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> <tr> <td align=center><font color="FFFF33">exp/sp</font></td> <td align=center><font color="FF9933"></font></td> <td align=center><button value="Disable" action="bypass -h voice .expon $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> </table></center><br><font color="333333" align="center">_____________________________________</font><br> <center><font color="3399ff">Pm refusal mode</font></center><br> <center><table width=230> <tr> <td align=center>Info</td> <td align=center>Status</td> <td align=center>On/Off</td> </tr> <tr><td height="5"></td></tr> <tr> <td align=center><font color="FF9933">Blocks all pm's</font></td> <td align=center><font color="FFFF33">%pm%</font></td> <td align=center><button value="Enable" action="bypass -h voice .pmoff $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> <tr> <td align=center><font color="FFFF33"></font></td> <td align=center><font color="FF9933"></font></td> <td align=center><button value="Disable" action="bypass -h voice .pmon $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> </table></center><br> <font color="333333" align="center">_____________________________________</font><br> <center><font color="3399ff">Trade refusal mode</font></center><br> <center><table width=230> <tr> <td align=center>Info</td> <td align=center>Status</td> <td align=center>On/Off</td> </tr> <tr><td height="5"></td></tr> <tr> <td align=center><font color="FF9933">Blocks all trade's</font></td> <td align=center><font color="FFFF33">%trade%</font></td> <td align=center><button value="Enable" action="bypass -h voice .tradeoff $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> <tr> <td align=center><font color="FFFF33"></font></td> <td align=center><font color="FF9933"></font></td> <td align=center><button value="Disable" action="bypass -h voice .tradeon $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> </table></center><br> <font color="333333" align="center">_______________________________________</font><br> <center><font color="3399ff">Custom Effect</font></center><br> <center><table width=260> <tr> <td align=center>Info</td> <td align=center>Status</td> <td align=center>On/Off</td> </tr> <tr><td height="5"></td></tr> <tr> <td align=center><font color="FF9933">Enable an</font></td> <td align=center><font color="FFFF33">%effect%</font></td> <td align=center><button value="Enable" action="bypass -h voice .effecton $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> <tr> <td align=center><font color="FF9933"> custom effect</font></td> <td align=center><font color="FF9933"></font></td> <td align=center><button value="Disable" action="bypass -h voice .effectoff $UserActions" width=65 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td> </tr> </table></center><br><br> <font color="333333" align="center">_______________________________________</font> <br><center><button action="bypass -h voice .user $User" value="Back" width=50 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"> <br><center><font color=\"A9A9A9\">~ by NeverMore ~</font></center></body> </html> and User3.htm <html> <head><title>Change log</title></head><body> <center><br> <table width="270" cellpadding="5"> <tr> <td valign="top"><font color="3399ff"> %name% </font>,here you can read our server changes!</td>! </tr> </table> </center> <br><font color="333333" align="center">_______________________________________</font><br> <center><font color="3399ff">12/8/2012</font></center><br> <center><table> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> </table></center><br><font color="333333" align="center">_______________________________________</font><br><center><font color="3399ff">10/8/2012</font></center><br> <center><table> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> </table></center><br><font color="333333" align="center">_______________________________________</font><br> <br><center><font color="3399ff">8/8/2012</font></center><br> <center><table> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> <tr><td><font color="3399ff">*</font> To.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.doTo.do</td></tr> </table></center><br><font color="333333" align="center">_______________________________________</font> <br><center><button action="bypass -h voice .user $User" value="Back" width=50 height=16 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"><br> <center><font color=\"A9A9A9\">~ By NeverMore ~</font></center></body> </html> All this..java's and html's
  16. When i press "Usefull info" nothing happend...what is wrong?
  17. Ok..i`m done..the code work, but when i press Userfull Info, nothing happend...(in normal mode must appear [ user1 ] ). How i can edit XML Bypass to make that? my XML is <td><button action="bypass -h voice .user1 $User" value="Usefull Info" width=90 height=18 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td>
  18. is working..thanks
  19. Help me guys with this line...i don;t know what to do. http://
  20. Hello everyone. I install Xampp cuz it's more easy to use...but..i no have password for MySql. How i can do that?
  21. Ok...i understand....
  22. okay..anyway..i no resolve something.but..anyway thanks all. I appreciate this site for other things.
  23. private String _target; so yes
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

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