Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- 0xC8131C - [word] Upcoming weather.
- 0xC81320 - [word] Current weather.
- Weather Values:
- 8 = RAINY_SF
- 16 = RAINY_COUNTRYSIDE
- }
- {$CLEO}
- 0000:
- :start
- repeat
- wait 0
- until 0ADC: test_cheat "rainy"
- 0ACA: show_text_box "ON"
- wait 500
- 31@ = 0xC81320 // [word] Current weather.
- 27@ = 0xC8131C //[word] Upcoming weather.
- repeat
- 0A8D: 30@ = read_memory 31@ size 2 virtual_protect 0
- 0A8D: 26@ = read_memory 27@ size 2 virtual_protect 0
- if or
- 30@ == 8 // check current weather is Rainy_SF (8)
- 26@ == 8 // check upcoming weather is Rainy_SF (8)
- then
- /// here do whatever you want...
- end
- wait 0
- until 0ADC: test_cheat "rainy"
- 0ACA: show_text_box "OFF"
- wait 500
- jump @start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement