Advertisement
Guest User

startup

a guest
Aug 24th, 2013
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. cmd = peripheral.wrap("left")
  2. while true do
  3.   ch = peripheral.wrap("top")
  4.  
  5.   local event,person,msg = os.pullEvent("chat")
  6.   local function take()
  7.     cmd.setCommand("tpx "..person.." 0 -230 74 871")
  8.     cmd.runCommand()
  9.   end
  10.  
  11.   if msg == "takemehome" then
  12.     take()
  13.     ch.say("Taking "..person.." home!")
  14.   end
  15.  
  16.  
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement