• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

[MOD] Anti Paralyze Ring

Syntax

Developer
Joined
Oct 10, 2007
Messages
2,890
Reaction score
458
Location
Texas
Just a simple script based on request by frankfarmer in our script thread. Script is public so enjoy.

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Anti-Paralyze Ring" version="1.0" author="Syntax" contact="otland.net" enabled="yes">
	<item id="2123" article="an" name="anti-paralyze ring" override="yes">
		<attribute key="weight" value="40"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="decayTo" value="0"/>
		<attribute key="suppressparalyze" value="1"/>
		<attribute key="duration" value="900"/>
		<attribute key="showduration" value="1"/>
	</item>
</mod>
 
Also said it was based on a request in first post...didn't wanna modify the paralyze script and go and create another script when thats much better imo. I'll stop making em if you want me to o_O?
 
works for me, my guess is your script slows their speed down aswell? post your paralyze script.
 
I might be actually wrong, but I believe that this should be also registered in movevents.

Code:
<?xml version="1.0" encoding="UTF-8"?> 
<mod name="Anti-Paralyze Ring" version="1.0" author="Syntax" contact="otland.net" enabled="yes"> 
    <item id="2123" article="an" name="anti-paralyze ring" override="yes"> 
        <attribute key="weight" value="40"/> 
        <attribute key="slotType" value="ring"/> 
        <attribute key="decayTo" value="0"/> 
        <attribute key="suppressparalyze" value="1"/> 
        <attribute key="duration" value="900"/> 
        <attribute key="showduration" value="1"/> 
    </item>
    <movevent type="Equip" itemid="2123" slot="ring" event="function" value="onEquipItem"/>
    <movevent type="DeEquip" itemid="2123" slot="ring" event="function" value="onDeEquipItem"/>
</mod>
 
Back
Top