• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved How can i increase the duration of a magic wall?

Cris2387

Member
Joined
Dec 30, 2013
Messages
177
Reaction score
9
in my server the magic wall lasts for about 20 seconds, so does my wild growth rune, how can i increase the duration of my wild growth rune? i want it to be 40 instead of 20, and also i dont want the wild growth rune to be destroyed by destroy field rune i want it to be destroyed by a machete or a custom tool ill make later :) how can i do that? thank you
 
just change the duration in the magicwall rune and wild growth spell scripts.. as for the machette you'll need to add the exception in the destroy field rune.
 
I may be wrong but you need to edit the magic wall item at items.xml to adjust the duration and not the spell

yeah my bad thats what i meant... its monday in australia leave me alone... here is the code. in /data/items/items.xml


Code:
    <item id="1497" article="a" name="magic wall">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="20" />
    </item>
 
yeah my bad thats what i meant... its monday in australia leave me alone... here is the code. in /data/items/items.xml


Code:
    <item id="1497" article="a" name="magic wall">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="0" />
        <attribute key="duration" value="20" />
    </item>
thank you, you helped a lot
 
Back
Top