Kirkq

Popn Camera Manipulation

Jun 16th, 2017
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. --if using Bizhawk, change "snes9x" to "emu"
  2.  
  3. local Health = 0x7E051A
  4.  
  5. memory.writebyte(Health,6)
  6.  
  7. while true do
  8.  
  9. --you go this way
  10. for i = 1,7,1 do
  11. joypad.set(1,{["right"]=true,["B"]=true})
  12. snes9x.frameadvance()
  13. end
  14.  
  15. joypad.set(1,{["left"]=true})
  16. snes9x.frameadvance()
  17.  
  18. for i = 1,8,1 do
  19. joypad.set(1,{["B"]=true})
  20. snes9x.frameadvance()
  21. end
  22.  
  23. end
Advertisement
Add Comment
Please, Sign In to add comment