Jump to content

wongerlt

Members
  • Posts

    522
  • Credits

  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by wongerlt

  1. https://www.4shared.com/web/q/#query=l2gold-project
  2. Hello, Any solution to avoid delay between click button in me html? Because if now i click button/Url in community board i need wait ~3-5 sec then i can click again, otherwise if i click bypass client just not send to server..
  3. can u share system patch? i will try to look
  4. about client side just copy and paste to excel and not need to count :D http://prntscr.com/qaik55 just me advice.
  5. i have do it with formulas.java example how i change mag dmg. CalcMagicDam(...){ .......... .... and at function end if(attacker instanceof L2PcInstance){ L2PcInstance pcInst = (L2PcInstance) attacker; int attackerClass = pcInst.getClassId().getId(); double balance = 1; if(pcInst.isInOlympiadMode()){ balance = BalanceDataTable.getInstance().getClassData(attackerClass).getOMSkillDamage(); }else{ balance = BalanceDataTable.getInstance().getClassData(attackerClass).getMSkillDamage(); } damage /= balance; } } same shit and with other stats/damages and etc. Its just me idea for you. Its good way or no idk.
  6. with old map file i see ground texture, with ur not. What can be wrong?
  7. yes, but he not tested i think, because all ground without textures, like in me screenshot.
  8. Same topic: i dont know why some one lock it.
  9. No way!!! Better to try learn by yourself. ok i fixed invisible walls (just deleted it) but now have another problem :D http://prntscr.com/pjsxl2 when save map ground textures not showing.. Maybe someone know why?
  10. Yes, some place have invisible walls or what, rly i dont know, i just see shadow on it. just recorded: https://www.youtube.com/watch?v=etVIGTzUqXw&feature=youtu.be
  11. Hello, Maybe someone have this map for interlude? without bugs. Already tryed to search.
  12. in item name must include all search words so draconic armor not show. its good if u not remember part of item name.
  13. if i try search example "Bow Draconic" or "Drac Bow" then not working. with me code it will work
  14. i think multi word search must be like: String[] parts = search.toLowerCase().split(" "); for (Item item : ItemData.getInstance().getTemplates()){ boolean add = false; for (String part : parts) { if (item.getName().toLowerCase().contains(part)){ add = true; }else{ add = false; break; } } } if(add) items.add(item);
  15. where all items in ur pack? If in xml u can change all items price with notepad++ "Replace in Files"
  16. very nervous when i want play in multiple servers with custom things because all these server system patch overwrite original client files. So my suggestion to all server owners put all custom files in your system directory. You need just edit l2.ini example: [Core.System] PurgeCacheDays=30 SavePath=../Save CachePath=../Cache CacheExt=.uxx Paths=./*.u Paths=./GameGuard/StaticMeshes/*.usx Paths=./GameGuard/Textures/*.utx Paths=./GameGuard/Sounds/*.uax Paths=./GameGuard/Maps/*.unr Paths=./GameGuard/Music/*.umx Paths=./GameGuard/Animations/*.usk Paths=./GameGuard/SysTextures/*.utx Paths=./GameGuard/Animations/*.ukx Paths=../StaticMeshes/*.usx Paths=../Textures/*.utx Paths=../Sounds/*.uax Paths=../Voice/*.uax Paths=../Maps/*.unr ;Paths=../Music/*.umx Paths=../Animations/*.ukx Paths=../SysTextures/*.utx Paths=../Animations/*.usk Paths=../Saves/*.uvx Suppress=DevLoad Suppress=DevSave Suppress=DevNetTraffic Suppress=DevGarbage Suppress=DevKill Suppress=DevReplace Suppress=DevCompile Suppress=DevBind Suppress=DevBsp create in system directory new directory with name example "GameGuard" and in this folder create "systextures, animations, music, map and etc.." and there put ur custom client files. It's all. All working fine and tested with many players.
  17. Possible to edit login form/server list? in what files?
  18. Any idea how make pathnode around fences? hard tu run around fence if u are outside fence. i mean this:
×
×
  • Create New...