Advertisement
zahar0401

Simple

Sep 5th, 2016
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Backing up _G
  2. root = _G
  3.  
  4. print = root.print
  5. run = root.dofile
  6. error = root.error
  7.  
  8. iterator = {}
  9. iterator.keyvalue = root.pairs
  10. iterator.numerical = root.ipairs
  11.  
  12. local string = root.string
  13. local table = root.table
  14. local coroutine = root.coroutine
  15. local math = root.math
  16. local parallel = root.parallel
  17.  
  18. net = {}
  19. net.open = root.rednet.open
  20. net.close = root.rednet.open
  21. net.status = root.rednet,isOpen
  22. net.send = root.rednet.send
  23. net.sendAll = root.rednet.broadcast
  24. net.standby = root.rednet.receive
  25.  
  26. dns = {}
  27. dns.register = root.rednet.host
  28. dns.unregister = root.rednet.unhost
  29. dns.lookup = root.rednet.lookup
  30.  
  31. convert = {}
  32. convert.toNumber = root.tonumber
  33. convert.toString = root.tostring
  34. convert.getType = root.type
  35.  
  36. event = {}
  37. event.network = "rednet_message"
  38. event.mouse = "mouse_click"
  39. event.keyboard = "key"
  40. event.modem = "modem_message"
  41.  
  42. system = {}
  43. system.handleEvent = root.os.pullEvent
  44. system.shutdown = root.os.shutdown
  45. system.reboot = root.os.reboot
  46.  
  47. debug = {}
  48. debug.rawset = root.rawset
  49. debug.rawget = root.rawget
  50. debug.protect = root.xpcall
  51. debug.execute = root.assert
  52. debug.callEvent = root.os.queueEvent
  53.  
  54. import = root.os.loadAPI
  55.  
  56. download = root.http.get
  57. upload = root.http.post
  58.  
  59. getRedstone = root.rs.getInput
  60. setRedstone = root.rs.setOutput
  61.  
  62. openFileIO = root.fs.open
  63.  
  64. class = function(properties)
  65.  if convert.getType(properties) ~= table then
  66.   error("class properties must be provided in a table")
  67.  else
  68.   root.setmetatable({}, properties)
  69.   properties.__index = properties
  70.   return properties
  71.  end
  72. end
  73.  
  74. simple = {root, print, run, error, iterator, string, table, coroutine, math, parallel, net, dns, convert, event, system, debug, import, root.fs, download, upload, getRedstone, setRedstone, openFileIO, class}
  75.  
  76. return simple
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement