View previous topic :: View next topic |
Author |
Message |
lamafao Expert Cheater
Reputation: 1
Joined: 17 Apr 2013 Posts: 130
|
Posted: Thu Mar 20, 2014 2:13 pm Post subject: fstp & fld |
|
|
Could someone explain to me what these do, and how or what could i add/modify so that i can change the values they have/send?
fld loads a float value from some magical place and sends it to eax+10?
fstp dword ptr [ecx+10]
fld dword ptr [eax+10]
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Thu Mar 20, 2014 3:11 pm Post subject: |
|
|
fld loads the value from eax+10
fstp pops the fpu stack and writes the popped value into [ecx+10]
the difference between fld and fstp is basically putting and popping values off the fpu stack. FLD puts new value into stack while fstp pops the value and writes into destination.
what are you trying to do ? if you are trying to the change the value of [ecx+10] do this
fstp dword ptr [ecx+10]
fld [memlocationwithdesiredvalue]
fstp dword ptr [ecx+10]
will load the value from memlocationwithdesiredvalue and write to [ecx+10] .
If you are trying to write to [eax+10], just write a simple mov instruction like
mov [eax+10], somevalue
fld dword ptr [eax+10]
not sure what you are trying to do though
_________________
|
|
Back to top |
|
 |
lamafao Expert Cheater
Reputation: 1
Joined: 17 Apr 2013 Posts: 130
|
Posted: Thu Mar 20, 2014 5:27 pm Post subject: |
|
|
How do i get memlocation, i mean can i create my own? if so how? I guess i could just do something in newmem?
|
|
Back to top |
|
 |
Nemexia55 Expert Cheater
Reputation: 0
Joined: 28 Jan 2014 Posts: 160
|
Posted: Sat Dec 20, 2014 12:05 pm Post subject: |
|
|
STN, Can you please say how you know all these?
i mean where did you learn these?
_________________
|
|
Back to top |
|
 |
zm0d Master Cheater
Reputation: 7
Joined: 06 Nov 2013 Posts: 423
|
|
Back to top |
|
 |
Nemexia55 Expert Cheater
Reputation: 0
Joined: 28 Jan 2014 Posts: 160
|
Posted: Sat Dec 20, 2014 12:43 pm Post subject: |
|
|
OMG this site is awesome thanks!!!
_________________
|
|
Back to top |
|
 |
zm0d Master Cheater
Reputation: 7
Joined: 06 Nov 2013 Posts: 423
|
|
Back to top |
|
 |
Nemexia55 Expert Cheater
Reputation: 0
Joined: 28 Jan 2014 Posts: 160
|
Posted: Sat Dec 20, 2014 2:04 pm Post subject: |
|
|
thanks, and do you know such webpages for LUA?
i think lua is harder than AA
_________________
|
|
Back to top |
|
 |
zm0d Master Cheater
Reputation: 7
Joined: 06 Nov 2013 Posts: 423
|
Posted: Sat Dec 20, 2014 2:15 pm Post subject: |
|
|
Nope, sorry. I don't use LUA :/
|
|
Back to top |
|
 |
Nemexia55 Expert Cheater
Reputation: 0
Joined: 28 Jan 2014 Posts: 160
|
Posted: Sat Dec 20, 2014 2:16 pm Post subject: |
|
|
thank you anyway.
_________________
|
|
Back to top |
|
 |
|