Advertisement
xXm0dzXx

FakeRom v1.0

Jun 11th, 2012
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. if not fs.exists(".rom") then
  2.     fs.copy("rom", ".rom")
  3. end
  4.  
  5. oldfsopen = fs.open
  6. oldfslist = fs.list
  7. oldfsexists = fs.exists
  8.  
  9. function testOpenWithRomEditor( _fPath, _fMode ) --This also does shell.run :D
  10.     if _fPath then
  11.         _fPath = string.gsub( _fPath, "rom", ".rom")
  12.     end
  13.            
  14.     return oldfsopen( _fPath, _fMode )
  15. end
  16.  
  17. function testListWithRomListing( path )
  18.     if path then
  19.         path = string.gsub( path, "rom", ".rom")
  20.     end
  21.     return oldfslist( path )
  22. end
  23.  
  24. function testExistWithRomFinder( path )
  25.     if path then
  26.         path = string.gsub( path, "rom", ".rom")
  27.     end
  28.     return oldfsexists( path )
  29. end
  30.  
  31. fs.exists = testExistWithRomFinder
  32. fs.list = testListWithRomListing
  33. fs.open = testOpenWithRomEditor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement