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

party

  1. D

    Lua [TFS 0.3.6]Script Party Exp

    Hello everybody! I need help with a script... I have this talkaction: <talkaction words="!partyexp" event="script" value="partyexp.lua"/> What calls this script: function onSay(cid, words, param, channel) if isInParty(cid) then local party = getPartyMembers(cid) local...
  2. R

    C++ Party shared experience issue

    Hello everyone, First of all, I have some programming experience and familiarity with it. However, this is my first encounter with Tibia's code, and it's also a different programming language than the one I'm used to. I'm facing an issue in my C++ code related to calculating shared experience...
  3. M

    Lua Pokedash Pota Party System

    Hello guys, im running a Pokedash POTA V1.2 server based on TFS 1.2 problem is party Shared experience not working, problem being the members are "inactive" all the time even if engaged in battle, shields blinking non stop if (!player->hasFlag(PlayerFlag_NotGainInFight)) { //check if...
  4. wizinx

    TFS 1.X+ Creaturescripts task count in party

    Hi everyone, I'm editing the code so that the tasks will count in party, but I can't make it 100% functional, since I want to make it count only by damaging the creature. At the moment it works if they both hit almost the same damage to the creature. Could you help me?. Thank you local...
  5. M

    Trying to identify a party member

    Hello guys, Im having trouble trying to identify a party member in this script: function onStatsChange(cid, attacker, type, combat, value) if getCreatureStorage(cid, 1111111) >= 1 then if isInParty(cid) == true then for _, party in ipairs(getPartyMembers(cid)) do if type ==...
  6. Z

    Lua [TFS 1.2] Task Party.

    My task system seems to be set so that only the last player who attacked the monster, counts. I'm trying to get you to tell Party members to attack the monster. Creaturescript: function onKill(player, target) local monster = config[target:getName():lower()] if not monster or...
  7. S

    [TFS 0.4] Party Share EXP giving experience when kill player

    Hi guys! I recently implemented this @Mkalo system in my sources 0.4: Here The system works as proposed, but I was doing some tests and I could see that when I kill another player (don't need to be at a party) the player gains experience, like as "enforced" mode. is it possible to correct...
  8. S

    [TFS 0.4] Party Share Bonus

    Hi guys! I'm using @Mkalo's party group share experience for tfs 0.4: https://otland.net/threads/is-possible-check-sharing-exp.243688/page-2#post-2366196 My problem is that, i have new vocations (for example: Knight, Elite Knight and Legendary Knight// Druid, Elder Druid, Alchemist etc). I...
  9. J

    onKill players on party sharing xp to get task counted

    Hello, on my task scripts, only the player who deal the last hit get the monster counted, is anyone has a solution for both players in party get it counted? function onKill(cid, target, lastHit) local started = getPlayerStartedTasks(cid) if isPlayer(target) then return true end if started and...
  10. Kvn007

    Need help to get Party health and increase limite of 64 addons

    1-I want show party's health in a miniwindow :/ 2-How can i increase limite of 64 addons with no crash :o Thx for help
Back
Top