Combo d'Objets Détails

Combo d'Objets #632

Taille du Combo: 2
Objets du Combo
Fidelity Necklace [1]
Fidelity_Necklace
Black Shiba Inu Hat [1]
Black_Shiba_Inu_Hat
Effet du Combo
.@r = 3+(3*getequiprefinerycnt(EQI_HEAD_TOP));
autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,30; }",.@r,5000,BF_WEAPON,"{ transform 1785,5000; specialeffect2 EF_POTION_BERSERK; }";
autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,30; }",.@r,5000,BF_WEAPON,"{ transform 1785,5000; specialeffect2 EF_POTION_BERSERK; }";
Références du Script
getequiprefinerycnt Commande
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:
Exemple:
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;
bSPLossRate Bonus d’Objet
bSPLossRate
Signature:
bonus2 bSPLossRate,n,t;
Description:
Lose n SP every t milliseconds
bBaseAtk Bonus d’Objet
bBaseAtk
Signature:
bonus bBaseAtk,n;
Description:
Basic attack power + n
specialeffect2 Commande
specialeffect2
Signature:
specialeffect2 <effect number>{,<send_target>{,"<Player Name>"}};
Description:
This command behaves identically to 'specialeffect', but the effect will be centered on the invoking character's sprite. <Player name> parameter will display <effect number> on another Player than the one currently attached to the script. Like with specialeffect, when specifying a player, <send_target> must be supplied, specifying AREA will retain the default behavior of the command.