• 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. GOD Half

    TFS 1.X+ Summons with different names - TFS 1.3

    Hello everyone, I'm trying to develop a system to summon different types of summons. It is working, but when I have another summoned summon, it identifies as the same, and blocks how much I need each of them. Can someone help me? function onCastSpell(creature, var) local player =...
  2. GOD Half

    TFS 1.X+ Summon in other players - TFS 1.3

    Hi guys, I need fixing this problem. I did this script to summon some monsters, but he always summons the other players too, can anyone help me, please? Thank's local configId = { [1] = {"Corym Charlatan"} } function onCastSpell(creature, variant) for _, player in ipairs(Game.getPlayers())...
  3. GOD Half

    TFS 1.X+ About summons code

    Hi again, I have developed a code to summon a Pet, but I don't understand much about how the "master" or "getCreatureMaster" system works ... I think I'm using it the wrong way. If anyone can explain to me the logic of this system, please. There have been some errors because of this, in the...
  4. GOD Half

    TFS 1.X+ getDirection() of target - TFS1.3

    Hi guys, how do I print the direction the target is looking? The model below prints the direction the player is looking, but I need the direction that the target of the player is looking to be printed: function onThink(interval, lastExecution, thinkInterval) for _, player in...
  5. GOD Half

    OTClient About ICON Condition

    Hi guys, not only for the OTC, but also for the Tibia Client. Has anyone been able to customize ICON's of the conditions? I'm trying to customize an icon for a specific spell but I don't find anything about it. ICON_POISON = 1 << 0, ICON_BURN = 1 << 1, ICON_ENERGY = 1 << 2...
  6. GOD Half

    Solved No SQM = Bug try summon

    Hi, someone help me set to not summon if don't have space next to the character?
  7. GOD Half

    TFS 1.X+ Player walks freeze!

    Has anyone ever had this problem? I made some changes idk (or I'm wrong) because this problem was not happening before. It started for some reason, but does not have a loop causing a high CPU or Distro consumption, as shown below. If someone has gone through this and knew how to fix it, can you...
  8. GOD Half

    TFS 1.X+ gainhpticks/gainhpamount and gainmanaticks/gainmanaamount

    Hi, I adjusted to: gainhpticks="1" gainhpamount="15" gainmanaticks="5" gainmanaamount="50" <vocation id="1" fromvoc="1" clientid="5" name="Teste" description="a Teste" gaincap="15" gainhp="10" gainmana="30" gainhpticks="1" gainhpamount="15" gainmanaticks="5" gainmanaamount="50"...
  9. GOD Half

    Lua How to find the position information I want in an array?

    I need to find the information based on the position of each array. local arrayVoc = { [1] = {1, 2, 3, 4, 5}, [2] = {6, 7, 8, 9, 10}, [3] = {11, 12, 13, 14, 15}, [4] = {16, 17, 18, 19, 20}, [5] = {21, 22, 23, 24, 25}, [6] = {26, 27, 28, 29, 30} } Currently the search system...
  10. GOD Half

    [Naruto 2018 Project] - Preparing 1st Outfit Updated!

  11. GOD Half

    TFS 1.X+ Client crash when change new Outfit.

    Hi guys, I'm using TFS 10.98 version. What is happening is that I created the new Outfit, adapted correctly to be able to change the colors but when I open the Outfit window by the Tibia Client, the game crash. The otclient opens, but it does not change the colors. I uploaded a video to get...
  12. GOD Half

    TFS 1.X+ Shield Skill without shield

    Can anyone help me make a system that the character increases the shield skill when using armor instead of shield? SOLVED: I just added that code (will receive the skill if it takes damage): if (damage > 0) { addSkillAdvance(SKILL_SHIELD, 1); } In the part below (player.cpp)...
  13. GOD Half

    Compiling How to know the tibia version?

    Hi guys, Please, how can I see which minimum and maximum version my server supports in compiling? Thanks.
  14. GOD Half

    About Unjustified Kills

    I have a question. I wonder also how to decrease The quantity of deaths that appear on the site. Example: If eight players may strike another player, they are all shown on the site. Example: Killed at level 257 by Korsain, Wallker's Owns, Janis Joplin, Sienzay, Seldriel, Karen Bloom, Zikaah...
  15. GOD Half

    Remove Vip

    Hello, I have a script that worked in earlier version of my server, only the current it is not working TFS 0.4_DEV Error: [20:44:16.546] [Error - GlobalEvent Interface] [20:44:16.546] data/globalevents/scripts/removevip.lua:onThink [20:44:16.546] Description: [20:44:16.546]...
  16. GOD Half

    Premium Days x VIP DAYS

    Please. When I buy VIP Days at the site with my points, the character gets days of premium. I wanted him to win VIP DAYS, unlike Premium Days. Does anyone know how to configure this? Should be more or less here (or no), at shopsystem.php: if(isset($buy_offer['id'])) { //item exist in...
  17. GOD Half

    Exp for Premium Account no Work

    Hello, I have looked in all over the place, I have found. I do not know exactly if this error could be plus there's the script pertunga. When I change the "freePremium = false" in my config.lua ot to true, the character stop gaining experience when killing any creature. That is, no premium...
Back
Top