[Task] Can someone make it so that players in a party count when they kill a monster?
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
using 1.84.0How 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) ?
using 1.84.0
it works but players who do not take part in the fight and stand in another city in dp receive a taskIn 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
try now:it works but players who do not take part in the fight and stand in another city in dp receive a task
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 situationtry 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
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
Good Job !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 creaturescriptor close server and run again
Someone know?How do I change that loot it's in server log? I want it to be in "loot channel"
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?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 creaturescriptor close server and run again
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.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
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...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?![]()
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?Hello
I've been struggling to make Classic UI and thanks to @pink_panther and @Nekiro there is now a huge update!
Credits for them
There is now github repo you can help us to make it even better now
![]()
GitHub - tysonstrange/otcv8-classicui at 772gui
OTCv8 Classic UI. Contribute to tysonstrange/otcv8-classicui development by creating an account on GitHub.github.com
Screens:
![]()
![]()
Enjoy!
Search for:HI,
Can someone tell me how to increase knight damage by 50%![]()
int32_t Combat::getTotalDamage(
Creature* attacker
int32_t Combat::getTotalDamage(int32_t attackSkill, int32_t attackValue, fightMode_t fightMode)
int32_t Combat::getTotalDamage(Creature* attacker, int32_t attackSkill, int32_t attackValue, fightMode_t fightMode)
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.));