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

Anti paralyzing Rep+

youka

New Member
Joined
Jul 30, 2009
Messages
44
Reaction score
0
Is it possible to make a item that protect against paralyzing? Rep+ for you if you help me:)
 
Add this into movements.xml:
<movevent type="Equip" itemid="XXXX" slot="ring" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="XXXX" slot="ring" event="function" value="onDeEquipItem"/>
Change the XXXX to the itemID you want to use and the slot.
 
Culé? XDD Yes.

In items.xml, after the tag <item... you must write:
<attribute key="suppressparalyze" value="1"/>

EXAMPLE:
If you will use gold ring, in items.xml must be like this:
Lua:
	<item id="2179" article="a" name="gold ring">
		<attribute key="weight" value="100"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="suppressparalyze" value="1"/>
	</item>

I don't tested it, so I don't know if it will work or not.
 
Culé? XDD Yes.

In items.xml, after the tag <item... you must write:


EXAMPLE:
If you will use gold ring, in items.xml must be like this:
Lua:
	<item id="2179" article="a" name="gold ring">
		<attribute key="weight" value="100"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="suppressparalyze" value="1"/>
	</item>

I don't tested it, so I don't know if it will work or not.
Alright, thanks anyway! Hey Campion 09/10 again!!!
I like this citat from joan laporta. Joan Laporta: "We make Fifa World Players/Ballon d'ors, Madrid just Buys them."
 
Back
Top