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

Advanced Death List

Jagkanprata

Banned User
Joined
Jul 6, 2007
Messages
893
Reaction score
1
I would like to request a advanced death list like rl tibia :p.
Examples:

Crushed at Level 255 by Evil Tripster, Fomzinhu, Ilfex Draxus, Imrion Whios, Invencible Mythology, Invencible Wizard, Loki Shawz, Nenem Boladao, Ninjah Turtle, Sir Brutthu, Syrius Lord and Yakut Yagami.

Eliminated at Level 118 by Bro Chaveko, Cador Saoki, Freegelx, Little'Druida, Machiine Death, Mage Deathly, Magician Of'Sky, Nanykinho, Pascky Satan, Rapha Mage, Sir Valige, Snifers, Sorcerer Rula, Suykuny, Trankera Artel and Vena Efusus.

Killed at Level 118 by Krin Mitnin, Mago Malvado do Mal and Spike-loko.


Last 20 damage dealers that have done damage within the last 60 seconds before the death will be counted as killers and get displayed and linked on the character information page of the victim.

I dont want the script for death channel ;<
 
Last edited:
try this (Note preparedeath is so bugedS);
Code:
function onPrepareDeath(cid, deathList)
	local corpse_ids = {
		[0] = 3065,
		[1] = 3058
	}
	local corpse, killers = doCreateItem(corpse_ids[getPlayerSex(cid)], 1, getThingPos(cid)), ""
	for _, v in ipairs(deathList) do
		killers = killers .. " " .. (v < 5 and "Killed" or v == 5 and "Eliminated" or v > 10 and "Crushed") .. " at level " .. getPlayerLevel(cid) .. " by " .. getCreatureName(v)
		doItemSetAttribute(corpse, "specialdescription", "You recognize " .. getCreatureName(cid) .. ". " .. (getPlayerSex(cid) == 0 and "She" or "He") .. " was killed by " .. killers .. ".")
	end
	return true
end
 
Last edited:
Back
Top