ForgottenNot
Banned User
- Joined
- Feb 10, 2023
- Messages
- 303
- Reaction score
- 29
Hi
Im trying to connect to the server using canary, znote and cipclient
here is canary console
config.php ( website)
config.lua (server )
downloaded the client from here
server from here
github.com
updated login.php using znote v2 from here
and the same for revscript login.lua
i get message login failed in client, can somebody help me pls? thank you
Im trying to connect to the server using canary, znote and cipclient
here is canary console
HTML:
[2024-05-08 08:58:32.022] [info] Canary - Version 3.1.2
[2024-05-08 08:58:32.023] [info] A server developed by: OpenTibiaBR Organization
[2024-05-08 08:58:32.023] [info] Visit our website for updates, support, and resources: https://docs.opentibiabr.com/
[2024-05-08 08:58:32.025] [info] Running with 4 threads.
[2024-05-08 08:58:32.031] [info] Server protocol: 13.32
[2024-05-08 08:58:32.031] [info] Establishing database connection...
[2024-05-08 08:58:32.037] [warning] MySQL host, user, password, database or port not provided
[2024-05-08 08:58:34.487] [info] Boosted creature: Ladybug
[2024-05-08 08:58:34.488] [info] Boosted boss: Count Vlarkorth
[2024-05-08 08:58:34.489] [info] Loaded 21 badges from Badge System
[2024-05-08 08:58:34.489] [info] Loaded 93 titles from Title system
[2024-05-08 08:58:42.993] [info] Map Loaded otservbr.otbm (35143x34812) in 8503.334 milliseconds
[2024-05-08 08:58:43.716] [info] Map Loaded otservbr-custom.otbm (34143x33812) in 46.684 milliseconds
[2024-05-08 08:58:43.722] [info] Loaded house items in 2.557 milliseconds
[2024-05-08 08:58:43.745] [info] Initializing gamestate...
[2024-05-08 08:58:50.291] [info] [World Change] The Dream Courts today's boss is: Plagueroot!
[2024-05-08 08:58:51.092] [info] [World Change] Fury Gate has arrived in Edron!
[2024-05-08 08:58:51.145] [info] [World Change] Nightmare Isle is active in North of Darashia
[2024-05-08 08:58:51.145] [info] Yasir: not this time
[2024-05-08 08:58:51.203] [info] Checking Global: No duplicate values found.
[2024-05-08 08:58:51.204] [info] Checking GlobalStorage: No duplicate values found.
[2024-05-08 08:58:51.208] [info] Checking Storage: No duplicate values found.
[2024-05-08 08:58:51.456] [info] Rashid arrived at Svarground
=============================
= Znote AAC loginWebService =
=============================
=============================
= SERVER_NAME: Forgotten
= IP: 127.0.0.1
= GAME_PORT: 7172
=============================
[2024-05-08 08:58:51.459] [info] Loaded all modules, server starting up...
[2024-05-08 08:58:51.459] [info] Forgotten server online!
[2024-05-08 08:58:51.460] [info] Map Loaded plagueroot.otbm (34143x33812) in 0.372 milliseconds
[2024-05-08 08:58:51.460] [info] Map Loaded edron.otbm (33225x31925) in 0.339 milliseconds
[2024-05-08 08:58:51.461] [info] Map Loaded darashia-north.otbm (33227x32282) in 1.229 milliseconds
Code:
// What client version and server port are you using on this OT?
// Used for the Downloads page.
$config['client'] = 1332; // 954 = client 9.54
// Download link to client.
$config['client_download'] = 'http://tibiaclient.otslist.eu/download/tibia'. $config['client'] .'.exe';
$config['client_download_linux'] = 'http://tibiaclient.otslist.eu/download/tibia'. $config['client'] .'.tgz';
$config['port'] = 7171; // Port number to connect to your OT.
$config['status'] = array(
'status_check' => false, // Enable or disable status checker
'status_ip' => '127.0.0.1',
'status_port' => "7171",
);
// Gameserver info is used for client 11+ loginWebService
$config['login_web_service'] = true; // loginWebService for client 11+ enabled?
$config['gameserver'] = array(
'ip' => '127.0.0.1',
'port' => 7172,
'name' => 'Forgotten' // Must be identical to config.lua (OT config file) server name.
);
// Unlock all protocol 12 client features? Free premium in config.lua? Then set this to true.
$config['freePremium'] = true;
config.lua (server )
Code:
ip = "127.0.0.1"
allowOldProtocol = false
bindOnlyGlobalAddress = false
loginProtocolPort = 7171
gameProtocolPort = 7172
statusProtocolPort = 7171
maxPlayers = 0
serverName = "Forgotten"
-- MySQL
mysqlHost = "127.0.0.1"
mysqlUser = "root"
mysqlPass = ""
mysqlDatabase = "canary"
mysqlPort = 3306
mysqlSock = ""
passwordType = "sha1"
server from here
GitHub - opentibiabr/canary: Canary Server 14.x for OpenTibia community.
Canary Server 14.x for OpenTibia community. . Contribute to opentibiabr/canary development by creating an account on GitHub.
Code:
https://github.com/Znote/ZnoteAAC/blob/v2/login.php
Code:
https://github.com/dudantas/tibia-client/tree/13.32.14520 // canary 13.32 client
i get message login failed in client, can somebody help me pls? thank you