Archangiel
New Member
- Joined
- Oct 7, 2017
- Messages
- 3
- Reaction score
- 0
Hello. I wanted to make a tibia server with this link.
GitHub - malucooo/Otxserver-New: OTXServer Full Global Daily Updated
Everything was fine, server ready, tiba reworked like this movie:
However, I can join but my friends can not. When they log on to the server and select the character, the window appears:
http://i.imgur.com/v95FKnZ.png
Config.lua
Config.lua in www
I just add that the tiba 10.93 server works fine.
GitHub - malucooo/Otxserver-New: OTXServer Full Global Daily Updated
Everything was fine, server ready, tiba reworked like this movie:
http://i.imgur.com/v95FKnZ.png
Config.lua
LUA:
-- Combat settings
-- NOTE: valid values for worldType are: "pvp", "no-pvp" and "pvp-enforced"
worldType = "pvp"
hotkeyAimbotEnabled = true
protectionLevel = 7
pzLocked = 60 * 1000
removeChargesFromRunes = true
removeChargesFromPotions = true
removeWeaponAmmunition = true
removeWeaponCharges = true
timeToDecreaseFrags = 24 * 60 * 60 * 1000
whiteSkullTime = 15 * 60 * 1000
stairJumpExhaustion = 2 * 1000
experienceByKillingPlayers = false
expFromPlayersLevelRange = 75
dayKillsToRedSkull = 3
weekKillsToRedSkull = 5
monthKillsToRedSkull = 10
redSkullDuration = 30
blackSkullDuration = 45
orangeSkullDuration = 7
-- Connection Config
-- NOTE: maxPlayers set to 0 means no limit
worldId = 0
ip = "25.57.21.47"
bindOnlyGlobalAddress = false
loginPort = 7171
gamePort = 7171
maxPlayers = 0
motd = "Welcome to The OTXServer Global!"
onePlayerOnlinePerAccount = true
allowClones = false
serverName = "OTXServer-Global"
statusTimeout = 5 * 1000
replaceKickOnLogin = true
maxPacketsPerSecond = 25
-- Version Manual
clientVersionMin = 1100
clientVersionMax = 1148
clientVersionStr = "Only clients with protocol version 11.48 are allowed!"
-- Depot Limit
depotBoxes = 17
-- GameStore
gamestoreByModules = true
-- Casting System
enableLiveCasting = true
liveCastPort = 7173
-- Expert Pvp Config
expertPvp = false
-- Deaths
-- NOTE: Leave deathLosePercent as -1 if you want to use the default
-- death penalty formula. For the old formula, set it to 10. For
-- no skill/experience loss, set it to 0.
deathLosePercent = -1
-- Houses
-- NOTE: set housePriceEachSQM to -1 to disable the ingame buy house functionality
housePriceEachSQM = 1000
houseRentPeriod = "weekly"
-- Item Usage
timeBetweenActions = 200
timeBetweenExActions = 1000
-- Map
-- NOTE: set mapName WITHOUT .otbm at the end
mapName = "realmap"
mapAuthor = "Cipsoft"
-- Market
marketOfferDuration = 30 * 24 * 60 * 60
premiumToCreateMarketOffer = true
checkExpiredMarketOffersEachMinutes = 60
maxMarketOffersAtATimePerPlayer = 100
-- MySQL
mysqlHost = "127.0.0.1"
mysqlUser = "user1"
mysqlPass = "123456"
mysqlDatabase = "tibia"
mysqlPort = 3306
mysqlSock = ""
passwordType = "sha1"
-- Misc.
allowChangeOutfit = true
freePremium = true
kickIdlePlayerAfterMinutes = 15
maxMessageBuffer = 4
emoteSpells = false
classicEquipmentSlots = false
allowWalkthrough = true
coinPacketSize = 25
coinImagesURL = "http://localhost/store/"
classicAttackSpeed = false
-- Rates
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
rateExp = 1
rateSkill = 1
rateLoot = 1
rateMagic = 1
rateSpawn = 1
-- Monster rates
rateMonsterHealth = 1.0
rateMonsterAttack = 1.0
rateMonsterDefense = 1.0
-- Monsters
deSpawnRange = 2
deSpawnRadius = 50
-- Stamina
staminaSystem = true
-- Scripts
warnUnsafeScripts = true
convertUnsafeScripts = true
-- Startup
-- NOTE: defaultPriority only works on Windows and sets process
-- priority, valid values are: "normal", "above-normal", "high"
defaultPriority = "high"
startupDatabaseOptimization = true
-- Status server information
ownerName = "Malucooo"
ownerEmail = "[email protected]"
url = "http://www.facebook.com/erick.nunes.75"
location = "Brazil"
Config.lua in www
LUA:
<?php
if (!defined('ZNOTE_OS')) {
$isWindows = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN');
define('ZNOTE_OS', ($isWindows) ? 'WINDOWS' : 'LINUX');
}
// If you want to use items.php (not 100% yet, I guess)
// Tested with TFS items.xml master (1.3)
$config['items'] = false;
// Available options: TFS_02, TFS_03
// TFS 0.2 = TFS_02
// TFS 0.3 = TFS_03 (If ur using 0.3.6, set $config['salt'] to false)!
// TFS 0.4 = TFS_03
// TFS 1.0 = TFS_10 (Under developement)
$config['TFSVersion'] = 'TFS_10';
// As far as I know, OTX is based on TFS_03, so make sure TFS version is configured TFS_03
$config['CustomVersion'] = false;
$config['site_title'] = 'Znote AAC';
$config['site_title_context'] = 'Because open communities are good communities. :3';
$config['site_url'] = "http://demo.znote.eu";
// Path to server folder without / Example: C:\Users\Alvaro\Documents\GitHub\forgottenserver
$config['server_path'] = 'C:\Users\Miszczu\Desktop\Ots\Otxserver-New-master';
// ------------------------ \\
// MYSQL CONNECTION DETAILS \\
// ------------------------ \\
// phpmyadmin username for OT server: (DONT USE "root" if ur hosting to public.).
$config['sqlUser'] = 'user1';
// phpmyadmin password for OT server:
$config['sqlPassword'] = '123456';
// The database name to connect to. (This is usually same as username).
$config['sqlDatabase'] = 'tibia';
// Hostname is usually localhost or 127.0.0.1.
$config['sqlHost'] = '127.0.0.1;