So im looking thru the Qoproxy and I was thinking maybe i can change the lie emote wich is cyclone to something like autoloot, so i search for cyclone in the java code and find this:
So okay thats how cyclone gets triggered right?
then my first guess would be that the last part:
triggers the lie emote, that would be my guess
if i add that part to another function like autoloot for example and change the variables so they fit the autoloot function
and delete it from the cyclone function will this get me to use lie emote for another function?
Or am I like WAY off?
Id apreciate some help in this :)
Edit* Okay i think im way off, this is only the "!" command that triggers it to go on and off,
So where will i find the lie emote in the code ? if anyone knows ^^
Code:
if(s5.equalsIgnoreCase("cyclone"))
if(z1.U > 0)
{
z1.M = 1130L;
I(z1, equals(z1.e, 26, z1.R));
z1.U = 0;
} else
{
z1.M = 1130L;
I(z1, equals(z1.e, 26, z1.R | 0x800000));
z1.U = 1;
}
then my first guess would be that the last part:
Code:
} else
{
z1.M = 1130L;
I(z1, equals(z1.e, 26, z1.R | 0x800000));
z1.U = 1;
}
if i add that part to another function like autoloot for example and change the variables so they fit the autoloot function
and delete it from the cyclone function will this get me to use lie emote for another function?
Or am I like WAY off?
Id apreciate some help in this :)
Edit* Okay i think im way off, this is only the "!" command that triggers it to go on and off,
So where will i find the lie emote in the code ? if anyone knows ^^