Item-Kombination #632
Kombinationsgröße: 2
Kombinationsgegenstände
Fidelity_Necklace
Black_Shiba_Inu_Hat
Kombinationseffekt
.@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; }";
Skriptreferenzen
getequiprefinerycnt
Befehl
getequiprefinerycnt
Signatur:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Beschreibung:
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:
Beispiel:
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
Gegenstandsbonus
bSPLossRate
Signatur:
bonus2 bSPLossRate,n,t;
Beschreibung:
Lose n SP every t milliseconds
bBaseAtk
Gegenstandsbonus
bBaseAtk
Signatur:
bonus bBaseAtk,n;
Beschreibung:
Basic attack power + n
specialeffect2
Befehl
specialeffect2
Signatur:
specialeffect2 <effect number>{,<send_target>{,"<Player Name>"}};
Beschreibung:
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.