Hercules Elf Bot - May 3, 2012 23:27
Originally posted by [b]frenzmu06[/b]
isnt it in renewal megingjard has a 10% bonus physical damage to boss monster when the user has 120 or above base str?
confirmation of it is
[b] 05/03/2012 - kRO Maintenance[/b]
it proves that there really is this extra bonus for renewal megingjard
This post has been edited by
frenzmu06
on May 3, 2012 23:30
Hercules Elf Bot - May 4, 2012 4:10
Originally posted by [b]sizenine[/b]
that's not a bug.. you can't expect such recent updates to be implemented already..
Hercules Elf Bot - May 4, 2012 13:39
Originally posted by [b]ForteXX[/b]
Thats not a new effect, the update says tht they fixed it not working. The effect itself was added long ago.
Hercules Elf Bot - May 5, 2012 6:03
Originally posted by [b]frenzmu06[/b]
@forteXX yup your right it was added long time ago i think somewhat from the beginning of renewal, so it should be already on the database
@sizenine i was just pointing out "[b]05/03/2012 - kRO Maintenance" [/b]as a reference that will prove that there is an extra 10% bonus damage to boss from megingjard. I am not saying that they just recently added this bonus in the [b]"05/03/2012 - kRO Maintenance[/b]" and asking to add it immediately on the svn
hope that makes all clear
This post has been edited by
frenzmu06
on May 5, 2012 8:13
Hercules Elf Bot - Jun 9, 2012 17:20
Originally posted by [b]Kenpachi[/b]
Fixed in [rev=16245].
Hercules Elf Bot - Jun 9, 2012 21:18
Originally posted by [b]EvilPuncker[/b]
the correct is
if(readparam(bStr)[b][color=#00ff00]>=[/color][/b]120)
and not
if(readparam(bStr)[b][color=#ff0000]==[/color][/b]120)
Hercules Elf Bot - Jun 9, 2012 21:25
Originally posted by [b]Kenpachi[/b]
You (the description) are wrong:[CODE]
item Magingiorde
event OnStartEquip:
var temp = get[VAR_CLEVEL] / 5
AddExtParam User VAR_STRAMOUNT temp
if (get[VAR_STANDARD_STR] == 120)
ClassAddDamage 1 Target 10
endif
return
event OnFinishEquip:
var temp = get[VAR_CLEVEL] / 5
SubExtParam User VAR_STRAMOUNT temp
if (get[VAR_STANDARD_STR] == 120)
ClassSubDamage 1 Target 10
endif
return
[/CODE]
I know that's stupid, but that's how it is.
This post has been edited by
Kenpachi
on Jun 9, 2012 21:26
Hercules Elf Bot - Jun 9, 2012 21:33
Originally posted by [b]EvilPuncker[/b]
okay then, but can you show me 4236 item script just out of curiosity
Hercules Elf Bot - Jun 9, 2012 21:41
Originally posted by [b]Kenpachi[/b]
Even though it's not related to the bug:[CODE]
item Amon_Ra_Card
event OnStartEquip:
AddExtParam User VAR_STRAMOUNT 1
AddExtParam User VAR_INTAMOUNT 1
AddExtParam User VAR_DEXAMOUNT 1
AddExtParam User VAR_AGIAMOUNT 1
AddExtParam User VAR_LUKAMOUNT 1
AddExtParam User VAR_VITAMOUNT 1
SetAutoSpell_MLEATKED User PR_KYRIE 10 30
if (get[VAR_STANDARD_INT] > 98)
SetAutoSpell_MLEATKED User PR_KYRIE 10 100
endif
return
event OnFinishEquip:
SubExtParam User VAR_STRAMOUNT 1
SubExtParam User VAR_INTAMOUNT 1
SubExtParam User VAR_DEXAMOUNT 1
SubExtParam User VAR_AGIAMOUNT 1
SubExtParam User VAR_LUKAMOUNT 1
SubExtParam User VAR_VITAMOUNT 1
SetAutoSpell_MLEATKED User PR_KYRIE 0 0
return
[/CODE]