Search found 3 matches

by itzallhype
Thu May 10, 2012 2:20 pm
Forum: Game cheating & modding
Topic: Aion Bot
Replies: 283
Views: 155230

Re: Aion Bot

Really the stuff I need are like the info for the skills. I'll work out a combat system to work with chains later, the chains are going to have to come after we decrypt the tables for skills so we can tell which skills are ready to use. Also, something to look into, are there any hacks for flying? ...
by itzallhype
Wed May 09, 2012 1:02 am
Forum: Game cheating & modding
Topic: Aion Bot
Replies: 283
Views: 155230

Re: Aion Bot

in c# this returns the angle between 2 sets of coordinates public double Angle(double px1, double py1, double px2, double py2) { // Negate X and Y values double pxRes = px2 - px1; double pyRes = py2 - py1; double angle = 0.0; // Calculate the angle if (pxRes == 0.0) { if (pxRes == 0.0) angle = 0.0; ...
by itzallhype
Tue May 08, 2012 10:12 pm
Forum: Game cheating & modding
Topic: Aion Bot
Replies: 283
Views: 155230

Re: Aion Bot

i didnt see for the NA off sets for player rotation but it is - CBD944 float val . it goes from 1 - 180 and -1 to -180 for 360 degrees. this is really useful for path finding. if you log a path of pts from the game and have a function to find the angle between pts etc , then adjust player rotation a...