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

TibiaCore 7.4 TFS 1.2 same Nostalrius project.

[Task] Can someone make it so that players in a party count when they kill a monster?

In Your tasks.lua in creaturescript add that - it should work :)

LUA:
local function getObjs(creature)
    local objs = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)
    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and timeNow - cb.ticks <= inFightTicks then
            local party = attacker:getParty()
            if party then
                local lid = party:getLeader():getId()
                if not objs[lid] then
                    objs[lid] = party
                end
            else
                objs[attacker:getId()] = attacker
            end
        end
    end
    return objs
end

local function applyStorages(player, info)
    local storageValue = player:getStorageValue(info.storage)
    if storageValue >= info.start then
        if storageValue >= info.count then
            player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. info.count .. " " .. info.plural .. ". Report back to Tusker.")
        else
            player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. info.count .. "] " .. info.plural .. ".")
        end
        player:setStorageValue(info.storage, storageValue + 1)
    end
end

function onKill(player, creature)
    local info = config[creature:getName():lower()]
    if not info or creature:getMaster() then
        return true
    end

    for _, obj in pairs(getObjs(creature)) do
        if getmetatable(obj) == Party then
            for _, member in pairs({obj:getLeader(), unpack(obj:getMembers())}) do
                applyStorages(member, info)
            end
        else
            applyStorages(obj, info)
        end
    end
    return true
end
 
How did you guys manage to compile and run this? I followed the Github page instructions, but it seems like this project is using an older version of Boost (<= 1.65) ?
 
In Your tasks.lua in creaturescript add that - it should work :)

LUA:
local function getObjs(creature)
    local objs = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)
    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and timeNow - cb.ticks <= inFightTicks then
            local party = attacker:getParty()
            if party then
                local lid = party:getLeader():getId()
                if not objs[lid] then
                    objs[lid] = party
                end
            else
                objs[attacker:getId()] = attacker
            end
        end
    end
    return objs
end

local function applyStorages(player, info)
    local storageValue = player:getStorageValue(info.storage)
    if storageValue >= info.start then
        if storageValue >= info.count then
            player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. info.count .. " " .. info.plural .. ". Report back to Tusker.")
        else
            player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. info.count .. "] " .. info.plural .. ".")
        end
        player:setStorageValue(info.storage, storageValue + 1)
    end
end

function onKill(player, creature)
    local info = config[creature:getName():lower()]
    if not info or creature:getMaster() then
        return true
    end

    for _, obj in pairs(getObjs(creature)) do
        if getmetatable(obj) == Party then
            for _, member in pairs({obj:getLeader(), unpack(obj:getMembers())}) do
                applyStorages(member, info)
            end
        else
            applyStorages(obj, info)
        end
    end
    return true
end
it works but players who do not take part in the fight and stand in another city in dp receive a task
 
it works but players who do not take part in the fight and stand in another city in dp receive a task
try now:


LUA:
local function getKillers(creature, party)
    local killers = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)

    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and attacker ~= creature and timeNow - cb.ticks <= inFightTicks then
            local attackerParty = attacker:getParty()
            if attackerParty and attackerParty == party then
                killers[attacker:getId()] = attacker
            end
        end
    end
    return killers
end

function onKill(player, target)
    local monster = config[target:getName():lower()]
    if not monster or target:getMaster() then
        return true
    end
    
    local party = player:getParty()
    if not party then
        return true
    end
    
    local killers = getKillers(target, party)

    for _, member in pairs(killers) do
        if member then
            local storageValue = member:getStorageValue(monster.storage)

              if storageValue < monster.start then
                storageValue = monster.start
            end

            if storageValue >= monster.count then
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. monster.count .. " " .. monster.plural .. ". Report back to Grizzly in Thais.")
            else
                storageValue = storageValue + 1
                member:setStorageValue(monster.storage, storageValue) -- Aktualizacja storage
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. monster.count .. "] " .. monster.plural .. ".")
            end
        end
    end
    
    return true
end
 
try now:


LUA:
local function getKillers(creature, party)
    local killers = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)

    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and attacker ~= creature and timeNow - cb.ticks <= inFightTicks then
            local attackerParty = attacker:getParty()
            if attackerParty and attackerParty == party then
                killers[attacker:getId()] = attacker
            end
        end
    end
    return killers
