You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know its better to have as default, but here is the necessary modification.
local function getKiller(killer)
if not killer then
return false, "field item"
end
if killer:isPlayer() then
return true, killer:getGuid()
end
local master = killer:getMaster()
if master and master ~= killer and master:isPlayer() then
return true, master:getGuid()
end
return false, killer:getName()
end
now you need to change your acc to get player by id too
Before creating an issue, please ensure:
support matter (use https://otland.net/forums/support.16/ for support)
Expected behaviour
Columns "killed_by" and "mostdamage_by" cannot carry the player ID? I had problems when I used a "change name", the table stored the old names.
https://github.com/otland/forgottenserver/blob/master/schema.sql#L271-L284
The text was updated successfully, but these errors were encountered: