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

Windows Problem TFS 1.0

curruwilliam

Hello =]
Joined
Apr 22, 2014
Messages
124
Reaction score
3
Hello,

10,37 am with a server, passes a few more minutes and distro for responding tfs 1.0 alone

Use Windows 7 64x

Problem is it just me?
I'm using all files: https://github.com/PrinterLUA/FORGOTTENSERVER-ORTS

Everything right ..

=[

Distro:
gTvH1Bm.png


minutes after:
JwhsNDx.png


:@
 
Last edited:
You havrn't added any custom scripts?
If you have check for addEvent functions in creaturscripts and or globalevents with intervals.
 
No..

Current:
creaturescripts.xml
Code:
<?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="kill" 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"/>
   
    <!-- The new Frontier Quest -->
    <event type="kill" name="theNewFrontierQuestShardOfCorruption" script="the new frontier quest/theNewFrontierQuestShardOfCorruption.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"/>
   
    <!-- Storage Conversion -->
    <event type="login" name="StorageConversion" script="others/StorageConversion.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="login" name="FirstItems" script="others/firstitems.lua"/>
    <event type="extendedopcode" name="ExtendedOpcode" script="others/extendedopcode.lua"/>
    <event type="advance" name="Recompensa" script="recompensa.lua"/>

</creaturescripts>

globalevents.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<globalevents>
    <!-- Blooming Griffinclaw -->
    <globalevent name="bloomingGriffinclaw" type="start" script="blooming griffinclaw/bloomingGriffinclaw.lua"/>
   
    <!-- Wrath Of The Emperor Quest -->
    <globalevent name="wrathOfTheEmeperorQuestDoors" interval="5000" script="wrath of the emperor quest/wrathOfTheEmeperorQuestDoors.lua"/>

    <!-- Rent Horses -->
    <globalevent name="RentThink" interval="15000" script="others/checkmount.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="ServerStartup" script="startup.lua"/>
   
    <globalevent type="record" name="PlayerRecord" script="record.lua"/>
    <globalevent name="Server Save" time="09:55:00" script="serversave.lua"/>

    <!-- Spawn -->
    <globalevent name="RaidSystem" interval="10000" script="spawn/raids.lua"/>
    <globalevent name="RandomSummon" interval="3600000" script="spawn/randomSummon.lua"/>
    <globalevent type="startup" name="RashidServerStartup" script="spawn/RashidStartUp.lua"/>
   
    <!-- Site -->
<!--   
    <globalevent name="website_shop_item_delivery" interval="30000" script="shop.lua"/>
-->
</globalevents>
 
Well you have added ALOT of custom scripts if you compare it to the "normal" files:
https://github.com/otland/forgottenserver/blob/master/data/creaturescripts/creaturescripts.xml
and
https://github.com/otland/forgottenserver/blob/master/data/globalevents/globalevents.xml

Im guessing you are using printers datapack? I had the same problem a long time ago, try replacing your tfs and dll files, if not try to disable some of the scripts and see if it works then, untill you find the scripts that's not working or you have tried them all.
 
Back
Top