Reisz Helmet: Difference between revisions
From Wiki | BlackoutRO
No edit summary |
No edit summary |
||
Line 37: | Line 37: | ||
|colspan="6"| | |colspan="6"| | ||
<pre> | <pre> | ||
if (checkbroclassic() >= 2) { | |||
if (readparam(bStr) >= 100) | |||
bonus(bAtkRate, 15); | |||
if (readparam(bAgi) >= 100) | |||
bonus(bSpeedRate, 15); | |||
if (readparam(bLuk) >= 100) | |||
bonus(bFlee2, 15); | |||
} | |||
else { | |||
if (checkmount() == MOUNT_NONE) | |||
bonus(bSpeedRate, 25); | |||
bonus(bAtkRate, 10); | |||
bonus(bMatkRate, 10); | |||
} | |||
</pre> | </pre> | ||
|} | |} |
Revision as of 13:17, 4 April 2018
Description |
The battle-helmet of an ancient sect of warriors, the Reisz. | ||||
---|---|---|---|---|---|
How to Obtain | Redeemed by exchanging 7 Donation Credits. | ||||
Item Class | |||||
Weight | 15 | ||||
Slots | 1 | ||||
Defense | 5 | ||||
Applicable Jobs | |||||
| |||||
Item Script | |||||
if (checkbroclassic() >= 2) { if (readparam(bStr) >= 100) bonus(bAtkRate, 15); if (readparam(bAgi) >= 100) bonus(bSpeedRate, 15); if (readparam(bLuk) >= 100) bonus(bFlee2, 15); } else { if (checkmount() == MOUNT_NONE) bonus(bSpeedRate, 25); bonus(bAtkRate, 10); bonus(bMatkRate, 10); } |