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

Melee Weapon destroys Spider Web [Script Request]

Tibia Rox

Member
Joined
Feb 4, 2009
Messages
1,181
Reaction score
9
Location
U.S.A
I need a script that allows all melee weapons to destroy spider webs (id: 7538, 7539)

Thanks in advance,
Tibia Rox
 
Do you have this on your distro (actions.xml) ?
XML:
<action default="yes" event="script" value="default.lua"/>
 
That is my default.lua
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local item = getItemInfo(item.itemid)
	if(item.weaponType == WEAPON_SWORD or item.weaponType == WEAPON_CLUB or item.weaponType == WEAPON_AXE) then
		return destroyItem(cid, itemEx, toPosition)
	end

	return false
end
 
Back
Top Bottom