• 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. oserc

    CipSoft's turnover for 2022 has been published - the hype is over

    Tibia's being around since 1997, so just the fact that the game is evolving, reaching significant financial milestones and still being relevant to this day is impressive. Just look at the graphic: even before Covid, the turnover was increasing year after year. Of course, with the pandemic and...
  2. oserc

    Solved spells reset

    data/lib/compat/compat.lua
  3. oserc

    Fast attack

    open your config.lua and set "classicAttackSpeed" to true. -- NOTE: classicAttackSpeed set to true makes players constantly attack at regular -- intervals regardless of other actions such as item (potion) use. This setting -- may cause high CPU usage with many players and potentially affect...
  4. oserc

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    No problem, dude, good luck :)
  5. oserc

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    Yeah, scratch my idea, lol, NIght Wolf's seems a lot better. Good luck
  6. oserc

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    Off the top of my head, you can make it work using a moveevent. Probably something like that: onStepIn > creature:say(). If it's a quest you're talking about, and you don't want the npc to repeat the same message every time a player steps into that floor, you can register a storageID also...
  7. oserc

    TFS 1.X+ SetText tfs 1.5

    What code is written in the 17th line of your script? Also, is the parchment at least created, even withtout a text?
  8. oserc

    I made new game out of Tibia

    I like this idea. However, what's in for the player who dares to enter another's castle?
  9. oserc

    Solved Help with player:addItem

    Are you sure you're using the Client ID (CID) for the item (not the Item ID)?
  10. oserc

    Scammer Alert: Beware of @Dreww / @Hellcora

    Sadly, people like that weaken our community. Sorry for you, guys and may they get their due. But, a piece of advice for anyone looking for freelancers: please check the "professional" background first. Saves time and money.
  11. oserc

    New OT project 2023-2024

    I'd go with RPG + New Map, using protocol 8.6 or 10.98 as base. I feel like there are plenty of evo servers already. The same with RL Maps. Yeah, you can provide free pacc for players, but you have to think of a way to generate income, in order to mantain the server online.
  12. oserc

    Lua tfs 1.4.2 when item equipped heal percent

    Not sure what you're trying to make here, but if you want an equipment to just works like a limitless ring of healing, you can do this just by adding some attributes into the items.xml, btw: <attribute key="healthGain" value="6" /> <attribute key="healthTicks" value="6000" />
  13. oserc

    Lua tfs 1.4.2 when item equipped heal percent

    how many ticks?
  14. oserc

    Lua tfs 1.4.2 when item equipped heal percent

    Test it, if it works mark it as the solution for the thread. You're welcome :) glhf
  15. oserc

    Lua tfs 1.4.2 when item equipped heal percent

    local percent = 5 function onEquip(player, item, slot, isCheck) if isCheck then return true end player:addHealth(player:getMaxHealth() * percent / 100) return true end
  16. oserc

    TFS 1.X+ [NPC Script Change Vocation]

    This will only remove skill tries, not base skill level. Also, there's no "player:setSkill()" or "player:setMagicLevel()" in TFS. In order to do this right, you must remove both tries and base skill level, like this: player:addSkill(skill, -player:getSkillLevel(skill))...
  17. oserc

    TFS 1.X+ New skills for dragon ball server

    Man, what you're asking for requires deep source changes, so you probably won't find tutorials specifically for that here or anywhere else. If you have a reasonable knowledge on C++ language, you can risk it (always make sure to have a backup for you server and client). If not, you may look in...
  18. oserc

    [BRAZIL] [Custom] MagicHeart - FULL CUSTOM - 4 years project

    I'm Brazilian, but if you want to go global with your server, you must write your website's content in english. Also, there are a few sections that need to be proper filled (random content in latim that probably comes with the template you're using). I personally don't like high exp and all the...
  19. oserc

    HELP WITH NPC POTION

    What TFS are you using?
  20. oserc

    Programmer Looking for an Experienced OTCv8 Module Developer/Client Optimizer

    What are you offering? And what kind of project are you developing?
Back
Top