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

Help by /kill

Status
Not open for further replies.
talkactions/talkactions.xml:
Code:
	<talkaction words="/kill" script="killplayer.lua"/>

talkactions/scripts/killplayer.lua:
Code:
function onSay(cid, words, param)
	if getPlayerAccess(cid) > 2 then
		local player = getPlayerByName(cid)
		if(player ~= nil) then
			doSendMagicEffect(getCreaturePos(player), CONST_ME_MAGIC_GREEN)
			doPlayerAddHealth(player, -getCreatureHealth(player))
		else
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Player with this name is not online.")
		end
	end
end
 
Status
Not open for further replies.
Back
Top