Difference between revisions of "Memory Functions"

From SolarStrike wiki
Jump to: navigation, search
(memoryReadByte)
(memoryReadByte)
Line 2: Line 2:
 
'''byte memoryReadByte(handle, address)'''
 
'''byte memoryReadByte(handle, address)'''
  
 +
Reads a specific memory adress and returns a single byte.
  
Reads a specific memory adress and returns a single byte.
 
  
 
'''Example'''
 
'''Example'''

Revision as of 04:59, 14 July 2008

memoryReadByte

byte memoryReadByte(handle, address)

Reads a specific memory adress and returns a single byte.


Example

HP = memoryReadInt( myProcess, 0x0D2E0F90); 
 if( HP =< 100 ) then 
  printf("Hp[%d] dropping too low!",HP);
 end