• 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. Ramon Bernardo

    VPS/dedic benchmarks

    I like the benchmarks! Thanks @Gesior.pl.
  2. Ramon Bernardo

    Lua Loop not running and cant target the monster

    function startup(level) local setArea = nil local lizardDungeon = { [1] = {tpPos = {x = 1937, y = 859, z = 12}, specPos = {x = 1904, y = 879, z = 12}, specAreaY = 60, specAreaX = 40}, [2] = {tpPos = {x = 2062, y = 859, z = 12}, specPos = {x = 2029, y = 879, z = 12}...
  3. Ramon Bernardo

    Check if target item is weapon or armor

    Tips: WeaponTypes SlotTypes
  4. Ramon Bernardo

    Lua get storage MySQL query

    Try SELECT `player_id` FROM `player_storage` WHERE `key`= '7777' ORDER BY `value` DESC LIMIT 1; I also recommend getting storage from players who are online and compare with the db.
  5. Ramon Bernardo

    Remove Storage TFS 1.5 downgrade 8.6

    You cannot change the value in the database unless the player is offline. Because the server that has the real data. When the player logs out, the db is overwritten by server. So it is necessary to use player:setStorageValue()
  6. Ramon Bernardo

    Remove Storage TFS 1.5 downgrade 8.6

    Try player:setStorageValue(storageId, value)
  7. Ramon Bernardo

    Remove summon when entering Protection Zone.

    TFS version?
  8. Ramon Bernardo

    Proof of concept of a new game engine

    Hi, share the source code?
  9. Ramon Bernardo

    Lua tfs 1.2 help Script actions

    Try player:say("Felicity " .. name .. " [" ..level.. "], Cast Your New Spell.", TALKTYPE_ORANGE_1)
  10. Ramon Bernardo

    TFS 1.X+ advancing level tfs 1.5 7.72 nekiro

    Remove this and this player.cpp, search if (prevLevel != level) remove health = getMaxHealth(); mana = getMaxMana(); and search if (oldLevel != level) remove health = getMaxHealth(); mana = getMaxMana();
  11. Ramon Bernardo

    TFS 1.2 how to edit this spell so every creature could cast this spell

    Remove if not creature:isMonster() then
  12. Ramon Bernardo

    Lua Revscript command !frags

    Post your config (same here)
  13. Ramon Bernardo

    [TFS 1.3] Small Autoloot

    @lmlucas2, your tfs version: required:
  14. Ramon Bernardo

    [8.6] [TFS1.3] Alkurius Global & Coustom

    ALERT: sql server brutal usage This server execute an query in database every time the player gain experience. CPU 100%: already knows what the problem could be
  15. Ramon Bernardo

    !frags time doesn't change TFS 1.3

    Paste here where you got the tfs source
  16. Ramon Bernardo

    TFS 1.X+ TFS 1.5 Nekiro, talkactions

    See TFS 1.X+ - No privileges for GOD actions (https://otland.net/threads/no-privileges-for-god-actions.280147/)
  17. Ramon Bernardo

    C++ House price based on walkable SQM

    Another house problem issue#3455
  18. Ramon Bernardo

    TFS 1.X+ console, estrange problem tfs 1.5 12.80/86

    Paste your monster code here.
  19. Ramon Bernardo

    TFS 1.X+ Inconsistent conditions, doesn't apply properly

    What your code? See this code, mb help you.
  20. Ramon Bernardo

    Lua Attempting to better understand custom wands/rods (API docs?)

    For different wands: weapon:id(wand1_id, wand2_id, wand3_id, wand4_id, ...) Folder for weapons: sorcerer, druid, paladin, knight and other
Back
Top