Jump to content

wongerlt

Members
  • Posts

    522
  • Credits

  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by wongerlt

  1. from l2gold trance pack u can get it for free.
  2. Hello, Any one haved this problem and how to solve it? After some connections to telnet they stop respond to client. No errors in logs or something like it. Me php code: function telas($command){ $telnet = fsockopen("*********", "1234", $errno, $errstr, 5); if($telnet) { echo "OK<BR>"; fputs($telnet, "PASWORD TO Login"); fputs($telnet, "\r\n"); fputs($telnet, $command); fputs($telnet, "\r\n"); fputs($telnet, "exit\r\n"); while ($line = fgets($telnet)) { $line = trim($line); echo $line."<br>"; } fclose($telnet); }else { echo $errno; echo $errstr; } }
  3. vote medals u can get also from mobs, not only from vote system. about what corruption u talk?
  4. up, start today 18:00
  5. config\GMAccess.d/full.xml and put your char object id then restart server.
  6. its nonsense not guard, just delete it. just tell me why u need this and we find another solution..
  7. yes, now i see, other chars see correct heading, except self heading.
  8. what is wrong with ur brain? hmm, i remember how on one buffer try buff some (~5) players, so buffer very lagging when buff all players at same time. One solution is to spawn 10 buffer npc. did u try change hit time? because it set 5 sec i see. broadcastPacket(new MagicSkillUse(this, player, 5557, 1, 5000, 1)); make it 500
  9. better is turn off animation on buffers, i think will be many packets if in town will be many players :D
  10. try reduce php version, or chnage all to mysqli_....
  11. yes, easy for frozen example: ((L2PcInstance)target).shortBuffStatusUpdate(1056, 1, 15); put it after ThreadPoolManager.getInstance().scheduleGeneral(new CustomCancelTaskManager((L2............. example: if (cancelledBuffs.size() > 0) { ((L2PcInstance)target).shortBuffStatusUpdate(1056,1,10); ThreadPoolManager.getInstance().scheduleGeneral(new CustomCancelTaskManager((L2PcInstance)target, cancelledBuffs), 10 *1000); }
  12. yes i fixed it. Need only rename CustomCancelTask.java to CustomCancelTaskManager.java and in import change CustomCancelTask to CustomCancelTaskManager.
  13. Why all time after rr, char heading set to east side. I checked it on acis and frozen, same situation. (Interlude) on database it save correct heading.
  14. Thanks for it. And i got error that "CustomCancelTask.java" file must be "CustomCancelTaskManager.java" so just need to rename it.
  15. what error? and u need make mysql external connection. u can google it keyword "mysql external connect", "mysql remote access"
  16. check on cmd: javac -version java -version u need 1.8.....
  17. npc spawns in xml? ???? :D Very practical.... oh i see and in sql `add_spawnlist`
  18. Its a forum moderators job and no need to post about it in thread. Everyone can report to move thread to other forum.
  19. where u write command? u must write it in "Query"
  20. write it in navicat query. delete from droplist where itemId!=57delete from droplist table where item id not 57. 57 adena id.
  21. Im using this method for many vars in command: String text = ""; Int page = 1; String var = StringUtils.substringBetween(command, "[text] ", " [/text]"); if(var != null) text = var; String var1 = StringUtils.substringBetween(command, " ", " "); if(var1 != null) page = Integer.parseInt(var1); <edit var="search" width=120 height=15> <edit var="page" width=120 height=15> <edit var="other" width=120 height=15> <button value="Search" action="bypass -h admin_test [text] $search [/text] $page [haha] $other [/haha]"> edit fields can be empty if u set default values. like int page = 1; maybe it will be useful for anyone :D
  22. php: echo base64_encode(sha1("tester1", true)); result: TXVHodJ4fHLw6YXYtRlCleSqYUE=
  23. character limit??? :D so if write "a b c" its only 5 character
  24. i think someone have accounts database with decryted passwords. One solution is turn off auto registration and make on website registration with prefixs on login name with google recaptcha.
×
×
  • Create New...