Jump to content

wongerlt

Members
  • Posts

    539
  • Credits

  • Joined

  • Last visited

  • Days Won

    7
  • Feedback

    0%

Everything posted by wongerlt

  1. 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?
  2. 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
  3. Hello, Maybe someone have this map for interlude? without bugs. Already tryed to search.
  4. in item name must include all search words so draconic armor not show. its good if u not remember part of item name.
  5. if i try search example "Bow Draconic" or "Drac Bow" then not working. with me code it will work
  6. 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);
  7. it must work and in windows 7/8/10
  8. items xml in server data folder.
  9. where all items in ur pack? If in xml u can change all items price with notepad++ "Replace in Files"
  10. just change items price to 0
  11. 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.
  12. Possible to edit login form/server list? in what files?
  13. Any idea how make pathnode around fences? hard tu run around fence if u are outside fence. i mean this:
  14. missing net.sf.l2j.gameserver.handler.admincommandhandlers.AdminEventEngine; and some imports are wrong. example ....events. must be "event" and ...impl.. must be imp or vice versa.
  15. you have created zone?
  16. import com.l2jfrozen.gameserver.model.L2World; String player_name = getTopZonePvpName(); Announcements.getInstance().announceToAll("The Player of the Hour is " + player_name + " with "+getTopZonePvpCount()+ " pvps"); L2PcInstance player = L2World.getInstance().getPlayer(player_name); if(player!=null){ //if online player.addItem("VoteReward", 57, 10, null, true); // 10 adenas //if online end }else{ //if offline Connection con = null; try { con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = con.prepareStatement("INSERT INTO `items` (`owner_id`, `object_id`, `item_id`, `count`, `loc`, `loc_data`) VALUES ((select obj_id from characters where char_name='"+player_name+"'), (SELECT MAX(object_id)+1 FROM items AS object_id), '57', '1', 'INVENTORY', '0')"); statement.execute(); statement.close(); } catch (Exception e) { e.printStackTrace(); } finally { CloseUtil.close(con); } // if offline end } //TODO Your reward should go here. simple, not tested so idk its work or no.
  17. PvP4Fun.Com * Just important information: * Start Level 80. * Full NPC Buffer. * Olympiad/Siege every 5 days. * Customs Items (Like l2gold, dynasty, hats, tattos, masks, jewelry and etc.) * Many Raid Bosses with teleports. * Easy Farm. * Easy Enchant. * Wipe every 1 Month. Start date: 2019-07-13 17:00 GMT+2 https://pvp4fun.com
  18. Its simple, one example: <?php $max = 500; $online = 251; $percent = round(100/$max*$online); ?> <div style="width:200px;height:30px;border:1px solid #CCC"><div style="background:green;height:30px;width:<?php echo $percent ?>%"></div></div> Server load: <?php echo $percent; ?>%.
  19. then i suggest firstly learn Windows basics. how create/edit file/folder, how open file, copy/paste and etc.
×
×
  • Create New...