• 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

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

    Try revscript data/scripts/weapons and create any lua file local weapon = Weapon(WEAPON_WAND) local manaBase = 50 local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_?) -- https://github.com/otland/forgottenserver/blob/master/src/enums.h#L180-L197...
  2. Ramon Bernardo

    C++ Guild Wars -- check

    TFS version?
  3. Ramon Bernardo

    RevScripts (a nil value)

    Try function onCreateMagicWall(creature, tile) local guild = creature:getGuild() if guild then local guildName = guild:getName() if guildIsInWar(guildName) then print("guild " + guildName + " in war...") else print("not war") end...
  4. Ramon Bernardo

    RevScripts (a nil value)

    local playerGuild = creature:getGuild() If player doesn't have a guild, it returns null See function wall(player, tile) local guild = player:getGuild() if not guild then return end local guildName = guild:getName() if guildIsInWar(guildName) then print(ok)...
  5. Ramon Bernardo

    TFS 1.X+ Player Event OnStepTile

    Submit your event_callbacks.lua from data/scripts/lib. fromTile and toTile is just a name.
  6. Ramon Bernardo

    TFS 1.X+ TFS 1.3 8.6 nekiro reupload

    Nekiro downgrade 1.3 is not available from a trusted source. Use version 1.5, it is higher than 1.3 (bug fixes, features and updated)
  7. Ramon Bernardo

    TFS 1.X+ Player Event OnStepTile

    Need register on event_callbacks See my impl
  8. Ramon Bernardo

    playerRequestTrade { evolution } bug

    TFS version? Please, use code formatter
  9. Ramon Bernardo

    TFS 1.X+ Show mana healing numbers in purple

    See this thread
  10. Ramon Bernardo

    TFS 1.X+ No privileges for GOD actions

    See this enum AccountType_t : uint8_t { ACCOUNT_TYPE_NORMAL = 1, ACCOUNT_TYPE_TUTOR = 2, ACCOUNT_TYPE_SENIORTUTOR = 3, ACCOUNT_TYPE_GAMEMASTER = 4, ACCOUNT_TYPE_COMMUNITYMANAGER = 5, ACCOUNT_TYPE_GOD = 6 };
  11. Ramon Bernardo

    C++ [TFS 1.4] onLook: attempt to index local 'thing' (a nil value)

    Fixed with Fix misleading indentation and add brackets by ranisalt · Pull Request #3992 · otland/forgottenserver (https://github.com/otland/forgottenserver/pull/3992)
  12. Ramon Bernardo

    This happend to anyone else?

    This makes me agonized, but it's halloween! Damn flies.
  13. Ramon Bernardo

    TFS 0.X Use all stackable itens in action

    function onUse(cid, item, fromPosition, itemEx, toPosition) local pointsCount = getPlayerItemCount(cid, item.itemid) doPlayerRemoveItem(cid, item.itemid, pointsCount) doAccountAddPoints(cid, pointsCount) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You received...
  14. Ramon Bernardo

    TFS 0.X Use all stackable itens in action

    item.subtype Does not return the amount? I get lost at 0.4
  15. Ramon Bernardo

    TFS 0.X Use all stackable itens in action

    Try doPlayerTakeItem
  16. Ramon Bernardo

    i am looking for rl datapack 10.98 tfs 1.3 / 1.4 most up to date

    Maybe someone in the future will look for the same thing as you, post here where you found it ;)
  17. Ramon Bernardo

    C++ Quiver system source modification attempt

    otservbr-global / canary has a good quiver system, you can search for "WEAPON_QUIVER" in and get the system, similar to the global
  18. Ramon Bernardo

    Compiling Compile Request

    Version? If it's below 1.0, you may not get help. Compiling forgottenserver
  19. Ramon Bernardo

    RevScripts [TFS1.X+] Achievements talkactions script?

    See all functions for achievements
Back
Top