Advertisement
Plexa

GS2+ with precise position

Sep 12th, 2014
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. local AD3 = 0x0200049A -- Next Encounter
  2. local AD4 = 0x020054C8 -- Battle RN
  3. local AD5 = 0x030011BC -- General RN
  4.  
  5. while true do
  6.  
  7. gui.text(0,00,"BRN: ".. (memory.readdword(AD4)))
  8. gui.text(0,10,"GRN: ".. (memory.readdword(AD5)))
  9. gui.text(0,20,"Encounter: ".. (memory.readword(AD3)))
  10. gui.text(70,0,"X: " .. (memory.readdword(0x020322F4))/1000000)
  11. gui.text(70,10,"Y: " .. (memory.readdword(0x020322FC))/1000000)
  12. gui.text(70,20,"Z: " .. (memory.readdword(0x020322F8))/1000000)
  13.  
  14. vba.frameadvance();
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement