Jump to content

wongerlt

Members
  • Posts

    552
  • Joined

  • Last visited

  • Days Won

    7
  • Feedback

    0%

Everything posted by wongerlt

  1. you just make mistake some where.. maybe Config.LS_STACKABLE are not TRUE. you can just check/log what happening in RequestRefine.java when u click refine..
  2. total votes: script.php return total votes. <?php error_reporting(0); $ctx = stream_context_create(array('https'=> array( 'timeout' => 2 ) )); $file = @file_get_contents("https://api.hopzone.net/lineage2/votes?token=YOUR_TOKEN",false,$ctx); if(!$file){ echo 0; exit; } $file = @json_decode($file, true); echo isset($file['totalvotes']) ? $file['totalvotes'] : 0; ?> IP IS VOTED? script.php?ip=PLAYER_IP return TRUE/FALSE <?php error_reporting(0); if (!filter_var($_GET['ip'], FILTER_VALIDATE_IP)) echo "FALSE".exit; $ctx = stream_context_create(array('https'=> array( 'timeout' => 2 ) )); $file = @file_get_contents("https://api.hopzone.net/lineage2/vote?token=YOUR_TOKEN&ip_address=".$_GET['ip'],false,$ctx); if(!$file){ echo "FALSE"; exit; } $file = @json_decode($file, true); echo isset($file['voted'])&&$file['voted']==1?"TRUE":"FALSE"; ?>
  3. Or just pretext to make wipe :D
  4. u cant just change link.. these links output are different like before ur used links.
  5. http://prntscr.com/rgm1xr
  6. https://www.4shared.com/web/q/#query=l2gold-project
  7. 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..
  8. can u share system patch? i will try to look
  9. about client side just copy and paste to excel and not need to count :D http://prntscr.com/qaik55 just me advice.
  10. 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.
  11. with old map file i see ground texture, with ur not. What can be wrong?
  12. yes, but he not tested i think, because all ground without textures, like in me screenshot.
  13. Same topic: i dont know why some one lock it.
  14. 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?
  15. 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
  16. Hello, Maybe someone have this map for interlude? without bugs. Already tryed to search.
  17. in item name must include all search words so draconic armor not show. its good if u not remember part of item name.
  18. if i try search example "Bow Draconic" or "Drac Bow" then not working. with me code it will work
  19. 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);
  20. it must work and in windows 7/8/10
  21. items xml in server data folder.
  22. where all items in ur pack? If in xml u can change all items price with notepad++ "Replace in Files"
×
×
  • 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