l2balancex Posted April 26, 2017 Posted April 26, 2017 Hello, I would like to ask for help, I have a problem with my server, the speed of picking up items on the floor is extremely fast! How to change this?
0 xxdem Posted April 26, 2017 Posted April 26, 2017 Many thanks, as soon as I learn to add I will test <3 its the correct answer, you have to paralyze the character server side but without the frozen effect on the client side. In case speed is still an issue you should reduce the player's speed for that duration
0 melron Posted April 26, 2017 Posted April 26, 2017 Your question makes new question... The broadcast is fast or you can get many dropped items without 'delay' ?
0 IpotoniC Posted April 26, 2017 Posted April 26, 2017 (edited) i wouldn't be surprised if you're speed is like a telephone number =) Edited April 26, 2017 by IpotoniC
0 l2balancex Posted April 26, 2017 Author Posted April 26, 2017 Your question makes new question... The broadcast is fast or you can get many dropped items without 'delay' ? It's all very fast, watch the video
0 l2balancex Posted April 26, 2017 Author Posted April 26, 2017 i wouldn't be surprised if you're speed is like a telephone number =) sorry I do not understand...rsrsrsrs
0 l2balancex Posted April 26, 2017 Author Posted April 26, 2017 And your pack is... ? Interlude,l2jFrozen
0 melron Posted April 26, 2017 Posted April 26, 2017 (edited) You should add a 'timer' when pick up detected.. L2PcInstance.java @@ -6892,6 +6892,18 @@ checkAndEquipArrows(); } } + + double speed = this.getStat().getMovementSpeedMultiplier(); + int div = 800; + ThreadPoolManager.getInstance().scheduleAi(new Runnable() + { + @Override + public void run() + { + setIsParalyzed(false); + } + }, (int) (div/speed)); + setIsParalyzed(true); target = null; } Customize div to your value Edited April 26, 2017 by melron
0 l2balancex Posted April 26, 2017 Author Posted April 26, 2017 (edited) Many thanks, as soon as I learn to add I will test <3 I love Bro, Working 100% Edited May 2, 2017 by l2balancex
0 l2balancex Posted May 2, 2017 Author Posted May 2, 2017 You should add a 'timer' when pick up detected.. L2PcInstance.java @@ -6892,6 +6892,18 @@ checkAndEquipArrows(); } } + + double speed = this.getStat().getMovementSpeedMultiplier(); + int div = 800; + ThreadPoolManager.getInstance().scheduleAi(new Runnable() + { + @Override + public void run() + { + setIsParalyzed(false); + } + }, (int) (div/speed)); + setIsParalyzed(true); target = null; } Customize div to your value I love Bro, Working 100%
Question
l2balancex
Hello, I would like to ask for help, I have a problem with my server, the speed of picking up items on the floor is extremely fast! How to change this?
11 answers to this question
Recommended Posts