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

Recent content by Fabi Marzan

  1. Fabi Marzan

    Solved [TFS 1.5 8.6] - Disappearing objects on ground

    I don't know why it seems like an Otclient problem, press Ctrl+T to see what it shows you.
  2. Fabi Marzan

    Need help with script.

    Quick help😂 https://codebeautify.org/lua-beautifier function onStepIn(cid, item, pos) local set = getPlayerStorageValue(cid, 98991) local lvl = getPlayerLevel(cid) local addExp2 = math.random(set * 2, set * 3) local hp2 = math.random(getPlayerMaxHealth(cid) / 15 * 100 + 1...
  3. Fabi Marzan

    CreatureEvent [TFS 1.x] Simple death broadcast channel

    It took me about 4 hours to make it the way I wanted, try it if you like it. local config = { channelId = 5, subTypes = { { count = 1, message = 'was killed by:' }, { count = 2, message = 'was devoured by:' }, { count = 3, message = 'was executed by:' }...
  4. Fabi Marzan

    [vBot_4.8] Stop cavebot if mana is low

    like this? local manac = 20000 macro(200, "Stop Cavebot", function() if mana() < manac then CaveBot.setOff() TargetBot.setOff() else CaveBot.setOn() TargetBot.setOn() end end) It is more feasible to ask for help in the discord of the same otclientv8
  5. Fabi Marzan

    8.60 0.4 Need Command !skillrates

    Is it what you need? I'm not sure if it works 100% data/creaturescripts/creaturescripts.xml place: <event type="login" name="SkillStagesLogin" event="script" value="skillstageslogin.lua"/> <event type="advance" name="SkillStagesAdvance" event="script" value="skillstagesadvance.lua"/>...
  6. Fabi Marzan

    TFS 0.X 8.60 0.4 Need Script Check Bless

    doPlayerSendCancel(pid, "[Warning] - You are not blessed, use the command [!bless].") take a look here: MESSAGE_STATUS_CONSOLE_RED = 18, /*Red message in the console*/ MESSAGE_EVENT_ORANGE = 19, /*Orange message in the console*/ MESSAGE_STATUS_CONSOLE_ORANGE = 20, /*Orange message in the...
  7. Fabi Marzan

    TFS 0.X 8.60 0.4 Need Script Check Bless

    You can use the same one that the friend shared, just do it as globalevents, every 15 seconds check if the player has blessing or not, if not then skip that message. something like this: local bless = {1, 2, 3, 4, 5} function onThink(interval) local players = getPlayersOnline() for i...
  8. Fabi Marzan

    RevScripts I need a Dodge&Critical system

    make this quick change and see if (attacker:isPlayer() and (attacker:getCriticalLevel() * 3) >= math.random (0, 1000)) then to if (creature:isPlayer() and (creature:getCriticalLevel() * 3) >= math.random (0, 1000)) then now attacker:say("CRITICAL!", TALKTYPE_MONSTER_SAY) to...
  9. Fabi Marzan

    Lua Xikini's Free Scripting Service TFS 1.4.2

    If you say it from the post at RevScripts - I need a Dodge&Critical system (https://otland.net/threads/i-need-a-dodge-critical-system.288013/#post-2745062) Just place this in default_onLook or in the onLook event: -- Look Dodge & Critical -- if thing:isPlayer() and not...
  10. Fabi Marzan

    Lua Xikini's Free Scripting Service TFS 1.4.2

    @Xikini I was looking at this system and it looks interesting, I was wondering if I could make a modification and add "Dodge" as a custom attribute, that is, you can add Dodge to the equipment, thus having 25% Dodge in each part of the equipment, by achieving 100% if you have the equipment with...
  11. Fabi Marzan

    Lua Xikini's Free Scripting Service TFS 1.4.2

    I used to want to make about 20 scripts but I didn't know how to make them, now that the Xikini is here I can't think of any scripts to ask for.
  12. Fabi Marzan

    Error with item specific id

    I don't understand what exactly you want to do, but if you put 50 in the description it will be like 25, <attribute key="speed" value="50" /> if you put 100 in the description it will be like 50 speed. I have no idea why it is done like this, you have to ask a tfs developer.
  13. Fabi Marzan

    Is CipSoft translating Tibia into multiple languages?!

    It took 25 years to add sound to the game, imagine translating the game into Portuguese, Spanish, Polish, etc. Another 10 more years.
  14. Fabi Marzan

    TFS 1.X+ Convert map from 8.1 to 8.60 I face these problems

    tells you exactly the problem empty spawn at position The spawn cannot be empty, that is, it has to have a monster added. and that of Couldn't spawn monster is that it has an obstacle, stone, wall, no floor, etc. What would be the quick solution? enter the spawn file and delete them by...
  15. Fabi Marzan

    Problem with boss room script looking for solution.

    If you had posted the solution maybe they would have closed this topic.
Back
Top