View previous topic :: View next topic |
Author |
Message |
Zeana How do I cheat?
Reputation: 0
Joined: 22 Aug 2015 Posts: 6 Location: Poland
|
Posted: Sat Aug 22, 2015 9:56 pm Post subject: [Please Help] Visual Basic Trainer |
|
|
Hey! so i'm totally new to coding like this but I'm trying to make a trainer with offsets.. I searched up tutorials but all doesn't work for me.. Either that or I just entered the wrong Address or wrong code
Okay so here's my code in VB
Try
WriteDMAInteger("retardgameonline",&H???????, {&H38, &H15c, &H48c, &H384, &H4c}, TextBox1.Text, 5)
Catch
End Try
I have few questions...
1st:What address do i enter in the area i typed " ???????? "
2nd:This address is in Float. Not 4Byte and the tutorials i searched up is in 4Byte. so maybe my code is wrong?
3rd:Someone said i should enter the static address in " ??????? " I tried that and it doesn't work
I attatched a screenshot of my pointers
Maybe some of you will say my pointers are wrong, but I'm pretty sure they are right, on cheat engine it works totally fine.
Or that my process name is wrong. No i assure u it's 100% right.
Please help i'm stuck at this for hours.. I tried entering most addresses i saw on the screen to " ??????? "
Thank you so much!
Description: |
|
Filesize: |
51.3 KB |
Viewed: |
10420 Time(s) |

|
_________________
Total crap at programming xD |
|
Back to top |
|
 |
Daijobu Master Cheater
Reputation: 13
Joined: 05 Feb 2013 Posts: 301 Location: the Netherlands
|
Posted: Sun Aug 23, 2015 2:31 am Post subject: |
|
|
1. You're attempting to memory edit an online MMORPG. Wrong forums.
2. Visual Basic.
3a. "WriteDMAInteger" is not part of the MSDN library.
3b. Copy and Pasted public function(s) which have been around since a year or 5 to 6.
4. You're attempting to memory edit an online MMORPG. Wrong forums.
I'm pretty sure you can't just slap a bunch of offsets together and expect them to work. But I can't see your function so I can only assume it looks like the one I found at Google result #1.
In which case you can't just go and stack offsets in one line. You'll have to add them using multiple variables (or the update the same).
_________________
|
|
Back to top |
|
 |
Zeana How do I cheat?
Reputation: 0
Joined: 22 Aug 2015 Posts: 6 Location: Poland
|
Posted: Sun Aug 23, 2015 2:51 pm Post subject: |
|
|
Hey thanks for your reply.
In CE, this pointer work perfectly.
If i write to the static address without offsets, It works too in VB.
Daijobu wrote: | 1. You're attempting to memory edit an online MMORPG. Wrong forums.
2. Visual Basic.
3a. "WriteDMAInteger" is not part of the MSDN library.
3b. Copy and Pasted public function(s) which have been around since a year or 5 to 6.
4. You're attempting to memory edit an online MMORPG. Wrong forums.
I'm pretty sure you can't just slap a bunch of offsets together and expect them to work. But I can't see your function so I can only assume it looks like the one I found at Google result #1.
In which case you can't just go and stack offsets in one line. You'll have to add them using multiple variables (or the update the same). |
_________________
Total crap at programming xD |
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Sun Aug 23, 2015 5:14 pm Post subject: |
|
|
Read the integer at "THEADSTACK+whatever".
Add &H4C to that value.
Read the next integer, using the previous value as the address.
Add &H384 to that value.
Read the next integer, using the previous value as the address.
Add &H48C to that value.
etc. etc. etc.
|
|
Back to top |
|
 |
Zeana How do I cheat?
Reputation: 0
Joined: 22 Aug 2015 Posts: 6 Location: Poland
|
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Sun Aug 23, 2015 9:05 pm Post subject: |
|
|
I do not know how your WriteDMAInteger code looks.
First, you need to find the address of "THREADSTACK1".
Let's say this address is 01230000.
Subtract &HB60 from that address. This gives us 122F4A0.
Read the integer at address 122F4A0.
Lets say that call returns the value 03456700.
Add &4C to that value. This gives us 0345674C.
Now keep doing that using all of the offsets in your list.
Looking back at your screenshot and the code you posted, your offsets appear to be backwards.
I would think it should have been:
WriteDMAInteger("retardgameonline",&H???????, {&H4C, &H384, &H48C, &H15C, &H38}, TextBox1.Text, 5)
You apparently still need some other code to get the address of: "THREADSTACK1"-00000B60
|
|
Back to top |
|
 |
Zeana How do I cheat?
Reputation: 0
Joined: 22 Aug 2015 Posts: 6 Location: Poland
|
Posted: Sun Aug 23, 2015 10:35 pm Post subject: |
|
|
sooo.. the Address of THREADSTACK1 is 00000B60? since it is
"THREADSTACK1"-00000B60
And How do i read the integer of an address?
Zanzer wrote: | I do not know how your WriteDMAInteger code looks.
First, you need to find the address of "THREADSTACK1".
Let's say this address is 01230000.
Subtract &HB60 from that address. This gives us 122F4A0.
Read the integer at address 122F4A0.
Lets say that call returns the value 03456700.
Add &4C to that value. This gives us 0345674C.
Now keep doing that using all of the offsets in your list.
Looking back at your screenshot and the code you posted, your offsets appear to be backwards.
I would think it should have been:
WriteDMAInteger("retardgameonline",&H???????, {&H4C, &H384, &H48C, &H15C, &H38}, TextBox1.Text, 5)
You apparently still need some other code to get the address of: "THREADSTACK1"-00000B60 |
_________________
Total crap at programming xD |
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Mon Aug 24, 2015 4:02 pm Post subject: |
|
|
You take a Visual Basic class to learn what you are coding.
Until then, use Cheat Engine...
Last edited by Zanzer on Mon Aug 24, 2015 4:17 pm; edited 1 time in total |
|
Back to top |
|
 |
Zeana How do I cheat?
Reputation: 0
Joined: 22 Aug 2015 Posts: 6 Location: Poland
|
Posted: Mon Aug 24, 2015 4:13 pm Post subject: |
|
|
could you just help me with this please
i really have to complete this..
_________________
Total crap at programming xD |
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Mon Aug 24, 2015 4:22 pm Post subject: |
|
|
I can't, I don't know how your code works.
|
|
Back to top |
|
 |
Zeana How do I cheat?
Reputation: 0
Joined: 22 Aug 2015 Posts: 6 Location: Poland
|
Posted: Mon Aug 24, 2015 6:17 pm Post subject: |
|
|
Well.. I'm using ReadWritingMemory.vb that i got from some youtube tutorial
And here's a screenshot of my code in VB
Description: |
|
Filesize: |
42.03 KB |
Viewed: |
10097 Time(s) |

|
_________________
Total crap at programming xD |
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
|
Back to top |
|
 |
|