• 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. Marco Oliveira

    TFS 1.X+ Effects when leveling up!

    local levelUpEffect = CreatureEvent("levelUpEffect") function levelUpEffect.onAdvance(player, skill, oldLevel, newLevel) if skill ~= SKILL_LEVEL or newLevel <= oldLevel then return true end player:getPosition():sendMagicEffect(math.random(CONST_ME_FIREWORK_YELLOW...
  2. Marco Oliveira

    [TFS 1.3] [Globalevent] Random boss in room

    I made this script for a boss room that I created with the help of a friend, we ended up not using it on the server. I hope it's useful to someone. local bossConfigurations = { [1] = {bossName = "Foreman Kneebiter"}, [2] = { bossName = "The Frog Prince", summons = {...
  3. Marco Oliveira

    [12.x] - ORTS | Real Map Data Pack for latest TFS

    As I said earlier, I’m very happy that someone brought the project back. I hope to be able to bring many contributions.
  4. Marco Oliveira

    Client crashes 10.98. Latest TFS.

    I was just talking to the epunker about this problem, I had a debug with one of my logged characters when using a spell on another, but I couldn't reproduce it again.
  5. Marco Oliveira

    Merge ORTS with latest TFS

    https://github.com/EPuncker/orts2
  6. Marco Oliveira

    New TFS logo / icon

    Good to know that my pr sparked interest in some and jokes in others, I laughed a lot reading the comments.
  7. Marco Oliveira

    Look types

    You can find a list here with all the colors and looktypes of monsters: optimized_forgottenserver/staticdata.txt at master · SaiyansKing/optimized_forgottenserver (github.com)
  8. Marco Oliveira

    TFS 1.X+ Client 10 and client 12.40 problems.. [ProtocolGame :: onRecvFirstMessage] RSA Decrypt Failed

    In version 12.40.10030 we have 13 extra bytes. You can check in: otservbr-global/protocolgame.cpp at develop · opentibiabr/otservbr-global (github.com)
  9. Marco Oliveira

    Boss mechanic: Help to reshape event

    Hello, I am reviewing my server scripts and I came across the following event: local geyser = { [1] = Position(33132, 31917, 15), [2] = Position(33135, 31919, 15), [3] = Position(33135, 31923, 15), [4] = Position(33128, 31922, 15), [5] = Position(33128, 31918, 15), [6] =...
  10. Marco Oliveira

    [Brainstorm] Boss folder organization

    Hello, on the rlmap server that I belong to, we chose to separate by categories and races, as I will show in the images below.
  11. Marco Oliveira

    [12.x] OTServBR-Global

    Regrettable how some of us Brazilians act, and now I understand why the community is so hated by us. Take third-party content and leak it as if it were something donated, not even the creators' credits were given. I agree with the comment above that we don't need people like that in the community!
  12. Marco Oliveira

    Add item to monster drop

    Hello, how are you? What I need is a function that adds an item to a monster's drop if it is registered at birth. I did a search for the forum and I didn't find anything about it, so if something like that already exists, I'm sorry for the duplicate request. The operation would be something...
  13. Marco Oliveira

    Gesior acc problem with accounts

    Hello, this is a problem with your mysql configuration. One way of correction is to use the command: SET GLOBAL sql_mode = ''; It is not the best way but it is functional.
  14. Marco Oliveira

    [Brazil][9.86] Fenris

    It seems very good, but a constructive tip I can give you is to invest in a hosting and a domain.
  15. Marco Oliveira

    [TFS 1.3] Gain storage by killing monsters

    I wrote the script correctly, but didn't need to register or login >.<
  16. Marco Oliveira

    [TFS 1.3] Gain storage by killing monsters

    I made the following script in order to get the storages when killing certain monster, but nothing happens when they are killed and the console does not return any errors. local bossesNames = { ['black vixen'] = Storage.CurseSpreads.killBlackVixen, ['shadowpelt'] =...
  17. Marco Oliveira

    [TFS 1.3] Autoloot Problem

    Replace: if not Tile(toPosition):getTopVisibleThing() then return true end Per: if Tile(toPosition) == nil then return true end
  18. Marco Oliveira

    [TFS 1.3] Daily Reward

    Hello, I'm having a little problem with my daily reward on client 12, well, it only delivers the first day reward, after that it just doesn't unlock the next day. I for testing purposes removed the part that does the checking and it delivers all normally but so is a problem with the check lines...
  19. Marco Oliveira

    [TFS 1.3] Autoloot Problem

    Hello, sorry for the mistake. I'll be more aware next time!
  20. Marco Oliveira

    [TFS 1.3] Autoloot Problem

    Hello, I hope you are well! I am having some problems with my autoloot system and would like some help if possible, I would be very grateful. One of the problems returns error in the console when there is some kind of field or monster on top of the body when char tries to open, follows the...
Back
Top