Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #008678

  • 0 - None Assigned

  • Fixed

Issue Confirmations

  • Yes (0)No (0)
Photo

CD in Mouth (#18666)

Posted by Shourei on 14 May 2015 - 07:53 PM

Greetings. According to RMS, CD in mouth supposedly give the following effect:

http://ratemyserver....&isearch=Search
"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:
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;','','');
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?
'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;','','',''
Please excuse my noob scripting (It's my first one)
Thanks in advance!

-SH

change ,5, to ,rand(1,5),  so its lvl will be random

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

changed status to: Confirmed

Level is 3 not random.

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

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.

anyone, mind posting the correct script?

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;
^ 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,

*I can confirm the autobonus, because I have that cd in IRO

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; }";
Works just fine, crazy stuff though.

^
The description says OR not AND,
that will too OP if we use AND, i remember the effect was not that crazy

Edited by zackdreaver, 22 May 2015 - 06:55 PM.


Do we even have functions to randomize that though?

hmm.. maybe not
your skill rate...was 100% that's why...
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; }";


It is supposed to be 100% once it procs, being an autobonus and all.

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

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

Watching some kRO videos, it does seem to have the crazy autocast everything at once effect.

KRO don't have this item (18666)

Official Aegis script:
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


Official Aegis script:

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

And its equivalent script is posted above.

Yup so you can add it to the git =D