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

Search results

  1. Znote

    TFS 1.X+ Snowball event tfs 1.3 problem

    if player then print("Log: startGame player is here?") player:setStorageValue(10109, 0) if not SNOWBALL.muniInicial then print("Error: SNOWBALL.muniInicial is not defined.")...
  2. Znote

    TFS 1.X+ Snowball event tfs 1.3 problem

    So CACHE_GAMEAREAPOSITIONS exists, but it fails to grab a random element from the table. Could be the table exist but is empty, or that the element indexes are not iterative (ipairs) compliant which the random seed presumes. Or perhaps we need to do math floor or something to make sure the...
  3. Znote

    TFS 1.X+ Snowball event tfs 1.3 problem

    Replace: if player then print("Log: startGame player is here?") player:setStorageValue(10109, 0) player:setStorageValue(10108, SNOWBALL.muniInicial) player:setStorageValue(STORAGEVALUE_EVENTS, 1)...
  4. Znote

    TFS 1.X+ Snowball event tfs 1.3 problem

    No prints above that Lua script error? Maybe it wasn't that function then :/ Try scattering a bunch of prints around the snowball code files to identify which file and function causes the error. I thought a timer event usually means a function called from addEvent, but perhaps it can be...
  5. Znote

    [TFS 1.3 - RevScripts] Spell Error: LuaScriptInterface::luaCreateCombatArea(). This function can only be used while loading the script.

    Try this: local combatNorth = Combat() combatNorth:setParameter(COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE) combatNorth:setFormula(COMBAT_FORMULA_DAMAGE, -1, -250, -1, -450) combatNorth:setArea(createCombatArea(AREA_NORTH)) local combatEast = Combat() combatEast:setParameter(COMBAT_PARAM_TYPE...
  6. Znote

    TFS 1.X+ Snowball event tfs 1.3 problem

    I think the problem is this function from snowball/lib/events: function enviarSnowball(cid, pos, rounds, dir) local player = Player(cid) if rounds == 0 then return true end if player then local dirConfig = SNOWBALL.direcoes[dir] if dirConfig then...
  7. Znote

    First post!

    Welcome. :)
  8. Znote

    Roblox Dreams - Development Thread

    Creating some sort of game world in Roblox? Interesting. How does this work, never played this game.
  9. Znote

    RevScripts Boss spawn every week at time

    Yes, os.date("STRING_ARGUMENT") takes these values: %a abbreviated weekday name (e.g., Wed) %A full weekday name (e.g., Wednesday) %b abbreviated month name (e.g., Sep) %B full month name (e.g., September) %c date and time (e.g., 09/16/98 23:48:10) %d day of the month (16) [01-31]...
  10. Znote

    PHP Znote ACC - Buying premium not working

    Distro version? SQL schema? Znote AAC version?
  11. Znote

    RevScripts Boss spawn every week at time

    local bossPos = Position(287, 320, 11) local bossName = "Ferumbras" -- Globalevent at 18:00 every day local boss_daily = GlobalEvent("boss_daily") boss_daily:time("18:00:00") function boss_daily.onTime(time) -- Only run on Saturday if (os.date("%A") ~= "Saturday") then return...
  12. Znote

    New: What song are you listening to thread

    Sending some souly vibes your way! :)
  13. Znote

    How to start the "[10.98] Nightly packages of The Forgotten Server (official / master)" from Don Daniello?

    If the console disappear on startup so it becomes hard to grab the last message, run the executable file through PowerShell. That way you should be able to easily see the last error message.
  14. Znote

    Any 7.4 or 8.6 server to recommend?

    Nekiro has made backports of TFS 1.4: https://github.com/nekiro/TFS-1.4-Downgrades I'm using the 8.6 protocol branch on AcidsOT, a server I'm currently hosting. Hosted for 99 days so far without a single crash. Supports the new revscript Lua system.
  15. Znote

    RevScripts I need information about OTBM4 (0.7.0 revscriptsys)

    yeah, or OTBM5. What change do you want to introduce to the file format?
  16. Znote

    RevScripts I need information about OTBM4 (0.7.0 revscriptsys)

    I believe @STiX might have an archive of this, or information about it in his otfans.net archive. And maybe @Zisly knowns or has something. He was pretty active on otfans in this period. Perhaps try to reach some mappers who were active in 2010 era, if they have the source code of 1.1.10~+...
  17. Znote

    RevScripts I need information about OTBM4 (0.7.0 revscriptsys)

    Hmm, it was introduced in RME version 1.1.10. https://otland.net/threads/8-54-rme-1-1-10-download-updated-22th-of-december.61063/ The github project contains RME v3, it might have been omitted from this. We are diving into pre-git subversion period. Latest source code from remeresmapeditor.com...
  18. Znote

    AAC account tab on website causes this? help?

    https://otland.net/threads/znote-cant-create-character.247039/
  19. Znote

    Help! Scroll of Capacity TFS 1.X

    I think you are missing an XML line that registers this script. Could you post that? Which itemid do you use for this scroll of capacity? Edit: Presuming you want itemid 7724 (scroll). Place in data/scripts/capacityscroll.lua ------------ -- Config -- ------------ local config = { amount =...
  20. Znote

    otland lagging?

    Yep, happens to me too. We are looking into it, but currently having some difficulties identifying the root cause of these timeouts. To me these timeouts are frequent and sporadic, I haven't found a reliable way to reproduce them to narrow it down.
Back
Top