Issue information

Issue ID
#1919
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jul 25, 2008 14:28
Last Post
Hercules Elf Bot
Mar 5, 2012 8:51
Confirmation
N/A

Hercules Elf Bot - Jul 25, 2008 14:28

Originally posted by [b]BrianL[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=1919

The current item script for Luna Bow is:
CODE
1723,Luna_Bow,Luna Bow,4,,10,2000,100,,5,2,0x00000800,7,2,34,3,30,1,11,{ bonus bDef,2+3*(getrefine()>9)+(getrefine()>6 && getrefine()<=9); if(isequipped(2718)) bonus bDex,1; bonus bMaxSP,05; bonus bSPrecovRate,10; },{},{}


Based on this information in RO Future Wiki - Lunatic Brooch [1]
the bonus DEX + 1, SP + 50, SP Regen Rate + 10% is with the combo (Luna Bow + Lunatic Brooch).

And based on this iRO description and this description Luna Bow [2] "DEF +5 if upgraded to +9".
Right now, the item script only gives it for refine +10, due to "getrefine()>9"

So there should be curly brackets around that part, and also a 50 instead of 05:
QUOTE
1723,Luna_Bow,Luna Bow,4,,10,2000,100,,5,2,0x00000800,7,2,34,3,30,1,11,{ bonus bDef,2+3*(getrefine()>=9)+(getrefine()>6 && getrefine()<9); if(isequipped(2718)) { bonus bDex,1; bonus bMaxSP,50; bonus bSPrecovRate,10; } },{},{}


This post has been edited by brianlew: Jul 25 2008, 07:56 AM