Tutorial-Write Memory address

This is the way of writing memory Address, You can learn from here.... Change the 'VALUE' text to the value of address eg. 250.0 etc..
 avatar
unknown
plain_text
4 years ago
337 B
9
Indexable

:Game_version_check
wait 0 
get_game_version 0@
  if
  0@ == 13 // Apk 1.08
      jf @Game_Version_2.00
    55@ = 
  
:Game_Version_2.00
get_game_version 0@
  if
  0@ == 17 // Apk 2.00
      jf @write_memory
    55@ = 
    
    
:Write_Memory
    Wait 0   
   write_mem_addrs 55@ 'VALUE' 4 1 1
  terminate_this_custom_script
  
  
  
  
Editor is loading...