Rune2006
TO OWNER! (How to fix auto retaliate) - Printable Version

+- Rune2006 (http://rune2006.com/forum)
+-- Forum: Rune2006 (/forumdisplay.php?fid=6)
+--- Forum: Game Discussion (/forumdisplay.php?fid=7)
+--- Thread: TO OWNER! (How to fix auto retaliate) (/showthread.php?tid=717)



TO OWNER! (How to fix auto retaliate) - str very low - 05-09-2013 08:54 AM

This is how to fix the annoying auto retaliate glitch where your character, if being attacked by multiple enemy's will constantly switch between them, rather than just killing one off and moving on to the next.

In hit.java find this line
if (player.shouldAutoRetaliate()) {
and simply change it to
if (player.shouldAutoRetaliate() && !player.isAttacking()) {


RE: TO OWNER! (How to fix auto retaliate) - Aaron - 05-09-2013 05:56 PM

good info should help us all Big Grin


RE: TO OWNER! (How to fix auto retaliate) - Henning B - 05-09-2013 07:43 PM

To bad this isnt PI Wink


RE: TO OWNER! (How to fix auto retaliate) - Aaron - 05-09-2013 08:13 PM

(05-09-2013 07:43 PM)Henning B Wrote:  To bad this isnt PI Wink

to bad i don't know what PI is XD


RE: TO OWNER! (How to fix auto retaliate) - Acerd - 05-09-2013 08:20 PM

PI = Project Insanity.


RE: TO OWNER! (How to fix auto retaliate) - Henning B - 05-09-2013 08:21 PM

(05-09-2013 08:13 PM)Aaron Wrote:  
(05-09-2013 07:43 PM)Henning B Wrote:  To bad this isnt PI Wink

to bad i don't know what PI is XD

PI= Project insanity, is a Runescape server framework emulator, which is poorly coded and unstable, but also its the easyest to learn and therefore all the newbs download it and follow tutorials.


RE: TO OWNER! (How to fix auto retaliate) - Plural - 05-10-2013 06:50 AM

(05-09-2013 08:54 AM)str very low Wrote:  This is how to fix the annoying auto retaliate glitch where your character, if being attacked by multiple enemy's will constantly switch between them, rather than just killing one off and moving on to the next.

In hit.java find this line
if (player.shouldAutoRetaliate()) {
and simply change it to
if (player.shouldAutoRetaliate() && !player.isAttacking()) {

Thank you, I will add that in with the next update pack.