end

function onKill(player, target)
    local monster = config[target:getName():lower()]
    if not monster or target:getMaster() then
        return true
    end
  
    local party = player:getParty()
    if not party then
        return true
    end
  
    local killers = getKillers(target, party)

    for _, member in pairs(killers) do
        if member then
            local storageValue = member:getStorageValue(monster.storage)

              if storageValue < monster.start then
                storageValue = monster.start
            end

            if storageValue >= monster.count then
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. monster.count .. " " .. monster.plural .. ". Report back to Grizzly in Thais.")
            else
                storageValue = storageValue + 1
                member:setStorageValue(monster.storage, storageValue) -- Aktualizacja storage
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. monster.count .. "] " .. monster.plural .. ".")
            end
        end
    end
  
    return true
end
I tested and it's the same situation
it counts for everyone in the party without being near the monster


=======I forgot
reload creaturescript :)
WORK!
 
Last edited:
I tested and it's the same situation
it counts for everyone in the party without being near the monster
LUA:
local function getKillers(creature, party)
    local killers = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)

    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and attacker ~= creature and timeNow - cb.ticks <= inFightTicks then
            local attackerParty = attacker:getParty()
            
            if (attackerParty and attackerParty == party) or (not party and attacker == creature:getMaster()) then
                killers[attacker:getId()] = attacker
            end
        end
    end
    return killers
end

function onKill(player, target)
    local monster = config[target:getName():lower()]
    if not monster or target:getMaster() then
        return true
    end

    local party = player:getParty()
    local killers = getKillers(target, party)

    
    if not party then
        killers[player:getId()] = player
    end

    for _, member in pairs(killers) do
        if member then
            local storageValue = member:getStorageValue(monster.storage)

            if storageValue < monster.start then
                storageValue = monster.start
            end

            if storageValue >= monster.count then
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. monster.count .. " " .. monster.plural .. ". Report back to Grizzly in Thais.")
            else
                storageValue = storageValue + 1
                member:setStorageValue(monster.storage, storageValue)
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. monster.count .. "] " .. monster.plural .. ".")
            end
        end
    end

    return true
end

remember to reload creaturescript :) or close server and run again
 
LUA:
local function getKillers(creature, party)
    local killers = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)

    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and attacker ~= creature and timeNow - cb.ticks <= inFightTicks then
            local attackerParty = attacker:getParty()
           
            if (attackerParty and attackerParty == party) or (not party and attacker == creature:getMaster()) then
                killers[attacker:getId()] = attacker
            end
        end
    end
    return killers
end

function onKill(player, target)
    local monster = config[target:getName():lower()]
    if not monster or target:getMaster() then
        return true
    end

    local party = player:getParty()
    local killers = getKillers(target, party)

   
    if not party then
        killers[player:getId()] = player
    end

    for _, member in pairs(killers) do
        if member then
            local storageValue = member:getStorageValue(monster.storage)

            if storageValue < monster.start then
                storageValue = monster.start
            end

            if storageValue >= monster.count then
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. monster.count .. " " .. monster.plural .. ". Report back to Grizzly in Thais.")
            else
                storageValue = storageValue + 1
                member:setStorageValue(monster.storage, storageValue)
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. monster.count .. "] " .. monster.plural .. ".")
            end
        end
    end

    return true
end

remember to reload creaturescript :) or close server and run again
Good Job !
Happy Birthday Wtf GIF by Piñata Farms: The Meme App

works a player in the team must attack the monster for it to count.
 
how do i run this server in my pc?
I just found this by google.
there is any tutorial to run this server? im new at this
 
Last edited:
i would like to upgrade this to tfs 1.5 and add some tvp code is someone oiut there willing to do this with me? just pm
 
LUA:
local function getKillers(creature, party)
    local killers = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)

    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and attacker ~= creature and timeNow - cb.ticks <= inFightTicks then
            local attackerParty = attacker:getParty()
           
            if (attackerParty and attackerParty == party) or (not party and attacker == creature:getMaster()) then
                killers[attacker:getId()] = attacker
            end
        end
    end
    return killers
