Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --#load the touchpoint API
- os.loadAPI("touchpoint")
- os.sleep(1)
- --# wrap the radar to the computer
- local p = peripheral.find("warpdriveRadar")
- local x,y,z = p.getLocalPosition()
- local rPosOK,dim,rPosX,rPosY,rPosZ,localdim = p.getGlobalPosition()
- local text = x .. " "..y.." "..z
- --# initialize the planet instance set on the monitor
- local t = touchpoint.new("top")
- --# Add planets
- if localdim == "Hyperspace" then
- t:add("Galaxy Map V0.1", nil, 5, 2, 45, 3, colors.gray, colors.black)
- t:add("Hyperspace", nil, 5, 4, 45, 5, colors.red, colors.black)
- t:add("Avalon", nil, 5, 6, 17, 8, colors.blue, colors.lightBlue)
- t:add("Centauri", nil, 19, 6, 31, 8, colors.blue, colors.lightBlue)
- t:add("Bogdaleos", nil, 33, 6, 45, 8, colors.blue, colors.lightBlue)
- t:add("Groth", nil, 19, 11, 31, 13, colors.blue, colors.lightBlue)
- t:add("Click Planet to Auto Jumpto.", nil, 5, 16, 17, 18, colors.gray, colors.lightBlue)
- elseif localdim == "" then
- t:add("Galaxy Map V0.1", nil, 5, 2, 45, 3, colors.black, colors.black)
- t:add("Hyperspace", nil, 5, 4, 45, 5, colors.black, colors.black)
- end
- --t:add("Shulker", nil, 5, 6, 17, 8, colors.blue, colors.lightBlue)
- --t:add("Wither", nil, 19, 6, 31, 8, colors.blue, colors.lightBlue)
- --t:add("Feral Ghoul", nil, 33, 6, 45, 8, colors.blue, colors.lightBlue)
- --t:add("Evoker", nil, 5, 11, 17, 13, colors.blue, colors.lightBlue)
- --t:add("Z Pigman", nil, 19, 11, 31, 13, colors.blue, colors.lightBlue)
- --t:add("Ghast", nil, 33, 11, 45, 13, colors.blue, colors.lightBlue)
- --t:add("Skeleton", nil, 5, 16, 17, 18, colors.blue, colors.lightBlue)
- --t:add("Z Miner", nil, 19, 16, 31, 18, colors.blue, colors.lightBlue)
- --t:add("Witch", nil, 33, 16, 45, 18, colors.blue, colors.lightBlue)
- --t:add("Blizz", nil, 5, 21, 17, 23, colors.blue, colors.lightBlue)
- --t:add("Slime", nil, 19, 21, 31, 23, colors.blue, colors.lightBlue)
- --t:add("Cyberdemon", nil, 33, 21, 45, 23, colors.blue, colors.lightBlue)
- --t:add("Spider", nil, 5, 26, 17, 28, colors.blue, colors.lightBlue)
- --t:add("Enderman", nil, 19, 26, 31, 28, colors.blue, colors.lightBlue)
- --t:add("You will be teleported upon picking a kit", nil, 3, 17, 47, 18, colors.black, colors.black)
- --# draw the buttons
- t:draw()
- while true do
- --# handleEvents will convert monitor_touch events to button_click if it was on a button
- local event, kit = t:handleEvents(os.pullEvent())
- if event == "button_click" then
- if kit == "Thermal Kit" then
- os.shutdown()
- --# Gives the player the Thermal Expansion Starter Kit #--
- elseif kit == "Thaumic Kit" then
- os.shutdown()
- --# Gives the player the Thaumcraft Starter Kit #--
- elseif kit == "AE2 Kit" then
- os.shutdown()
- --# Gives the player the AE2 Starter Kit #--
- elseif kit == "Botania Kit" then
- os.shutdown()
- --# Gives the player the Botania Starter Kit #--
- elseif kit == "Miner Kit" then
- os.shutdown()
- --# Gives the player the Miner Start Kit #--
- end
- end
- end
Add Comment
Please, Sign In to add comment