Agathion Problem

Diabaths

Heir
Customer
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.webp
 
the problem is when i use <slot id="AGATHION_CHARM"/> then when take off the item its not unsummon the agathion
 
you are talk for this

look where is te agathion
View attachment 3799

How did you make it appear like that? I equipped mine and nothing appears :/ it becomes invisible. I put it as a <slot id="AGATHION_CHARM"/>

vk6y2jZ.jpeg
 
Last edited:
look where is te agathion
View attachment 3799
our friend here is correct....
e.x.1
suppose you make agathion, and you equip this agathion in slot: LEFT_BRACELET or RIGHT_BRACELET or BROOCH
you summon agathion: all ok. / if you want you can skip unsummon skill with -> just UNEQUIP the agathion item. -> agathion dissapears!
all ok. you can unsummon with skill or unequip agathion item.

ex2 here is the problem
suppose you make agathion, and you equip this agathion in slot: AGATHION_CHARM
to be able to equip in slot AGATHION_CHARM you first equip any item that give ability to unlock agathion slots.
so lets go make : any parent item "Agathion Bracelet" equip
on: RIGHT_BRACELET slot and give skill that unlock agathion slots....
so you go equip the agathion in slot we set earlier: AGATHION_CHARM
you summon agathion: all ok. / you use skill to unsummon agathion: all ok.
problem 1: you unequip agathion from charm slot -> agathion stay summoned.

problem 2: you unequip "Agathion Bracelet" (the one that hold agathion slots) ->all agathions unequip too -> but agathion again stay summoned.
problem 3: if unequip anything of the above, the skill: disspell agathion dissapears ( and it is right to do so) -> but agathion again stay summoned
and how i unsummon? the only way is to -> equip bracelet -> equip agathion -> use skill: disspell agathion.....

all this because of the AGATHION_CHARM slot? @Deazer

 
Last edited:
any info on this?
after all looks like a small adjustment is needed for items equiped on AGATHION_CHARM slot
it will fix the despawn of agathions or even mounts when the item is equiped there.
 
Back
Top