• 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!

Problem with TFS..

This is creaturescripts :
<?xml version="1.0" encoding="UTF-8"?>
<creaturescripts>
<!-- Elemental Spheres Quest -->
<event type="kill" name="elementalspheresquestOverlords" script="elemental spheres quest/ElementalSpheresQuestKillOverlords.lua"/>

<!-- Bigfoot Burden Quest -->
<event type="kill" name="bigfootBurdenQuestVesperoth" script="bigfoot burden quest/bigfootBurdenQuestVesperoth.lua"/>
<event type="death" name="bigfootBurdenQuestWarzone" script="bigfoot burden quest/bigfootBurdenQuestWarzone.lua"/>
<event type="kill" name="bigfootBurdenQuestWeeper" script="bigfoot burden quest/bigfootBurdenQuestWeeper.lua"/>
<event type="kill" name="bigfootBurdenQuestWiggler" script="bigfoot burden quest/bigfootBurdenQuestWiggler.lua"/>

<!-- Svargrond Arena Quest -->
<event type="kill" name="SvargrondArenaKill" script="svargrond arena quest/arena_kill.lua"/>

<!-- Boss Summoning -->
<!--<event type="kill" name="bossSummoning" script="boss summoning/bossSummoning.lua"/>-->

<!-- In Service Of Yalahar Quest -->
<event type="kill" name="inServiceOfYalaharQuestsDiseased" script="in service of yalahar quest/inServiceOfYalaharQuestsDiseased.lua"/>
<event type="kill" name="inServiceOfYalaharQuestsMorik" script="in service of yalahar quest/inServiceOfYalaharQuestsMorik.lua"/>
<event type="kill" name="inServiceOfYalaharQuestsQuara" script="in service of yalahar quest/inServiceOfYalaharQuestsQuara.lua"/>

<!-- Inquisition Quest -->
<event type="kill" name="inquisitionQuestBosses" script="inquisition quest/inquisitionQuestBosses.lua"/>
<event type="kill" name="inquisitionQuestUngreez" script="inquisition quest/inquisitionQuestUngreez.lua"/>

<!-- Killing In The Name Of Quest -->
<event type="kill" name="killingInTheNameOfQuestKills" script="killing in the name of quest/killingInTheNameOfQuestKills.lua"/>

<!-- The Masters Voice Quest -->
<event type="kill" name="masterVoiceQuest" script="their master's voice quest/masterVoiceQuest.lua"/>

<!-- Others -->
<event type="login" name="PlayerLogin" script="others/login.lua"/>
<event type="death" name="PlayerDeath" script="others/playerdeath.lua"/>
<event type="advance" name="AdvanceSave" script="others/advance_save.lua"/>

<event type="extendedopcode" name="ExtendedOpcode" script="others/extendedopcode.lua"/>

</creaturescripts>
 
This is globalvents :

<?xml version="1.0" encoding="UTF-8"?>
<globalevents>
<!-- Blooming Griffinclaw -->
<globalevent name="bloomingGriffinclaw" type="start" script="blooming griffinclaw/bloomingGriffinclaw.lua"/>

<!-- Demon Oak Quest -->
<globalevent name="OakThink" interval="15000" script="demon oak quest/oakthink.lua"/>

<!-- Rent Horses -->
<globalevent name="RentThink" interval="15000" script="others/checkmount.lua"/>

<!-- Random Spawns -->
<globalevent name="random" interval="3600000" script="random spawns/random.lua"/>

<!-- World Changes -->
<globalevent name="furygates" type="startup" script="worldchanges/gates.lua"/>
<globalevent name="resetfurygates" type="shutdown" script="worldchanges/resetgates.lua"/>

<!-- Others -->
<globalevent type="startup" name="RashidServerStartup" script="others/RashidStartUp.lua"/>

<globalevent type="startup" name="ServerStartup" script="startup.lua"/>

<globalevent type="record" name="PlayerRecord" script="record.lua"/>
<globalevent name="Server Save" time="09:55:00" script="serversave.lua"/>
</globalevents>
 
And this is config :

-- Combat settings
worldType = "pvp"
hotkeyAimbotEnabled = "yes"
protectionLevel = 50
killsToRedSkull = 3
killsToBlackSkull = 6
pzLocked = 60000
removeAmmoWhenUsingDistanceWeapon = "yes"
removeChargesFromRunes = "yes"
timeToDecreaseFrags = 3 * 60 * 60 * 1000
whiteSkullTime = 10 * 60 * 1000
stairJumpExhaustion = 1000
experienceByKillingPlayers = "no"

-- Connection Config
ip = "darknezots.zapto.org"
bindOnlyGlobalAddress = "no"
loginProtocolPort = 7171
gameProtocolPort = 7172
statusProtocolPort = 7171
maxPlayers = "1000"
motd = "Welcome to The DarkneZ OTS!"
onePlayerOnlinePerAccount = "no"
allowClones = "no"
serverName = "DarkneZ OTS"
statusTimeout = 1 * 60 * 1000
replaceKickOnLogin = "yes"
maxPacketsPerSecond = 25

-- Deaths
deathLosePercent = -1

-- Houses
housePriceEachSQM = 2000
houseRentPeriod = "never"

-- Item Usage
timeBetweenActions = 200
timeBetweenExActions = 1000

-- Map
mapName = "realmap"
mapAuthor = "Darkshaooz"

-- Market
marketOfferDuration = 30 * 24 * 60 * 60
premiumToCreateMarketOffer = "yes"
checkExpiredMarketOffersEachMinutes = 60
maxMarketOffersAtATimePerPlayer = 100

-- MySQL
mysqlHost = "localhost"
mysqlUser = "wiktor"
mysqlPass = "lol123"
mysqlDatabase = "rl"
mysqlPort = 3306
mysqlSock = ""

-- Misc.
allowChangeOutfit = "yes"
freePremium = "no"
kickIdlePlayerAfterMinutes = 15
maxMessageBuffer = 4
noDamageToSameLookfeet = "no"
emoteSpells = "no"

-- Rates
rateExp = 100
rateSkill = 25
rateLoot = 2
rateMagic = 15
rateSpawn = 2

-- Monsters
deSpawnRange = 2
deSpawnRadius = 50

-- Stamina
staminaSystem = "yes"

-- Startup
defaultPriority = "high"
startupDatabaseOptimization = "no"

-- Status server information
ownerName = "DarkneZ OTS"
ownerEmail = "[email protected]"
url = "darknezots.zapto.org"
location = "Poland"
 
Remove this:
Code:
<globalevent name="Server Save" time="09:55:00" script="serversave.lua"/>

And check.
 
Back
Top