Advertisement
Guest User

smb RNG scrambler

a guest
Nov 30th, 2014
1,256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. -- save as [fceux]/luaScripts/*.lua
  2. -- go to File -> Lua -> New Lua Script Window and run it
  3.  
  4. while (true) do
  5. memory.writebyte(0x07a7, math.random(0, 255))
  6. memory.writebyte(0x07a8, math.random(0, 255))
  7. memory.writebyte(0x07a9, math.random(0, 255))
  8. memory.writebyte(0x07aa, math.random(0, 255))
  9. memory.writebyte(0x07ab, math.random(0, 255))
  10. memory.writebyte(0x07ac, math.random(0, 255))
  11. memory.writebyte(0x07ad, math.random(0, 255))
  12.  
  13. FCEU.frameadvance()
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement