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

Death configurations

dmflucid

IDK?
Joined
Oct 3, 2008
Messages
41
Reaction score
0
Location
LA, CA
How can u make it so when someone dies t says owned in red letters or whatever color and then like fireworks around the person who got the frag?
 
PHP:
local killerPos = getCreaturePosition(killer)
	doSendAnimatedText(killerPos, "Owned", TEXTCOLOR_RED)
	for i = 28, 30 do
		doSendMagicEffect(killerPos, i)
	end

add this under
PHP:
function onDeath(cid, corpse, killer)
in your creaturescripts/scripts/playerdeath.lua
 
Back
Top