Memory Functions

From SolarStrike wiki
Revision as of 04:58, 14 July 2008 by 91.47.112.226 (talk) (memoryReadByte)
Jump to: navigation, search

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