require 'lib.moonloader'
require 'lib.sampfuncs'
local ServerIp = "127.0.0.1" ---Сюда вписываешь ip Основного своего сервера(не VC)
local ServerPort = 7777
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('vrec', vrec)
wait(-1)
end
function vrec()
sampConnectToServer(ServerIp, ServerPort)
end