# Pastebin IuExikWv function travel_to(player, dest) player:send("You hop into the hover car and travel to " .. dest:get('title')) player.room = dest:get('room') player:send("You pay the computer with your credits, and climb out.") end room.commands:add("travel", function(player, arg) local destinations = game.data.load("recall:garage") if arg ~= "" then if destinations:get(arg) then travel_to(player, destinations:get(arg)) return true end for _, dest in ipairs(destinations:values()) do if dest:get("title"):lower():find(arg:lower()) then travel_to(player, dest) return true end end player:send("You search and search, but don't see a hovercar going there.") return true else player:send("You must enter a destination. To see a list of destinations, type destinations") end return true end) room.commands:add("destinations", function(player, arg) player:send("The following destinations are available:") for _, dest in ipairs(game.data.load("recall:garage"):values()) do player:send(" {yellow}" .. dest:get("title") .. "{normal}") end return true end)