Need help?[Help] freezing addresses - MPGH - MultiPlayer Game Hacking & Cheats
[Help] freezing addresses
Posts 1–15 of 16 · Page 1 of 2
[Help] freezing addresses
I have address that i want to freeze its for a hex program i want to freeze the left time for the trial. what i mean is freezing the address value of that process
am using vb can some one give me a code for that so i can keep using the trial without needing to upgrade
Plz help me
am a choob
Set your desired value under a Timer_Tick event, with the said timer's interval to 1.
I don't understand the question, Is it you want to stop the timer for a period of time?
In which case you
Code:
Timer.enabled=False
If you want a slight pause in anything it is
Code:
System.Threading.Thread.Sleep (1000) '1000 = 1Second , it works in ms , so 500ms = ' '1/2 second
i want to make a dll file that i will inject to the process
and thanx for help i will try ur ideas
Originally Posted by fadee
i want to make a dll file that i will inject to the process
and thanx for help i will try ur ideas
this is in a better way
i want to freeze the value of an address of certain process using dll file injection way
Originally Posted by fadee
i want to make a dll file that i will inject to the process
I had to bring out the old pic after I saw a post this retarded.
Code:
Dim sample As String = "sample"
Do Until sample = "not sample"
'put value change/set here
Loop
It's a very simple "do" loop.
Originally Posted by Lolland
Code:
Dim sample As String = "sample"
Do Until sample = "not sample"
'put value change/set here
Loop
It's a very simple "do" loop.
First thanx for help
i got it but where i but the value like i want to freeze "0x001D462F" on "1"
i know am asking alot "i am a choob" don't get mad at me i want to learn
and again Thanx
Pixiecorp dethroned? That is win.
Originally Posted by Nexulous
Pixiecorp dethroned? That is win.
Get with the system here, champ.
Wrong Post, sorry.
Are you asking how to freeze the value?
Originally Posted by NextGen1
Wrong Post, sorry.
Are you asking how to freeze the value?
well thats sorta what he said in his topic
On topic:
use:
writeprocessmemory
readprocessmemory
and google how to use those.
Originally Posted by XGelite
well thats sorta what he said in his topic
On topic:
use:
writeprocessmemory
readprocessmemory
and google how to use those.
, I know, but he then said
Problem was solved
and I had 2 threads open, was posting in the other, but accidentally posted here, so I read backwards and tries staying on topic
Add a timer to the form. Underneath the timer event. Put writeprocessmemory() with the address to write to and the value you want to write and every time the timer executes it will rewrite your value.