this is what i thought but there is a error at line 4
function joinserverHandlerFunction (playerSource, commandName, serverIP, serverPort, serverPassword)
if serverIP and serverPort then
if serverPassword then --if also a password was specified
redirectPlayer (playerSource, 77.160.183.15, tonumber(20001), serverPassword)
else -- else if no password was specified
redirectPlayer (playerSource, 77.160.183.15, tonumber(20001))
end
else
outputChatBox ("Error! Correct Command: /stealth", playerSource)
end
end
addCommandHandler ("stealth", joinserverHandlerFunction)