Help

05/16/2012 19:24 bombom101#1
how can I send the value of a form in c # adress.
I appears that the level of the account
__________
I expect a response. thank :handsdown:
05/24/2012 13:26 I don't have a username#2
What did I just read?!
05/25/2012 10:28 pro4never#3
Why did you just bump? :D
05/29/2012 13:18 I don't have a username#4
Because OP expected a response trololol.
05/29/2012 14:48 denominator#5
Think he just means like a VIP system, such as if character is VIP 2 then it can log in and if not then it can't?

Or he might be asking how to show the level of a characters using visual C#?
05/29/2012 19:33 bombom101#6
Look
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
understand?
05/29/2012 20:23 pro4never#7
So your actual question is...

"How do I display character information in a winform application"

To do that you first have to have communication between your application and the client. This can be done either through memory based hooks (hook into the actual values in memory or hook the send/receive and read the information from packets) or use a man in the middle proxy to intercept the data being transmitted between the client and server.

To do either you'll need a fairly decent knowledge of programming. The new encryption is not public so using the proxy method is not very simple anymore. If you want to use a hook based approach, hawtness posted a lovely framework but you'll have to be comfortable enough with assembly and reverse engineering to figure out the memory addresses you'll need to use for your purposes.

[Only registered and activated users can see links. Click Here To Register...]

There's a ton of information on how proxies work in that thread.

[Only registered and activated users can see links. Click Here To Register...]

Old proxy framework and tutorials I wrote

[Only registered and activated users can see links. Click Here To Register...]

Memory based hooking library
05/30/2012 06:51 Silent-Death#8
omg i loled so fucking hard =)) and how he took the time on that uploaded pic to take out every other bit of the chrome GUI :))
PRICELESS!! uh.. people died from laughing too hard.. uh.. uh..

ok, well as p4n stated above you 1st need your data, after you have all that data flow it`s most likely you have them set in some data holders (let's call them variables for now..). Then you make this nice painting (let's call it a GUI) and on this paining you have nice stuff to look at like coordinates, level, and so on. Now we have the data (variables) and the painting (GUI) and we want the painting to show us the last known valid data so we make a nice link between them and make sure that the data keeps getting updated in real time.
You don`t really need a complex GUI like people tend to throw up on bots nowadays, you can still make a decent bot with a command prompt print of information.