Advertisement
DanchiZZ

Test

Oct 10th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. function getLoc()
  2.   --a, b, c, d = moving.getLocation()
  3.   --print(a.." "..b.." "..c.." "..d)
  4. end
  5.  
  6. do
  7.   local initFail = false
  8.   print("Initializing extmine API and logger...")
  9.   initFail = not(os.loadAPI("/programs/logger"))
  10.   initFail = not(os.loadAPI("/programs/moving"))
  11.   initFail = not(os.loadAPI("/programs/deployer"))
  12.   if initFail then print("Initialization failed!")
  13.   else print("Complete") end
  14.   if not(initFail) then
  15.     moving.setup()
  16.     deployer.deployChests()
  17.   end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement