Shourei - May 14, 2015 19:53
Greetings. According to RMS, CD in mouth supposedly give the following effect:
[url="http://ratemyserver.net/index.php?iname=18666&page=re_item_db&quick=1&isearch=Search"]http://ratemyserver.net/index.php?iname=18666&page=re_item_db&quick=1&isearch=Search[/url]
"Burn away as you hold this CD in our mouth.
While attacking has a 6% chance of activating for 5 seconds a random level 1-5 [Fire Bolt] [Cold Bolt] [Lightning Bolt] [Earth Spike] or [Soul Strike] on your target."
Meanwhile the itemdb_re noted that:[code=auto:0]REPLACE INTO `item_db` VALUES ('18666','CD_In_Mouth','CD In Mouth','5','20','10','150','0','0','0','0','0','4294967295','63','2','1','0','10',NULL,'0','815','0','0','0','0',NULL,'0',NULL,'0',NULL,'0','bonus bHit,5; bonus bAspdRate,-1;','','');[/code]I would like to confirm if it's accurate.
In the case if it's not, I attempted to script it, Can anyone please check if it's correct?[code=auto:0]'autobonus "{
bonus4 bAutoSpell,"MG_FIREBOLT",5,20,3;
bonus4 bAutoSpell,"MG_COLDBOLT",5,20,3;
bonus4 bAutoSpell,"MG_LIGHTNINGBOLT"5,20,3;bonus4 bAutoSpell,"WZ_EARTHSPIKE",5,20,3;
bonus4 AutoSpell,"MG_SOULSTRIKE",5,20,3;}",
60,5000,BF_NORMAL;','','',''[/code]Please excuse my noob scripting (It's my first one)
Thanks in advance!
-SH
This post has been edited by
Shourei
on May 14, 2015 23:28
evilpuncker - May 14, 2015 20:21
change [color=#ff0000],5,[/color] to [color=#ff0000],rand(1,5), [/color][color=#000000]so its lvl will be random[/color]
zackdreaver - May 15, 2015 4:27
Want this to be added in my PR?
but it will not soon too be merged... there are still many things to add in my PR
Dastgir - May 15, 2015 4:42
Level is 3 not random.
Shourei - May 15, 2015 6:49
Thank you for those that replied and confirmed.
Looks like I'm still a long way to go.
I'll be looking forward to the fix to see how close I am.
-SH
Anisotropic Defixation - May 15, 2015 16:56
Actually, this correct way to do this would be autobonus that enables you to autocasts all those bolts at once at 100% chance for 5 seconds once it procs.
zackdreaver - May 15, 2015 17:28
anyone, mind posting the correct script?
Dastgir - May 15, 2015 17:38
[code=auto:0]bonus3 bAutoSpell,MG_COLDBOLT,3,30;
bonus3 bAutoSpell,MG_SOULSTRIKE,3, 30;
bonus3 bAutoSpell,WZ_EARTHSPIKE,3,30;
bonus3 bAutoSpell,MG_FIREBOLT,3,30;
bonus3 bAutoSpell,MG_LIGHTNINGBOLT,3,30;[/code]^ According to aegis translation.
(Also we don't rely on RMS description, if you have description from kRO or video to prove that description, then that will be coded, else @zackdreaver , you can include above bonus in your PR)
No need of autobonus,
This post has been edited by
Dastgir
on May 15, 2015 17:40
zackdreaver - May 15, 2015 17:47
*I can confirm the autobonus, because I have that cd in IRO
Anisotropic Defixation - May 15, 2015 20:34
[code=auto:0]
autobonus "{ bonus5 bAutoSpell,MG_FIREBOLT,rand(1,5),1000,BF_WEAPON,1; bonus5 bAutoSpell,MG_COLDBOLT,rand(1,5),1000,BF_WEAPON,1; bonus5 bAutoSpell,MG_LIGHTNINGBOLT,rand(1,5),1000,BF_WEAPON,1; bonus5 bAutoSpell,WZ_EARTHSPIKE,rand(1,5),1000,BF_WEAPON,1; bonus5 bAutoSpell,MG_SOULSTRIKE,rand(1,5),1000,BF_WEAPON,1; }",60,5000,BF_WEAPON,"{ specialeffect2 EF_NONE; }";
[/code]Works just fine, crazy stuff though.
zackdreaver - May 22, 2015 18:54
^
The description says OR not AND,
that will too OP if we use AND, i remember the effect was not that crazy
This post has been edited by
zackdreaver
on May 22, 2015 18:55
Anisotropic Defixation - May 23, 2015 1:57
Do we even have functions to randomize that though?
zackdreaver - May 23, 2015 4:32
hmm.. maybe not
your skill rate...was 100% that's why...[code=auto:0]
autobonus "{ bonus5 bAutoSpell,MG_FIREBOLT,rand(1,5),60,BF_WEAPON,1; bonus5 bAutoSpell,MG_COLDBOLT,rand(1,5),60,BF_WEAPON,1; bonus5 bAutoSpell,MG_LIGHTNINGBOLT,rand(1,5),60,BF_WEAPON,1; bonus5 bAutoSpell,WZ_EARTHSPIKE,rand(1,5),60,BF_WEAPON,1; bonus5 bAutoSpell,MG_SOULSTRIKE,rand(1,5),60,BF_WEAPON,1; }",60,5000,BF_WEAPON,"{ specialeffect2 EF_NONE; }";
[/code]
Anisotropic Defixation - May 23, 2015 9:52
It is supposed to be 100% once it procs, being an autobonus and all.
zackdreaver - May 23, 2015 10:03
i changed all skill rate to 6%
now i believe its closer like the effect i remember when using it with my 181 aspd RG
Dastgir - May 23, 2015 13:42
OK, back to report, current one is from jRO, RMS shows iro, kRO don't have any info.
And our aegis shoes something else.
Waiting for Haru to confirm which one we should use
Anisotropic Defixation - May 23, 2015 16:08
Watching some kRO videos, it does seem to have the crazy autocast everything at once effect.
zackdreaver - May 23, 2015 17:01
KRO don't have this item (18666)
Michi - May 24, 2015 10:07
Official Aegis script:
[code=auto:0]
item CD_In_Mouth
event OnStartEquip:
SetAutoSpell2 Target MG_COLDBOLT 3 30
SetAutoSpell2 Target MG_SOULSTRIKE 3 30
SetAutoSpell2 Target WZ_EARTHSPIKE 3 30
SetAutoSpell2 Target MG_FIREBOLT 3 30
SetAutoSpell2 Target MG_LIGHTNINGBOLT 3 30
return
event OnFinishEquip:
ResetAutoSpell2 Target MG_COLDBOLT
ResetAutoSpell2 Target MG_LIGHTNINGBOLT
ResetAutoSpell2 Target MG_FIREBOLT
ResetAutoSpell2 Target WZ_EARTHSPIKE
ResetAutoSpell2 Target MG_SOULSTRIKE
return
[/code]
Dastgir - May 24, 2015 15:53
[quote name="Michi" timestamp="1432462052"]
Official Aegis script:
[code=auto:0]item CD_In_Mouth event OnStartEquip: SetAutoSpell2 Target MG_COLDBOLT 3 30 SetAutoSpell2 Target MG_SOULSTRIKE 3 30 SetAutoSpell2 Target WZ_EARTHSPIKE 3 30 SetAutoSpell2 Target MG_FIREBOLT 3 30 SetAutoSpell2 Target MG_LIGHTNINGBOLT 3 30 return event OnFinishEquip: ResetAutoSpell2 Target MG_COLDBOLT ResetAutoSpell2 Target MG_LIGHTNINGBOLT ResetAutoSpell2 Target MG_FIREBOLT ResetAutoSpell2 Target WZ_EARTHSPIKE ResetAutoSpell2 Target MG_SOULSTRIKE return[/code][/quote]And its equivalent script is posted above.
Michi - May 25, 2015 13:24
Yup so you can add it to the git =D
zackdreaver - Jun 12, 2015 16:00
Fixed
[url="https://github.com/HerculesWS/Hercules/commit/7d8eccfafeaf591298684c8e97ae934b7fc3674e"]https://github.com/HerculesWS/Hercules/commit/7d8eccfafeaf591298684c8e97ae934b7fc3674e[/url]