• 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

    Solved Level Tile for players over 50

    function onStepIn(cid, item, frompos, itemEx, topos) if isPlayer(cid) and item.uid == 1234 then if getPlayerLevel(cid) < 50 then doPlayerSendTextMessage(cid,21,"It works !") else doPlayerSendCancel(cid,21,"You need to be below level 50.") doTeleportThing(cid, frompos) end...
  2. F

    Solved Level Tile for players over 50

    function onStepIn(cid, item, frompos, itemEx, topos) if isPlayer(cid) and item.uid == 1234 then if getPlayerLevel(cid) < 50 then doPlayerSendTextMessage(cid,21,"It works !") else doPlayerSendCancel(cid,21,"You need to be below level 50.") end end return true end end...
  3. F

    Lua unknown world type

    These are the ones NO-PVP PVP PVP-ENFORCED
  4. F

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    Can you help me, with one of the problems?
  5. F

    Lua Rented Horse Script

    Change function creatureSayCallback(cid, message, keywords, parameters, node) to this function creatureSayCallback(cid, type, msg)
  6. F

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    Is it possible to start a guild war, via the website? Cause I couldn't find anything there. There are only functions, to look up war's that are already started. Another problem I have is, that the points don't shown up in the shop site. I can change them in DB, but I can't buy something in the...
  7. F

    Selling Scripting & Programming Service

    I luckily found this thread. Very good work. He you helped me fast, with a problem, I thought which was impossible to solve :D Rep++
  8. F

    How do i make a door let only some vocations through?

    SOrry for my double posts. I'm online with my mobile phone and was a little confused :/
  9. F

    How do i make a door let only some vocations through?

    Try this? local t = { [voc] = {2, 10, 28, 29, 30} } function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == ID_OF_THE_CLOSED_DOOR then if isInArray(t[voc], getPlayerVocation(cid) == FALSE then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR...
  10. F

    [Help] Easy way to make quests

    There are two chest rewarding systems: #1 You give the chest the itemid you should get as uniqueid. If you want to get multiple items, backpacks, etc. you have to write a special script. #2 You add the item(s) you should get in the map editor and write actionid 2000 and a quet specific uniqueid...
  11. F

    How do i make a door let only some vocations through?

    Try this? local t = { voc = {2, 10, 28, 29, 30} } * * function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == ID_OF_THE_CLOSED_DOOR then if isInArray(t.voc, getPlayerVocation(cid) == FALSE then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR...
  12. F

    [Help] Easy way to make quests

    So you are using TFS 0.2.14 and didn't changed the actions?
  13. F

    doPlayerSetOfflineTraining(cid, skill)??

    But that all. Nothing happens. I have tried it, and was offline for about an hour, but the offline time doesn't change. And you won't gain skill tries. I also looked in the sources and found, that if the offlineskillvalue == -1 time is add to your offline bar, but there is no else...
  14. F

    [9.60/9.61] The Forgotten Server v0.2.14 (Mystic Spirit)

    Well or you try this http://otland.net/f82/9-31-real-tibia-spells-pack-fits-tibiastats-formula-144789/ spells (9.31)
  15. F

    [9.60/9.61] The Forgotten Server v0.2.14 (Mystic Spirit)

    How about changing damage of the spells and runes?
  16. F

    doPlayerSetOfflineTraining(cid, skill)??

    Hey guys, while browsing through the sources of TFS 0.2.14 I found this function doPlayerSetOfflineTraining(cid, skill) My question now, is that function already working? Cause when you use it, it seems that nothing happens. Only the value in the database changes.
  17. F

    How do i make a door let only some vocations through?

    Post your door script here, and tell me, what door type, you want to use for that.
  18. F

    How do you make an npc only talk to spacific vocations?

    Same script as up, but better formated local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandlernCreatureAppear(cid) end function...
  19. F

    NPC NPC only trades after quest/level/item, etc.

    I was looking for an Rashid like npc, that only trades after a special quest. So as I found nothing, I looked around and made this script. Tested with TFS 0.2.14 (9.6) npc.xml <?xml version="1.0" encoding="UTF-8"?> <npc name="Trader" script="data/npc/scripts/trade.lua" walkinterval="2000"...
  20. F

    Lua ? or [Compiling] Outfit only wearable after quest

    I tried, but none of the tutorials about compiling on this forum worked :/
Back
Top