Sigoles
Discord: @sigoles
- Joined
- Nov 20, 2015
- Messages
- 1,209
- Solutions
- 2
- Reaction score
- 154
Hello, How to dont count if player attacker/attacked is the same IP?
tfs 1.2
code
tfs 1.2
code
Code:
function onKill(creature, target)
if target:isPlayer() and target:getLevel() >= 200 then
creature:setStorageValue(167912, math.max(0, creature:getStorageValue(167912)) + 1)
db.query("UPDATE `players` SET `frag_points` = `frag_points` + '1' WHERE `name` = "..db.escapeString(creature:getName())..";")
end
return true
end
function onDeath(creature, corpse, lasthitkiller, mostdamagekiller, lasthitunjustified, mostdamageunjustified)
if lasthitkiller and lasthitkiller:isPlayer() and creature:getLevel() >= 200 then
creature:setStorageValue(167913, math.max(0, creature:getStorageValue(167913)) + 1)
end
return true
end