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

    NPC [TFS 1.1] Monster Tasks

    It works pretty good, thank you for this post! Is it possible to add required level for tasks?
  2. demon088

    Lua Problem with outfit/addons NPC

    Thanks, now I understand better how to manage my storage ids.
  3. demon088

    Lua Problem with outfit/addons NPC

    Hello I'm using TFS 1.2 and I need help to solve this issue: This is my script: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid)...
  4. demon088

    Lua onKill tfs 1.2

    I have already fixed it. Sorry for posting such dumb script xd
  5. demon088

    Lua onKill tfs 1.2

    -I'm having errors, I was trying to add a meesage showing the ammount of creatures that you have killed- EDIT: I fixed the script and it is working! function onDeath(creature, corpse, killer, mostDamageKiller, unjustified, mostDamageUnjustified) for attackerUid, damage in...
  6. demon088

    Lua [TFS 1.X] Random Reward Action

    I didn't notice this before. I will test and fix the script. Thanks for your feedback! EDIT: The correct script should look like this. local REWARD = {2471, 2496, 2343, 7902, 18398, 8868, 8867, 15489, 12643, 8887, 8886, 8885, 8877, 8878, 15407, 8884, 8881, 12607, 8889, 8865, 8890, 6132, 11117...
  7. demon088

    Lua [TFS 1.X] Random Reward Action

    Yes... I used to work with this code from my old tibia version server, it worked so I didn't updated the code structure.
  8. demon088

    Lua [TFS 1.X] Random Reward Action

    Hello OtLand! I wanted to share this action script that I have written with other scripts posted in this site. Review it and if someone wants to use, it would be cool! I'm using TFS 1.2 and it is working fine! It is useful to make this a random reward box. In my own OTS I use 6 different items...
  9. demon088

    TFS 1.X+ [TFS 1.3] Issue with amount of potions displayed on use

    My bad, I'm using TFS 1.2, anyone that could help me? I have reviewed other posts about editing my sources, but it was not the same source thatI'm using.
  10. demon088

    TFS 1.X+ Imbuing system tfs

    I would recommend this post: System by Tampek 1594608603 I would like to see your system through sources, may you show me?
  11. demon088

    What OTB, SPR, DAT editor for 10.98?

    Which one does edit tibia.dat?
  12. demon088

    TFS 1.X+ [TFS 1.3] Issue with amount of potions displayed on use

    Hello Otland! I have an issue on my OTS that doesn't seem like a big deal, but whener potions are being used the full amount is not shown, Example: I have 143 mana potions in my bp, so when I use one it should be displaying "Using one of 143 mana potions..." but instead: When there are less...
  13. demon088

    Lua Can a quest send items to depot?

    I'm using TFS 1.3 for Tibia 10.98, I tried with the next script: function onUse(player, item, fromPosition, target, toPosition, isHotkey) if player:getStorageValue(5017) == 2 then player:sendTextMessage(MESSAGE_INFO_DESCR, "It is empty.") elseif player:getStorageValue(5017) <= 2...
  14. demon088

    Lua Can a quest send items to depot?

    Hello, Recently I decided to add something similar to loot boxes for my OTS and I would like to know if is there any action script to send the reward directly to the player's depot. If that makes sense, I'll expect help about thid kind of feature. Thanks!
  15. demon088

    TFS 1.X+ Add Fist Skill to Offline Training for Beds

    I haven't found any solution to this yet... Anyone?
  16. demon088

    TFS 1.X+ Add Fist Skill to Offline Training for Beds

    Hello OtLanders! I'm using TFS 1.2 for Tibia Version 10.98. I have just added Fist Skill on my OTS: There is a statue to train Fist and I have several spells including it, if somebody wants me to share such content, please let me know. However, my problem is on bed offline training as you can...
  17. demon088

    OpenTibia Item Editor (10.98)

    Download links are broken...
  18. demon088

    Request/help for the pvp 50% dmg reduction

    On TFS 1.2+, I would recommend to edit sources, search combat.cpp and look for the next part: if ((damage.primary.value < 0 || damage.secondary.value < 0) && caster) { Player* targetPlayer = target->getPlayer(); if (targetPlayer && caster->getPlayer() &&...
  19. demon088

    [TFS 1.2] Modal Addon Doll 2.0

    Working on tfs 1.2 right now!
  20. demon088

    Lua Function [TFS 1.2/1.3] player:setAttackSpeed(ms) | player:getAttackSpeed()

    I'm sorry for asking this, but how can I apply this to an action or spell script? I have tried only adding something like: player:setAttackSpeed(1000) But it hasn't modified the att speed... Can someone explain further about this? Thanks for the assistance!
Back
Top