greyb1t's Insanity Flyff Levelbot

05/06/2015 13:35 greyb1t#31
Quote:
Originally Posted by mrnotnakub View Post
Plase Guild a Video !!!!
I am not sure what you mean, but I guess you said "Please make a video"?

If you need a video for this hack, you're shit and should leave this forum without downloading the hack.
05/06/2015 14:29 aviv963#32
it says failed to read

and can you do mem hack ?
05/06/2015 15:53 nicksta1991#33
Quote:
Originally Posted by mrnotnakub View Post
Plase Guild a Video !!!!
Do you really need a video on how to turn the bot on because that's basically all that you need to do; unless you're trying to find information from a different server and trying to use the bot there.
I get the feeling you're not looking for offsets tho. :[
05/06/2015 20:28 Ostron99#34
He ythere bro! it works perfect to insanity flyff! :) but is there anyway you could do this but in Mazey flyff? i wold love you soo much lol :P Btw you should try it out it is really funny :)
05/08/2015 15:33 Lightings#35
He says before that he only doing it for Insanity.
05/08/2015 20:20 heldixjedd2#36
got the bot to attach to process. but does nothing. Am i missing a step?
debug log only shows it found an entity. nothing else.
05/08/2015 22:33 greyb1t#37
Quote:
Originally Posted by heldixjedd2 View Post
got the bot to attach to process. but does nothing. Am i missing a step?
debug log only shows it found an entity. nothing else.
Did it successfully read your username?

If it didn't read your username, you aren't using it for Insanity Flyff.

Did it select a entity?

If it selected a entity, you forgot to use the F-Key Simulator.
Press 'O' ingame. And drag "Attack the selected target" / a skill to F1.
Then in the bot, add a delay on 0.5 on F1, then it should attack a enemy.
05/09/2015 00:07 dennisbelton#38
Can you please explain how to use it? :D
05/09/2015 00:54 greyb1t#39
Quote:
Originally Posted by dennisbelton View Post
Can you please explain how to use it? :D
*You selected a mode (legit/teleport etc).

*Go ingame and press 'O' and put "Attack the selected target" motion
to F1-F12, depends on which class you are. If you use skills or normal attack.

*Go into the bot and press the checkbox on which F-Key you chose. Add a delay on 0.5 seconds

*Press start bot and boom.
05/09/2015 01:38 nicksta1991#40
Would there be any way we could contribute to maybe entice other features?
Is there anyway to make it so it sticks to one monster ID? If you chose to do so?
The only issue I see with the bot is that it will eventually wanders into other spawns and will eventually select a pet or player.
Anyhow, thank you very much for the release; haven't seen anything like this for FlyFF in a very very long time.
Thanks again.
05/09/2015 02:01 greyb1t#41
Quote:
Originally Posted by nicksta1991 View Post
Would there be any way we could contribute to maybe entice other features?
Is there anyway to make it so it sticks to one monster ID? If you chose to do so?
The only issue I see with the bot is that it will eventually wanders into other spawns and will eventually select a pet or player.
Anyhow, thank you very much for the release; haven't seen anything like this for FlyFF in a very very long time.
Thanks again.
I am not adding new function to the bot since it is working properly atm.
If I add new featues, there is more to update. I want to update it fast, not spend alot of time on it.

Yes, it may select another player, fixing this will be a bit harder since it's harder to identify a player, but not a pet, I think I fixed that.

Yeah, it will run into other mob spawns aswell. I can fix it by finding the selected monsters level. But I won't.

I'm sorry, but I will probably not add anymore features to it since it works.
05/09/2015 10:26 heldixjedd2#42
Quote:
Originally Posted by greyb1t View Post
Did it successfully read your username?

If it didn't read your username, you aren't using it for Insanity Flyff.

Did it select a entity?

If it selected a entity, you forgot to use the F-Key Simulator.
Press 'O' ingame. And drag "Attack the selected target" / a skill to F1.
Then in the bot, add a delay on 0.5 on F1, then it should attack a enemy.
Tried it but other than the log below, nothing happens:

Found nearest entity: 10889140
X: 7726.478516
Y: 114.822952
Z: 4106.694336
HP: 3101
MP: 422
EntityDist: 21.362787
EntityDistPos: 3
05/09/2015 10:57 greyb1t#43
Quote:
Originally Posted by heldixjedd2 View Post
Tried it but other than the log below, nothing happens:

Found nearest entity: 10889140
X: 7726.478516
Y: 114.822952
Z: 4106.694336
HP: 3101
MP: 422
EntityDist: 21.362787
EntityDistPos: 3
Since you're the only one having this problem. I don't really know how to fix it.

What kind of monsters are you near while trying?
What mode are you using?, try to change it to teleport to see which thing it finds.
Are you sure it is not a player or something flying that it's targeting.
05/09/2015 11:31 [S]teaMHunte[R]#44
how i can find offset for other flyff and how i can set it?
05/09/2015 11:51 greyb1t#45
Quote:
Originally Posted by [S]teaMHunte[R] View Post
how i can find offset for other flyff and how i can set it?
I am not going to teach you how to find addresses and offsets.
Learn by yourself.

Applying them to the bot you gotta give them to me.
Or code your own bot.

Code:
namespace LocalPlayerAddys {
	
        // LocalPlayer 
	static int xOffsets[] = { 0x164 };
	static int yOffsets[] = { 0x168 };
	static int zOffsets[] = { 0x16c };

	static int hpOffsets[] = { 0x720 };

	static int rangeOffsets[] = { 0x12b4 };
	static int speedOffsets[] = { 0x1178 };
	
	static DWORD usernameBase = 0x8AB690;
	static DWORD playerBase = 0x008AA060;
};
Code:
namespace EntityAddys {

	// Entity
	static int xOffsets[] = { 0x164 };
	static int yOffsets[] = { 0x168 };
	static int zOffsets[] = { 0x16c };

	static int hpOffsets[] = { 0x720 };
	static int mpOffsets[] = { 0x724 };

	static DWORD entityBase = 0x00A5FAE8;
	static DWORD entityDist = 0x4;

	// Selected Entity
	static DWORD selectedEntityBase = 0x008AA420;
	static int selectedEntityOffsets[] = { 0x20 };
};