function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('connect', function(arg)
if arg:find("%d+%.%d+%.%d+%.%d+:%d+") then
local ip, host = arg:match("(%d+%.%d+%.%d+%.%d+):(%d+)")
sampConnectToServer(ip, host)
end
end)
wait(-1)
end