Jump to content

^Wyatt

Members
  • Posts

    1,418
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by ^Wyatt

  1. Why are u creating an iframe to put a button? Just put the button without any iframe :s
  2. I see a normal link, can't understand ur problem, give me your website url.
  3. Are you sure that your GameServer is On and your GameServer console is clean of errors? That error can happen when your Login is On and your Gameserver is Off... Did u check the gameserver logs?
  4. Nothing to do with ports and I guess neither with ips. As •Cobra• and Gries said, probably, you're using and incompatible system, check your system protocol version if it's inside the range allowed by your source. If you were using the same system when the server was in Windows than which are u using now... and u hadn't the problem... then we can try to help finding out what the hell is the OS doing.
  5. Do you mean... a php code like this? <?php $da = fsockopen("udp://176.31.97.77", 2106, $errno, $errstr, 1); if($da >= 1){ echo "<center><span style='color:green;'>Online</span></center>";//login } else{ echo "<center><span style='color:red;'>Offline</span></center>"; } fclose($da); $de = fsockopen("udp://176.31.97.77", 7777, $errno, $errstr, 1); if($de >= 1){ echo "<center><span style='color:green;'>Online</span></center>";//game } else{echo "<center><span style='color:red;'>Offline</span></center>";} fclose($de); ?>
  6. It's the only thing I can see that could be causing it hm.... U could try to change this but I don't think it can affect. <td><combobox width=105 var=type list=General;Npc;Event;Balance;Other></td> to <td><combobox width="105" var="type" list="General;Npc;Event;Balance;Other"></td>
  7. And didn't u try with this one? action="bypass -h Quest BugReport report $type $msg"
  8. True soz, my newbie question filter didn't work properly... let me figure out what's wrong... Post full html pls :P U sure that what Tryskell said isn't working?
  9. http://www.maxcheaters.com/topic/170256-l2-icescream/ http://www.maxcheaters.com/topic/170257-l2-icescream/ junk, triple post, original in private servers pag 2
  10. Are you adding the proper line inside scripts.cfg?
  11. I guess it can be locked since u marked as "answered", if not, pm me.
  12. You could change the L2Character patch with a simple public static final int ZONE_PVP = 1; public static final int ZONE_PEACE = 2; public static final int ZONE_SIEGE = 4; public static final int ZONE_MOTHERTREE = 8; public static final int ZONE_CLANHALL = 16; public static final int ZONE_UNUSED = 32; public static final int ZONE_NOLANDING = 64; public static final int ZONE_WATER = 128; public static final int ZONE_JAIL = 256; public static final int ZONE_MONSTERTRACK = 512; public static final int ZONE_SWAMP = 1024; public static final int ZONE_NOSUMMONFRIEND = 2048; public static final int ZONE_OLY = 4096; + public static final int ZONE_CLANWAR = 4097; add it in zonedata else if(zoneType.equals("SwampZone")) { temp = new L2SwampZone(zoneId); } else if(zoneType.equals("ClanWarZone")) { temp = new L2ClanWarZone(zoneId); } and then in the L2PcInstance check, instead of isinsideclanwarzone() make isInsideZone(ZONE_CLANWAR)and inside the zone change ((L2PcInstance) character).setIsInsideClanwarZone(true); with ((L2PcInstance) character).setIsInsideZone(ZONE_CLANWAR, true);
  13. Then you didn't see anything, ofc there are a lot of servers using russian private sources, probably even better than which u will use.
  14. CTRL + H "addreputation" or "setreputation" or "reputation" dunno how it's called in ur pack
  15. then check the method that gives reputation to a character, put /* */ and see where error appears and trace it
  16. vds, dedicated, hosting machine, is all the same shit :rage:
  17. Clearly Hosting machine... u should type its characteristics...
  18. I guess... // this can be 0 if the user pressed the right mousebutton twice very fast if(unequiped.length > 0) { SystemMessage sm = null; if(unequiped[0].getEnchantLevel() > 0) { sm = new SystemMessage(SystemMessageId.EQUIPMENT_S1_S2_REMOVED); sm.addNumber(unequiped[0].getEnchantLevel()); sm.addItemName(unequiped[0].getItemId()); } else { sm = new SystemMessage(SystemMessageId.S1_DISARMED); sm.addItemName(unequiped[0].getItemId()); } ----------------------------------------------------------------------- here the 2) sendPacket(sm); sm = null; } com/l2jfrozen/gameserver/network/clientpackets/UseItem.java if(item.getEnchantLevel() > 0) { sm = new SystemMessage(SystemMessageId.S1_S2_EQUIPPED); sm.addNumber(item.getEnchantLevel()); sm.addItemName(itemId); } else { sm = new SystemMessage(SystemMessageId.S1_EQUIPPED); sm.addItemName(itemId); } ------------------------------------------------------------------------------------here the 1) activeChar.sendPacket(sm);
  19. O.o the position doesn't matter, just make sure that it's inside the main class and outside any method{}
  20. I'm using it without any problem :s
×
×
  • Create New...

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