Agathion Problem

hello all

i have create an item that let me wear a agathion in agathion slot
<armor id="9900" name="Agathion Bracelet lvl-1">
<set name="freightable" value="true"/>
<set name="crystal_type" value="NONE"/>
<set name="dropable" value="false"/>
<set name="icon" value="BranchSys.icon.br_aga_pegasus_i00"/>
<set name="sellable" value="false"/>
<set name="tradeable" value="false"/>
<set name="type" value="NONE"/>
<set name="weight" value="150"/>
<equip>
<slot id="LEFT_BRACELET"/>
</equip>
<skills>
<skill id="8300" level="1"/>
</skills>
</armor>

the skill for this item is
<skill id="8300" levels="4" name="Agathion Bracelet lvl-1">
<set name="icon" val="BranchSys.icon.br_aga_pegasus_i00" />
<table name="#limits">4 4 4 4</table>
<table name="#hp">500 1000 1500 2000</table>
<table name="#mp">500 1000 1500 2000</table>
<table name="#cp">500 1000 1500 2000</table>
<set name="magicLevel" val="40" />
<set name="target" val="TARGET_SELF" />
<set name="skillType" val="BUFF" />
<set name="operateType" val="OP_PASSIVE" />
<for>
<add order="0x40" stat="agathionCharnLimit" val="#limits" />
<add order="0x40" stat="maxHp" val="#hp" />
<add order="0x40" stat="maxMp" val="#mp" />
<add order="0x40" stat="maxCp" val="#cp" />
</for>
</skill>
and i have an agathion
<armor id="70410" name="Agathion Seal Bracelet - Red Opera">
<set name="freightable" value="true"/>
<set name="crystal_type" value="NONE"/>
<set name="dropable" value="false"/>
<set name="icon" value="BranchSys.icon.br_aga_warriorgod_i00"/>
<set name="sellable" value="false"/>
<set name="tradeable" value="false"/>
<set name="type" value="NONE"/>
<set name="weight" value="150"/>
<equip>
<slot id="AGATHION_CHARM"/>
</equip>
<skills>
<skill id="3267" level="1"/>
<skill id="55425" level="1"/>
<skill id="55449" level="1"/>
</skills>
</armor>

all work good with 1 problem when take of the item 9900 its remove and the agation 70410 but its not unsummon the agathion if i have summon it !
 
hello all

i have create an item that let me wear a agathion in agathion slot


the skill for this item is

and i have an agathion


all work good with 1 problem when take of the item 9900 its remove and the agation 70410 but its not unsummon the agathion if i have summon it !
"Agathion unseal" это отдельный скилл, поищи в аналогичных итемах
 
"Agathion unseal" это отдельный скилл, поищи в аналогичных итемах
you are talk for this
<skill id="3267" levels="1" name="Dismiss Agathion">
<!-- NOT EXISTS -->
<!--
Last modify: 12.12.2007

Description: Dismiss a summoned Agathion.
-->
<set name="magicType" val="SPECIAL"/>
<set name="icon" val="icon.etc_unsummon_aga_agit_i01"/>
<set name="magicLevel" val="65"/>
<set name="hitTime" val="3000"/>
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="SUMMON"/>
<set name="operateType" val="OP_ACTIVE"/>
<set name="isReuseDelayPermanent" val="true"/>
<set name="useSS" val="false"/>
<set name="npcId" val="0"/>
<set name="summonType" val="agathion"/>
<cond msgId="2292">
<player agathion="-1"/>
</cond>
</skill>
look where is te agathion
1713555755422.png
 
Back
Top