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

i need fragreward.lua

This is already released, but here you are.
Lua:
function onKill(cid, target)
local reward = {
	item = 2160, --ITEM ID!
	count = 1 -- How many?
}
	if(isPlayer(cid) and isPlayer(target)) then
		doPlayerAddItem(cid, reward.item, reward.count)
		end
	return true
end
 
Back
Top