Item Combo Details

Item Combo #2366

Combo Size: 3
Combo Items
Bath Administrator Card
Beta_Baths_A_Card
Enhanced Archer Skeleton Card
P_Archer_Skeleton_Card
Senior Papila Card
Papila_H_Card
Combo Effect
bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20;
bonus2 bSkillAtk,"GN_CARTCANNON",20;
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
.@r_shoes = getequiprefinerycnt(EQI_SHOES);
bonus2 bSkillAtk,"GN_CARTCANNON",5*(.@r_shoes/2);
bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5*(.@r_weapon/2);
Script References
bSkillAtk Item Bonus
bSkillAtk
Signature:
bonus2 bSkillAtk,sk,n;
Description:
Increases damage of skill sk by n%
getequiprefinerycnt Command
getequiprefinerycnt
Signature:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Description:
slot. For a list of equipment slots see 'getequipid'. Can be used to check if you have reached a maximum refine value, default for this is +10:
Example:
if (getequiprefinerycnt(EQI_HEAD_TOP) < 10)
mes "I will now upgrade your " + getequipname(EQI_HEAD_TOP);
else
mes "Sorry, it's not possible to refine hats better than +10";
close;