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

Search results

  1. Xagul

    premium soul

    Promoted vocations have more soul by default, and require premium by default. Is that good enough? If not, you can always check the players premium status onLogin (creature event) and set their max soul accordingly.
  2. Xagul

    Create All Vocations as a Males

    If changing the website is too difficult, just set the characters gender in the firstitems creature event and be done with it.
  3. Xagul

    Bug in the swapping script

    if (getPlayerItemCount(cid, 17156) < 100 and getPlayerItemCount(cid, 17174) < 100) then Should use or here instead of and.
  4. Xagul

    Solved NpcScript Interface

    Old thread but I will put this here just in case anyone runs up on it since OP did not include the answer to the question. If you are using TFS 1.x and want to keep old functions from 0.x, you should update your compat.lua here: otland/forgottenserver...
  5. Xagul

    TFS 0.X Character list AFTER death

    What version of tibia? I know older versions of tibia (7.6 as an example) never displayed the character list when you died, you had to use CTRL+G. If you are using a newer version, check your creature events for anything using onPrepareDeath or onDeath and see if it is preventing the death some...
  6. Xagul

    TFS 0.X NPC Trade

    Right click the npc window and change the sorting method, there should be an option that moves sell-able items to the top?
  7. Xagul

    Lua don't drop all bag

    In your current onDeath script you could just do: if amulet.itemid == 2003 then return true end
  8. Xagul

    TFS 1.X+ getVocationInfo(getPlayerVocation(cid)).name -> for 1.x?

    player:getVocation():getName()
  9. Xagul

    help, change in script

    Not sure what version of TFS you are using so one of these: item:getCount() - or - item.type Unless you post the rest of the code, this is the best we can suggest.
  10. Xagul

    Item that deals 5% more

    You must register that creature event on all monsters/players.
  11. Xagul

    TFS 1.X+ VIP System TFS 1.3

    Set an action id on the door you want. In the door script check for that action id and then check if player:isPremium() Same goes for a tile, there should be a movement script by default called walkback, use that as a base and add the premium check.
  12. Xagul

    TFS 1.X+ This script dont set any storage, Inquisition, MainTeleport

    Storage.TheInquisition.EnterTeleport Where is this table? I don't see it in any of the code you have shown. If it does not exist, this is why it isn't working. Try to print(Storage.TheInquisition.EnterTeleport)
  13. Xagul

    Lua don't drop all bag

    I would start by checking this local lossPercent = player:getLossPercent() You can simply do print(lossPercent) I've never used that function in TFS but depending on what it spits out, you would have to adjust the math.random range. So if you want it to be 10% chance and its printing 10000...
  14. Xagul

    Item that deals 5% more

    Not sure if that version has the old attribute for energy damage, if not you can always do it via LUA using onHealthChange creature event. function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin) All you would have to do is check the...
  15. Xagul

    Server requirements to host a stable server for 500+ people?

    Some of the most important parts of a host are not even hardware related. It would be difficult to find a datacenter that offers machines incapable of running an OT. Things you should consider: RAM is usually expensive, shop around for the amount of ram you think your server will use. I would...
  16. Xagul

    Lua I Need help in the script

  17. Xagul

    Project X? Maybe... (10.++ XDC)

    Progress is slow but I do get motivation to work on the server from time to time still.
  18. Xagul

    [The Official (and soon to be more popular)] Bash Flatlander Thread

    Multiverse server coming soon™ 2120. It will be the most popular server to have ever existed with only 10 players online. Hope to see you guys there!
  19. Xagul

    [SWITZERLAND] Chaos OT 10.1

    I do appreciate the work you put into making a custom server instead of just throwing up another real map. I would just like you to take our friends real name off of the advertisement. There is nothing wrong with remaking an old server that everyone loved, but to sit there and impersonate...
Back
Top