Qoproxy

09/06/2007 18:13 purplehaze#1
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:

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;
                        }
So okay thats how cyclone gets triggered right?
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;
                        }
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 ^^
09/06/2007 22:17 Real~Death#2
i tryed the same thing with no luck
09/07/2007 12:12 purplehaze#3
Quote:
Originally Posted by Real~Death View Post
i tryed the same thing with no luck
Ah :P If we could just find someone that knows wich function in the java is triggering the lie emote that woud be usefull :)
09/07/2007 13:05 Real~Death#4
yup i tryed learned some java just to edit proxies.spent 2 months working on one and they go and chang the packets(pissed me off,but atleast it gave me somthing to do while myinternet was off)