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

    Lua getPlayerExp

    Hello everyone, I am using TFS 0.2.14 and I want to know if it is possible, to get the Player's exp with a function (no database query)?
  2. F

    Lua Scripting Reference

    You can use the source codes for your server. Means, search for your sources and then for "luascript.cpp". There is the list of ALL functions that your server supports. In fact, it is the list, your server uses, so there is a lot of code/info you don't need/understand. You need to filter this...
  3. F

    How to edit starting stat?

    In your database you can edit the default settings on Health, Mana and Cap, so every new char, has 1000 hp instead of 150.
  4. F

    How to edit starting stat?

    When you are using NO website, you can only change the level in the config.lua -- Account Manager accountManager = "no" newPlayerChooseVoc = "no" newPlayerSpawnPosX = 483 newPlayerSpawnPosY = 220 newPlayerSpawnPosZ = 7 newPlayerTownId = 1 newPlayerLevel = 1...
  5. F

    [How to] Map live

    Do you know, if it's possible, to update to client 9.6 or more? Cause I really love this live mapping feature :)
  6. F

    Monsters Behind Teleports. Please Help

    Or you can just create an npc with monsters name and looktype ;)
  7. F

    Remeres map editor Live Mapping

    bump
  8. F

    Remeres map editor Live Mapping

    Is there any version of RME with the Live mapping feature, that supports 9.6 or higher? Or is there any way to do this on my own? I really liked it, and want to do some stuff, with my friends ;)
  9. F

    GlobalEvent Last Creep Standing World Event (Darashia Journey)

    Hello everyone, I tried to script this quest, and I think I succeed. The Positions are from RL Map, but there was the main quest room missing, so some positions are called "missing". add this in data/globalevents/globalevents.xml <globalevent name="LastCreep" interval="14400000"...
  10. F

    [Znote AAC] Gain Shop Points by Ingame Event

    Hello everyone, I really like the idea, to get points by donating, but sometimes I think, it's cool, to unlock some points without paying, but with ingame events (get level 100 or do special quest, for example) This is the function you can add in any lua script (and in global ofc) (I tested...
  11. F

    Lua Create Item with ActionID

    Try this: local Item = doCreateItemEx(itemid, count) doSetItemActionId(Item.uid, actionid) doPlayerAddItemEx(cid, Item.uid)
  12. F

    Lua check if tile is walkable TFS 0.2.14

    Hello everyone, I just want to know, if it's possible in TFS 0.2.14 to check, if a tile is walkable or not (a wall or not). I guess you use this function getTileInfo(pos) But I don't know what parameters you can check (I already tried "moveable" and "blocksolid") If someone could give me a...
  13. F

    Do you want an video tutorial of basic scripting?

    I am very happy about the positive feedback for my idea. I'm sorry that you waited so long, cause I am back from my 3-week trip in france now and start the recording today, or tomorrow, so it wont take so long from now on ;)
  14. F

    SimOne Map editor 8.6?

    You can update the SimOne very easy. Just add the items.otb and items.xml data from your server, and the tibia.dat and tibia.spr from your tibia version into the simone folder.
  15. F

    Guard NPC

    In which situation? o.O
  16. F

    Solved Addon doll onUse

    With what?
  17. F

    Do you want an video tutorial of basic scripting?

    Hello everyone, I'm working with OT's for a while now and learned a lot in this forum, but also a lot by just testing, reading already existing scripts, etc. I knew it wasn't the easiest way but it was the best for me, because in this way I understand it best My question now is: Should I make...
  18. F

    Do you want an video tutorial of basic scripting?

    Hello everyone, I'm working with OT's for a while now and learned a lot in this forum, but also a lot by just testing, reading already existing scripts, etc. I knew it wasn't the easiest way but it was the best for me, because in this way I understand it best ;) My question now is: Should I...
  19. F

    Solved Create tp with item, based on player pos

    Here you are :) local config = { pos = {x = 1013, y = 971, z = 4}, delay = 1 -- Delay for removing teleporter in seconds } local function removeTeleport(item) doRemoveItem(item.uid) return TRUE end function onUse(cid, item, fromPosition, itemEx, toPosition) if...
Back
Top