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

Remove outfit talkaction

Rufo

New Member
Joined
Jan 9, 2008
Messages
251
Reaction score
1
Im not good with talkactions so if somebody can help me and make me a script that removes an addon like:


/rmaddon rufo,128, 2

would be cool:D


with this function:
Lua:
doPlayerRemoveOutfit(cid,looktype, addons)
 
Code:
function onSay(cid, words, param, channel)
	local params = string.explode(param, ",")
	if (not params[1] or not params[2] or not params[3]) then
		return true
	end
	local player = getPlayerByName(params[1])
	if (not player) then
		return true
	end

	doPlayerRemoveOutfit(player, params[2], params[3])
	return true
end
 
Back
Top