Combo de Objetos Detalles

Combo de Objetos #632

Tamaño del Combo: 2
Objetos del Combo
Fidelity Necklace [1]
Fidelity_Necklace
Black Shiba Inu Hat [1]
Black_Shiba_Inu_Hat
Efecto del 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; }";
Referencias del Script
getequiprefinerycnt Comando
getequiprefinerycnt
Firma:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Descripción:
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:
Ejemplo:
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 Bono de Ítem
bSPLossRate
Firma:
bonus2 bSPLossRate,n,t;
Descripción:
Lose n SP every t milliseconds
bBaseAtk Bono de Ítem
bBaseAtk
Firma:
bonus bBaseAtk,n;
Descripción:
Basic attack power + n
specialeffect2 Comando
specialeffect2
Firma:
specialeffect2 <effect number>{,<send_target>{,"<Player Name>"}};
Descripción:
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.