Postado Março 20, 2022 3 anos .Qual servidor ou website você utiliza como base? Estou usando o [OTX 12.64] Baiak Styller e todos os modulos que contem o site. meu site é o http://cryptobaiak.servegame.com:8000/ meu servidor ja esta online e rodando normalmente. porem nao estou conseguindo colocar o otc esta dando pelo client normal ele conecta normal. configurei o OTC para Servers = { CryptoBaiak = "cryptobaiak.servegame.com:8000:1100", } tirei o token e tudo mesmo assim não loga. alguem pode dar um força pf. eu sei que a versão que ele vai entrar é o 11.x Qual o motivo deste tópico? erro no OTC Está surgindo algum erro? Se sim coloque-o aqui. Citar your connection has been lost either your network or the server went down (error 2) Você tem o código disponível? Se tiver publique-o aqui: -- CONFIG APP_NAME = "otclientv8" -- important, change it, it's name for config dir and files in appdata APP_VERSION = 1341 -- client version for updater and login to identify outdated client DEFAULT_LAYOUT = "retro" -- on android it's forced to "mobile", check code bellow -- If you don't use updater or other service, set it to updater = "" Services = { website = "http://otclient.ovh", -- currently not used -- updater = "http://otclient.ovh/api/updater.php", stats = "", crash = "http://otclient.ovh/api/crash.php", feedback = "http://otclient.ovh/api/feedback.php", status = "http://otclient.ovh/api/status.php" } -- Servers accept http login url, websocket login url or ip:port:version Servers = { CryptoBaiak = "cryptobaiak.servegame.com:8000:1100", } --Server = "ws://otclient.ovh:3000/" --Server = "ws://127.0.0.1:88/" USE_NEW_ENERGAME = false -- uses entergamev2 based on websockets instead of entergame ALLOW_CUSTOM_SERVERS = false -- if true it shows option ANOTHER on server list g_app.setName("Crypto Baiak") -- CONFIG END -- print first terminal message g_logger.info(os.date("== application started at %b %d %Y %X")) g_logger.info(g_app.getName() .. ' ' .. g_app.getVersion() .. ' rev ' .. g_app.getBuildRevision() .. ' (' .. g_app.getBuildCommit() .. ') made by ' .. g_app.getAuthor() .. ' built on ' .. g_app.getBuildDate() .. ' for arch ' .. g_app.getBuildArch()) if not g_resources.directoryExists("/data") then g_logger.fatal("Data dir doesn't exist.") end if not g_resources.directoryExists("/modules") then g_logger.fatal("Modules dir doesn't exist.") end -- settings g_configs.loadSettings("/config.otml") -- set layout local settings = g_configs.getSettings() local layout = DEFAULT_LAYOUT if g_app.isMobile() then layout = "mobile" elseif settings:exists('layout') then layout = settings:getValue('layout') end g_resources.setLayout(layout) -- load mods g_modules.discoverModules() g_modules.ensureModuleLoaded("corelib") local function loadModules() -- libraries modules 0-99 g_modules.autoLoadModules(99) g_modules.ensureModuleLoaded("gamelib") -- client modules 100-499 g_modules.autoLoadModules(499) g_modules.ensureModuleLoaded("client") -- game modules 500-999 g_modules.autoLoadModules(999) g_modules.ensureModuleLoaded("game_interface") -- mods 1000-9999 g_modules.autoLoadModules(9999) end -- report crash if type(Services.crash) == 'string' and Services.crash:len() > 4 and g_modules.getModule("crash_reporter") then g_modules.ensureModuleLoaded("crash_reporter") end -- run updater, must use data.zip if type(Services.updater) == 'string' and Services.updater:len() > 4 and g_resources.isLoadedFromArchive() and g_modules.getModule("updater") then g_modules.ensureModuleLoaded("updater") return Updater.init(loadModules) end loadModules() Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. alguem ????? ??????
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.