• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Gesior ACC Maker for avesta 7.4

MisaeltheKid

Member
Joined
Aug 12, 2014
Messages
66
Reaction score
13
I'm using gesior 0.3.7 ACC Maker for my 7.4 server, but show that error: "Check server configuration
File config.lua loaded from D:/Documents and Settings/admin/Desktop/Avesta/config.lua and it's not valid TFS config.lua file. Go to STEP 1 - select other directory.If it's your config.lua file from TFS contact with acc. maker author."

This is my config.lua:
Code:
DataDir = "data/"

NotationsToBan = 3
WarningsToFinalBan = 4
WarningsToDeletion = 5
BanLength = 1 * 24 * 60 * 60
FinalBanLength = 7 * 24 * 60 * 60
IPBanishmentLength = 24 * 60 * 60
KillsToBan = 7

WorldType = "pvp"

Exhausted = 1000

FightExhausted = 1000

HealExhausted = 1000

ExhaustedAdd = 100

PZLock = 60000

FieldOwnershipDuration = 5000

TimeToDecreaseFrags = 24 * 60 * 60 * 1000

WhiteSkullTime = 3

KillsToRedSkull = 5

RemoveAmmunition = false

RemoveRuneCharges = false

RemoveWeaponCharges = false

UHTrap = true

IP = "-------"

Port = "7171"

LoginTries = 5

RetryTimeout = 5000

LoginTimeout = 60 * 1000

AllowClones = false

CheckAccounts = false
SQL_Type = "mysql"
SQL_DB = "otserv"
SQL_Host = "localhost"
SQL_Port = 3306
SQL_User = "root"
SQL_Pass = "-----"

LoginMsg = "Welcome to OTServ. For help visit our site."
ServerName = "Otserver"
WorldName = "OpenTibia"
OwnerName = "Ferrus"
OwnerEmail = ""
URL = ""
Location = "Poland"

MinActionInterval = 200
MinActionExInterval = 1000

HouseRentPeriod = "monthly"
HousePrice = 100
HouseLevel = 1
PremOnlyHouse = true
PremOnlyBeds = false

Map = "data/world/fibula.otbm"

MapKind = "OTBM"
MapStoreType = "binary"

RateExp = 1
RateSkill = 1
RateMag = 1
RateLoot = 1
RateSpawn = 1

DespawnRange = 2
DespawnRadius = 50

MOTD = "Welcome to OTServ!"
MOTD_Num = "1"
MaxPlayers = "100"

PasswordType = "plain"
MaxMessageBuffer = 4
SaveClientDebug = false
UseAccBalance = false
MaxIdleTime = 15
LevelToRook = 5
RookTempleId = 1
StorePlayerDeathsInDB = true
FACCTempleID = 0
 
Last edited by a moderator:
Id, name, flags, acess, maxdepotitems and maxviplist.

I ask for lines, not columns. This is how it should look like.

ILjyZFKH.png
 
Works love you thanks all i did was insert


INSERT INTO `groups` (`id`, `name`, `flags`, `access`, `maxdepotitems`, `maxviplist`)
VALUES
(0, 'Player', 0, 0, 4000, 200),
(1, 'Tutor', 16777216, 1, 2000, 200),
(2, 'Senior Tutor', 137455763456, 2, 2000, 200),
(3, 'Trial Gamemaster', 214207947535, 3, 0, 200),
(4, 'Gamemaster', 489622725391, 4, 0, 200),
(5, 'Community Manager', 489622725391, 5, 0, 200),
(6, 'Administrator', 529957625850, 6, 2000, 200),
(7, 'Administrator', 547104989176, 6, 2000, 200);

worked perfect! love you!
 
It says you cannot add an key that not exist. group_id at players need to be in groups table. Execute:

Code:
INSERT INTO `groups` (`id`, `name`, `flags`, `access`, `maxdepotitems`, `maxviplist`)
VALUES
(0, 'Player', 0, 0, 4000, 200),
(1, 'Tutor', 16777216, 1, 2000, 200),
(2, 'Senior Tutor', 137455763456, 2, 2000, 200),
(3, 'Trial Gamemaster', 214207947535, 3, 0, 200),
(4, 'Gamemaster', 489622725391, 4, 0, 200),
(5, 'Community Manager', 489622725391, 5, 0, 200),
(6, 'Administrator', 529957625850, 6, 2000, 200),
(7, 'Administrator', 547104989176, 6, 2000, 200);

Sorry for bumping an ancient thread, but I am trying to get a Avesta 7.4 server running. For some reason I can't figure out how to make players premium. I can either make them facc or a gamemaster/tutor lol. What is the flag for premium that I need to add in groups? Also, how can I make the server save the houses. It's fucking me up so bad. Did anyone ever get a MySQL database working for Avesta 7.4?
 
Back
Top