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

Adapting RL Map 10.98 (TFS 1.3.0) to TFS 1.4.0 – Does it make sense?

mysticbunny

Member
Joined
Jul 30, 2025
Messages
17
Reaction score
13
Hello everyone, how are you?

I’m currently trying to adapt this map/data (RL 10.98 for TFS 1.3.0)

To run on RL 10.98 TFS 1.4.0 (I’m using Gesior’s build)

My question is: does this actually make sense?
The errors that appear in the server log seem quite manageable to fix, but since I’m a bit inexperienced, maybe I’m missing a “seven-headed monster” hidden in there hahaha

What I already fixed​

The first sequence of errors was related to duplicate actions for spellbooks:
LUA:
[Warning - Actions::registerLuaEvent] Duplicate registered item with id: 2175 in range from id: 2175, to id: 23771
[Warning - Actions::registerLuaEvent] Duplicate registered item with id: 8900 in range from id: 2175, to id: 23771
...
To fix it, I kept the file data\scripts\actions\spellbook.lua intact and only commented the duplicates inside data\actions\actions.xml, like this:
Code:
<!-- Spellbooks -->
<!-- <action itemid="2175" script="other/spellbook.lua" /> -->
<!-- <action fromid="8900" toid="8904" script="other/spellbook.lua" /> -->
<!-- <action itemid="8918" script="other/spellbook.lua" /> -->
<action itemid="12647" script="other/spellbook.lua" />
<action itemid="16112" script="other/spellbook.lua" />
<action itemid="18401" script="other/spellbook.lua" />
<action fromid="22422" toid="22424" script="other/spellbook.lua" />

Current errors​

Now I’m fixing the loot errors in monsters:
Code:
[Warning - Monsters::loadMonster] Unknown loot item "fish remains".
[Warning - Monsters::loadMonster] Cant load loot. data/monster/Dreamhaunters/frazzlemaw.xml
[Warning - Monsters::loadMonster] Non-unique loot item "burst arrow".
[Warning - Monsters::loadMonster] Cant load loot. data/monster/Outlaws/hunter.xml
So far it’s been fairly easy to adjust (fixing IDs, item names, etc.). Other errors like targetdistance, mana and similar also look simple to handle.

My question​

I’d really like to hear your opinion:
  • Does it make sense to keep working on this adaptation, or am I missing some bigger problem ahead?
  • Is there any more stable/competent version of RL Map 10.98 for TFS 1.4.0 that you would recommend?
I’m also attaching a .txt file with the full server prompt log, in case someone with more experience can spot a serious issue I might have overlooked.

Oh, and just to mention: I was able to open the map in RME without any issues.

Thanks in advance to anyone who can give me some guidance! 🙏
 

Attachments

Back
Top