end

function onKill(player, target)
    local monster = config[target:getName():lower()]
    if not monster or target:getMaster() then
        return true
    end

    local party = player:getParty()
    local killers = getKillers(target, party)

   
    if not party then
        killers[player:getId()] = player
    end

    for _, member in pairs(killers) do
        if member then
            local storageValue = member:getStorageValue(monster.storage)

            if storageValue < monster.start then
                storageValue = monster.start
            end

            if storageValue >= monster.count then
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. monster.count .. " " .. monster.plural .. ". Report back to Grizzly in Thais.")
            else
                storageValue = storageValue + 1
                member:setStorageValue(monster.storage, storageValue)
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. monster.count .. "] " .. monster.plural .. ".")
            end
        end
    end

    return true
end

remember to reload creaturescript :) or close server and run again
something is wrong, all tasks are activated when I do the first one and give it to him, all of them are active and I didn't take any of them do you have any solution for this?:(
 
i would like to upgrade this to tfs 1.5 and add some tvp code is someone oiut there willing to do this with me? just pm
Im modifying gradually, several bugs have been solved, because i left the server open for free until i get error logs with time, in addition i implemented cool things.
just using modern c++ some shapes in lambda.
Post automatically merged:

something is wrong, all tasks are activated when I do the first one and give it to him, all of them are active and I didn't take any of them do you have any solution for this?:(
look task_solo and race ur have duplicate any storage.
 
something is wrong, all tasks are activated when I do the first one and give it to him, all of them are active and I didn't take any of them do you have any solution for this?:(
i saw that later...
try this one, counts attackers :)


LUA:
local function getKillers(creature)
    local killers = {}
    local timeNow = os.mtime()
    local inFightTicks = configManager.getNumber(configKeys.PZ_LOCKED)
    
    for uid, cb in pairs(creature:getDamageMap()) do
        local attacker = Player(uid)
        if attacker and attacker ~= creature and timeNow - cb.ticks <= inFightTicks and cb.total and cb.total > 0 then
            killers[#killers + 1] = attacker
        end
    end
    
    return killers
end

function onKill(player, target)
    local monster = config[target:getName():lower()]
    if not monster or target:getMaster() then
        return true
    end
    
    local killers = getKillers(target)
    for _, member in pairs(killers) do
        local storageValue = member:getStorageValue(monster.storage)
        if storageValue < 0 then
            storageValue = 0
        end
        
        if storageValue >= monster.start then
            if storageValue >= monster.count then
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have already killed " .. monster.count .. " " .. monster.plural .. ". Report back to Grizzly in Thais.")
            else
                storageValue = storageValue + 1
                member:setStorageValue(monster.storage, storageValue)
                member:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have killed [" .. storageValue .. "/" .. monster.count .. "] " .. monster.plural .. ".")
            end
        end
    end
    
    return true
end
 
Hello friend, when using this old client, as soon as I enter the server, it gets very buggy, the monsters disappear, the character disappears after a few seconds, and if I enter the official otclient (clean) it is working normally, do you know where I can go to try to make the old client work?
 
HI,
Can someone tell me how to increase knight damage by 50% :D
Search for:
C++:
int32_t Combat::getTotalDamage(

You need add attacker in getTotalDamage.
C++:
Creature* attacker
C++:
int32_t Combat::getTotalDamage(int32_t attackSkill, int32_t attackValue, fightMode_t fightMode)
After:
C++:
int32_t Combat::getTotalDamage(Creature* attacker, int32_t attackSkill, int32_t attackValue, fightMode_t fightMode)

For new "if":
C++:
if (Player* player = attacker->getPlayer()) {
    int16_t voc = player->getVocationId();

    if ((voc >= 4 || (voc == 8)) {
        formula = (7 * (attackSkill)+50) * damage;
    }
    else {
        formula = (5 * (attackSkill)+50) * damage;
    }
}
else {
    formula = (5 * (attackSkill)+50) * damage;
}
randresult = (rand() % 100);
return -(ceil(formula * ((rand() % 100 + randresult) / 2) / 10000.));
 
Back
Top