• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

When kill a monster show Broadcast

Stewie

Family Guy # ;3
Joined
May 3, 2010
Messages
786
Reaction score
12
Location
TV
Hi,

I would like when kill a X monster show for all players,

Example

MraZ killed the powerful demon
 
Last edited:
Code:
function onKill(cid, target, lastHit)
local monster = 'sheep'
	if getCreatureName(target):lower() == monster:lower()
		doBroadCastMessage(cid,getCreatureName(cid)..' has killed the '..monster:lower()..'!')
	end
	return true
end

try this
 
Back
Top