[BOT] NosBota by WarlossGreat

04/02/2016 19:37 WalrossGreat#901
If you know a bit about programming you should know, that bigger projects are almost alway object-orientated, so almost every thing is pushed into class/structure.

Finding pointer of visable values are really easy and maybe it's right that's borning + people uses pointer scan (which gives you 3kk of pointers) instead of run debuger and extremally fast got the one right pointer + there you can look at asm code and learn a bit.

> Searching pointers is not fun Fun is if i can use it

Well than you probably don't get reverse engineering. Yes, it's nice to be for example one of the best football players, but if you don't like training it would be more impossible rather than hard to become one of them. Yes, I'm noob too, but try learning to become better, and it isn't that bad as it looks.

In my opinion if you don't like something it's pointless to doing it, i will say it again, it's only my opinion. Like some peoples that I know, they for exampling were jogging, but they didn't enjoy it so they get bored really fast. I'm not calling that it's bad, it's better to try something and say "Ok, it's stupid", instead of don't try and say "It's really good" :D

Well, I'm not discouraged you, maybe in the future when you will know more you will say something like "It's more interesting than I thought!"

tl;dr: Yes, it's in the structure too.
04/02/2016 20:32 lika85#902
I want only hint how to find that array of structures of items. If i dissect data/structure how can i get pointer to that structure?
04/03/2016 13:34 luigi1000#903
just using bots to exp, I am banned ?
(for changes to client)
04/03/2016 19:44 lika85#904
Quote:
Originally Posted by WalrossGreat View Post
If you know a bit about programming you should know, that bigger projects are almost alway object-orientated, so almost every thing is pushed into class/structure.

Finding pointer of visable values are really easy and maybe it's right that's borning + people uses pointer scan (which gives you 3kk of pointers) instead of run debuger and extremally fast got the one right pointer + there you can look at asm code and learn a bit.

> Searching pointers is not fun Fun is if i can use it

Well than you probably don't get reverse engineering. Yes, it's nice to be for example one of the best football players, but if you don't like training it would be more impossible rather than hard to become one of them. Yes, I'm noob too, but try learning to become better, and it isn't that bad as it looks.

In my opinion if you don't like something it's pointless to doing it, i will say it again, it's only my opinion. Like some peoples that I know, they for exampling were jogging, but they didn't enjoy it so they get bored really fast. I'm not calling that it's bad, it's better to try something and say "Ok, it's stupid", instead of don't try and say "It's really good" :D

Well, I'm not discouraged you, maybe in the future when you will know more you will say something like "It's more interesting than I thought!"

tl;dr: Yes, it's in the structure too.
You are maybe right, but its not so funny for me, fun for me is making crazy projects like making random number from memory reading other process (not so random) or computing 10e100 prime numbers. Idk how u find all items and mobs on the map but u must be nostale developer or magician. I have only number of items on the ground but thats all. Its impossible find it without searching array by size becouse how can u know what value is there? Mob array too. How can u find all items in my inventory. Its impossible too. I was trying to search items on the ground and i found anythink. I was trying to found position with your bot and i dont find anythink too, it must be some datatype wich doesnt exists. I know what is structure but find structure of item without some initial value is really hard.
04/03/2016 20:29 forsatus#905
Quote:
Originally Posted by lika85 View Post
I am good at programming but not good at searching pointers and structures. Searching pointers is not fun :D Fun is if i can use it (now i have hp,maxhp,mana,maxmana and money). Other question, position of player is array too? I was founding x and y and i dont find anythink
If we send to you all structure with pointer you can't do anything by you, make a cheat / hack is 80% read structure and use asm function, example :
drop item you need to :
-> find item position (read structure)
-> move to item (asm)
-> check player position (read structure)
-> drop item (asm)

For make a cheat or bot you need to learn RE and find by yourself structure.
04/03/2016 21:00 lika85#906
Quote:
Originally Posted by forsatus View Post
If we send to you all structure with pointer you can't do anything by you, make a cheat / hack is 80% read structure and use asm function, example :
drop item you need to :
-> find item position (read structure)
-> move to item (asm)
-> check player position (read structure)
-> drop item (asm)

For make a cheat or bot you need to learn RE and find by yourself structure.
How to "move" to item by asm? How to find structure of the item on the floor? Calling asm functions in C# cant be hard.
04/03/2016 21:02 forsatus#907
Quote:
Originally Posted by lika85 View Post
How to "move" to item by asm? How to find structure of the item on the floor? Calling asm functions in C# cant be hard.
IDK with c# because it's a shit language (my opinion)
with c++ use
__ASM
{
//code
}

search asm code of walk function with ollyDBG.
search structure with cheat engine.
04/03/2016 21:08 lika85#908
Please can u tell me, how can i find array of structures if i dont know values? Cheat engine isnt my strong page (maybe it means somethink else in englsh but u know how i mean it). I can find structure but not structure of item becouse i dont know how to find somethink wich is in structure of the item. Find position is too impossible becouse if i search all and search x and y or x and y in array it doesnt find anythink. Sry i am bad cheat engineer.
04/03/2016 21:28 forsatus#909
Quote:
Originally Posted by lika85 View Post
Please can u tell me, how can i find array of structures if i dont know values? Cheat engine isnt my strong page (maybe it means somethink else in englsh but u know how i mean it). I can find structure but not structure of item becouse i dont know how to find somethink wich is in structure of the item. Find position is too impossible becouse if i search all and search x and y or x and y in array it doesnt find anythink. Sry i am bad cheat engineer.
position of player, item etc look this
x=85 y=40 ->00850040
04/03/2016 21:35 lika85#910
Thank you! How u find it looks like this?
04/03/2016 21:50 WalrossGreat#911
That's how 4bytes value looks like in hex when you read two shorts value as int.
And you are probably wrong forsatus,

x=85 y=40 ->00850040

It would look like
x= 85 y=40 -> 00280055
04/03/2016 21:58 forsatus#912
Quote:
Originally Posted by WalrossGreat View Post
That's how 4bytes value looks like in hex when you read two shorts value as int.
And you are probably wrong forsatus,

x=85 y=40 ->00850040

It would look like
x= 85 y=40 -> 00280055
Maybe but i say that for example i thinks it's a HEX value

X = 85 HEX : 55 -> 4bytes : 0055
Y = 40 HEX : 28 -> 4bytes : 0028

so, y is the first value : 00280055

Quote:
Originally Posted by lika85 View Post
Thank you! How u find it looks like this?
I try, i don't know i try something and i think it's hex value, i change it to decimal value and it's right.
04/05/2016 02:08 azoo0ooz#913
Hello,

Is it possible to add an option to return to the same map if the bot died?
this would be cool

thank you.
04/06/2016 22:28 kray12#914
Not because my character does not attack , everything else well , walk and collect
04/10/2016 17:09 patry233#915
Yeah something gone wrong.. And character not fighting only walking and collecting, but normal can attack only sp don't work