• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Try to make me god

thecycles

Member
Joined
Apr 7, 2010
Messages
620
Reaction score
5
When i try to make my god in localhost/phpmyadmin , my player dosnt show up just the account manager,

pls help!
 
Goto your website make an account and a character or log in to your server, make an account and char, then go to phpmyadmin or els, do an account and character in phpmyadmin
 
I already have an account in phpmyadmin.. :O
i dont have a site, i create my account in account manager.. but when i trying to make me god in phpmyadmin my char dosnt show up :S

here is my config.lua:

-- The Forgotten Server Config

-- Account Manager
accountManager = "yes"
newPlayerChooseVoc = "no"
newPlayerSpawnPosX = 95
newPlayerSpawnPosY = 117
newPlayerSpawnPosZ = 7
newPlayerTownId = 1
newPlayerLevel = 548
newPlayerMagicLevel = 100
generateAccountNumber = "yes"

-- Banishments
broadcastBanishments = "yes"
banDays = 7
finalBanDays = 30
killsToBan = 5

-- Battle
worldType = "pvp"
hotkeyAimbotEnabled = "yes"
protectionLevel = 1
killsToRedSkull = 3
pzLocked = 60000
deathLosePercent = 10
criticalHitChance = 7
removeAmmoWhenUsingDistanceWeapon = "yes"
removeChargesFromRunes = "yes"
timeToDecreaseFrags = 24 * 60 * 60 * 1000
whiteSkullTime = 15 * 60 * 1000
oldConditionAccuracy = "no"
alternativeExhaust = 1000
stairJumpExhaustion = 2000
animationTextOnHeal = "yes"

-- Commands
displayGamemastersWithOnlineCommand = "no"

-- Connection Config
ip = "oxforders.no-ip.org"
loginProtocolPort = 7171
gameProtocolPort = 7172
adminProtocolPort = 7171
statusProtocolPort = 7171
loginTries = 10
retryTimeout = 5 * 1000
loginTimeout = 60 * 1000
maxPlayers = "1000"
motd = "Welcome to the Forgotten Server!"
onePlayerOnlinePerAccount = "yes"
allowClones = "no"
serverName = "Forgotten"
loginMessage = "Welcome to the Forgotten Server!"
adminLogsEnabled = "no"
statusTimeout = 5 * 60 * 1000
replaceKickOnLogin = "yes"

-- Deathlist
deathListEnabled = "yes"
maxDeathRecords = 5

-- Guilds
ingameGuildSystem = "yes"

-- Highscores
highscoreDisplayPlayers = 15
updateHighscoresAfterMinutes = 60

-- Houses
housePriceEachSQM = 1000
houseRentPeriod = "never"

-- Idle
kickIdlePlayerAfterMinutes = 15

-- Item Usage
timeBetweenActions = 200
timeBetweenExActions = 1000

-- Map
mapName = "Evolutions"
mapAuthor = "Komic"
randomizeTiles = "yes"
mapStorageType = "relational"

-- Messaging
enableRuleViolationReports = "no"
maxMessageBuffer = 4

-- MySQL
mysqlHost = "localhost"
mysqlUser = "XXXX"
mysqlPass = "XXXX"
mysqlDatabase = "tfs"
mysqlPort = 3306

-- Premium Account
freePremium = "yes"

-- PVP Server
displayOnOrOffAtCharlist = "no"
allowChangeOutfit = "yes"
noDamageToSameLookfeet = "no"
experienceByKillingPlayers = "no"

-- Rates
rateExp = 5
rateSkill = 3
rateLoot = 2
rateMagic = 3
rateSpawn = 1

-- Real Server Save
-- note: serverSaveHour means like 03:00, not that it will save every 3 hours,
-- if you want such a system use autoSaveEachMinutes. this serversave method
-- may be unstable, we recommend using otadmin if you want real serversaves.
serverSaveEnabled = "no"
serverSaveHour = 3
shutdownAtServerSave = "yes"
cleanMapAtServerSave = "yes"

-- Server saving
autoSaveEachMinutes = 15
saveGlobalStorage = "no"

-- Spawns
deSpawnRange = 2
deSpawnRadius = 50

-- SqLite
sqliteDatabase = "forgottenserver.s3db"

-- SQL
sqlType = "sqlite"
passwordType = "plain"

-- Startup
defaultPriority = "high"

-- Shutdown
freeMemoryAtShutdown = "yes"

-- Status
ownerName = ""
ownerEmail = "@otland.net"
url = "http://otland.net/"
location = "Europe"
 
Last edited:
When you turn off your server does the accounts and characters save?
you must have in config.lua the right direction of your database
search for this:
PHP:
	sqlType = "sqlite"
	sqlHost = "localhost"
	sqlPort = 3306
	sqlUser = "root"
	sqlPass = ""
	sqlDatabase = "theforgottenserver"
	sqlFile = "forgottenserver.s3db"
	sqlKeepAlive = 0
	mysqlReadTimeout = 10
	mysqlWriteTimeout = 10
	encryptionType = "plain"
description and help:

sqltype = the one you imported to your database, e.j: mysql.sql, so you must put "mysql"
sqlhost = leave it like that
sqlport = you must unport this
sqluser = if you use xampp is root, if you use other host like uni server so must be the one you entered.
sqlpass = the pass of phpmyadmin
sqldatabase = the name of your otserv database
the others leave it like it shown.

ps: I think this is the error, when phpmyadmin doesn't read you characters is because the config.lua is not well configured.


Incase this doesn't work, Probably your in the wrong database when editing your characters.
Regards, Efren.
 
Well "Wrong temple position" is because you probably change the map or you edited the pos on the config.lua

If your using tfs map then the temple position ingame is...
PHP:
	accountManager = true
	namelockManager = true
	newPlayerChooseVoc = false
	newPlayerSpawnPosX = 95
	newPlayerSpawnPosY = 117
	newPlayerSpawnPosZ = 7
	newPlayerTownId = 1
	newPlayerLevel = 1
	newPlayerMagicLevel = 0
	generateAccountNumber = false
x,y and z are the position of your character.

Regards, Efren.
 
Back
Top