Jump to content

<< Masterio >>

Members
  • Posts

    252
  • Credits

  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    0%

Everything posted by << Masterio >>

  1. l2gang tell me Mysql version, project (l2j H5 , Freya , IL other?). I updated some sql procedures and tables. Check and report, v2.9.8 added.
  2. It was wrote for clear l2j server H5, so i think on freya should work too, but if database structure are different you need edit some fields in sql and procedures manually (Example: table characters, column charId in interlude is char_obj_id, this small differences must be committed manually). I don't know what table structure is in your projects but if you know a little bit sql, you can change it easy. Same thing with java structure, some classes can be in other packages, than latest H5, so you must change imports (sometimes it's not enough, so you need know java language to fit up this system into your project). Base classes of CPS are stored in cps package, so corrects not needed. Classes like L2PcInstance, BBSManager, VoiceCommands should be the same, but if you have other customs, remember to add patches manually. I used Image Converter classes in my system (with html image tag generator class in alone packed), but i don't think so if it will be hard to add. :D
  3. Yes my wrong, i forgot add this procedure :) Updated to v2.9.7.
  4. Reasons why i did it: 1. Images from server are resisted for low textures in option's. 2. All images are buffered by client, it's mean they will be send only once to player, next time client load it from memory. 3. If you have 100MBit connection it does no difference. Anyway I will add the option.
  5. in config file # Show additional button in PvPWindow after death. # Button allow see more details about killer. HP/MP/CP Equipment (enchant). # It shows killer status only for kill MOMENT. # Option requires CustomPvpInfoCommandShowOnDeathEnabled and CustomPvpInfoCommandEnabled set on True. CustomPvpDeathManagerDetailsEnabled = True
  6. This hit task will be fixed soon . thx for info. Yes, yes on every 24h.
  7. Hi, cheaters:D I have a question: How to load images/textures into html tag <img=...> in npc response. Not from client side, but form server side. Who can help me? :D
  8. http://www.4shared.com/rar/AfuTe1SS/test_294.html Update 2.9.4 Testing for search null exceptions.
  9. i installed SSD drive so now i must install system and all programs afk 1-2 days ;)
  10. It must be other reason, gain rank checked, and from code lvl is not possible:D
  11. yes its method from my CustomConfig class if you have importet this class correctly it should work.
  12. i used latest l2jServer for hi5, so its works :D try update svn to 1.7.7 version.
  13. its mean the argument must be other type than Byte, try parse to Integer, or check the method parameter type. Try for Integer: if(activeChar.isInsideZone(Byte.parseByte(CustomConfig.CUSTOM_PVP_RESTRICTED_ZONES_IDS.get(i)))){ change for: if(activeChar.isInsideZone(Integer.parseInteger(CustomConfig.CUSTOM_PVP_RESTRICTED_ZONES_IDS.get(i)))){ All zones in latest revision l2j are Byte type.
×
×
  • Create New...