-- numlti hub jump script aka Tattood_Mommy (she knows why) -- by plop command = "!hub" ---- no need for a number here, that goes in the table below HUBS = {["1"]="hub1.no-ip.something", ["2"]="some.other.hub" } -- add as much hub's as you like but give them a unique number Bot = "Tattood_Mommy" -- name of the bot function DataArrival(user,data) if (strsub(data, 1, 1) == "<") then data = strsub(data,1,strlen(data)-1) s,e,cmd,num = strfind(data, "%b<>%s+(%D+)(%d+)") if cmd == command and num ~= nil then if HUBS[num] then user:SendData(Bot, cmd.." "..num) user:SendData(" You are being redirected ... |$ForceMove "..HUBS[num].."|") else user:SendData(Bot, "No sutch hub number in use.|") end end end end