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

Search results

  1. A

    Lua TFS 1.5 lua error

    Thank you I will try this, you think the engine is the issue here? Have been looking at other possibilites such us 0.4 or just the 1.5 Nekiros without any further work as this one seems to use lua 5.4 and others older versions? Just wanted a stable trunk without major issues :p 1749897296...
  2. A

    Lua TFS 1.5 lua error

    Lua Script Error: [Scripts Interface] C:\Users\Desktop\TFS 1.5\data\scripts\actions\others\daily_chest.lua:callback ... Updated\data\scripts\actions\others\daily_chest.lua:22: attempt to compare number with nil stack traceback: [C]: in metamethod 'lt' ...
  3. A

    Lua TFS 1.5 lua error

    Thank you for providing me with this code, however this is showing now :p \data\scripts\actions\daily_chest.lua:callback \data\scripts\actions\daily_chest.lua:22: attempt to perform arithmetic on a nil value (local 'storedTime') stack traceback: [C]: in metamethod 'sub'...
  4. A

    Lua TFS 1.5 lua error

    Thank you for the replies, still learning so just to be clear this, doesn't this entire part check for storage? if player:getStorageValue(exhaust) - os.time() > 0 then local timeRemaining = secondsToReadable(player:getStorageValue(exhaust) - os.time()) I tried adding the line you...
  5. A

    Lua TFS 1.5 lua error

    Was trying to add this daily chest script in temple for people to take but a bit lost in the 1.5 TFS Thanks for the help in making me understand what is wrong! data\scripts\actions\daily_chest.lua:21: attempt to perform arithmetic on a nil value stack traceback: [C]: in metamethod 'sub'...
  6. A

    Compiling forgottenserver-downgrade

    Hi, Today I have tried to compile this source file which is the - GitHub - MillhioreBT/forgottenserver-downgrade: TFS Downgrade 1.5+ is an engine based on nekiro downgrade but highly updated with current tfs code, it also has the lua modules divided and uses lua5.4...
  7. A

    Compiling Library issues?

    First time trying to compile a server, which is the 1.5 TFS by Neikro donwgrade - Used this video link and followed all the steps and yet I've ran into some issues - Here is the picture when trying to compile after finishing all the steps from the video above and followed the steps in the...
  8. A

    Lua TFS 0.4 magic effect doesn't work?

    Thank you for the reply, however the effect still does not show up - even changed it to CONST_ME_FIREAREA as in 000-constant.lua file No errors in console or anything else, teleport works fine and the message "you are now a citizen of thais" shows up also. Thank you again! 1749555202 I've...
  9. A

    Lua TFS 0.4 magic effect doesn't work?

    function onStepIn(cid, item, pos) if isPlayer(cid) == TRUE then if (item.actionid == 4040) then doPlayerSendTextMessage(cid,19,"You are now a citizen of Thais.") doSendMagicEffect(pos, CONST_ME_HITBYFIRE) doPlayerSetTown(cid,7) end end end Everything seems to work aside from the magic effect...
Back
Top