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

Lua rune

Lbtg

Intermediate OT User
Joined
Nov 22, 2008
Messages
2,311
Reaction score
132
well on 0.3.6 i got problem that wild growth rune isint dissapearing and evrywhere else it dissapears ^^ any ideas how to fix it ?



wild growth rune
PHP:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_EARTH)
setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1499)

function onCastSpell(cid, var)
    return doCombat(cid, combat, var)
end
 
Check your items.xml
If you have what I have let us know, if not copy this to it.
Code:
    <item id="1499" article="a" name="rush wood">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="45" />
    </item>
 
Check your items.xml
If you have what I have let us know, if not copy this to it.
Code:
    <item id="1499" article="a" name="rush wood">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="45" />
    </item>
i have same
Code:
    <item id="1499" article="a" name="rush wood">
        <attribute key="type" value="magicfield"/>
        <attribute key="decayTo" value="0"/>
        <attribute key="duration" value="45"/>
    </item>
 
Back
Top