QUOTE(abc12345678901 @ Jun 24 2017, 15:05)
Ok so I'm retarded and have limited knowledge on coding, im assuming (?) this is a replacement for hover play, so how would do I change the skills it uses? tried it out on a RE and it looks like i casted smite of all things (im a dark mage)?? It killed the chat box so I cant tell what my previous actions were. Could anyone guide me through how to use this one if possible? Regardless if anyone can or not though, thank you very much for the work you put into this.
In the code there's this line:
var defaultAction = [0]; //0 for melee
When coding, coders user // to leave comments and guides for other coders or people using the code.
Then, like the comment says, just change the numbers inside the [] to 0 if you are using melee.
If you want other spells, then idk. :/
+EditI went in the CracklingCast code, and there's all these numbers:
"Scan" : [1, 'magic', -1, 1011],
"FUS RO DAH" : [1, 'magic', -1, 1101],
"Orbital Friendship Cannon": [1, 'magic', -1, 1111],
"Skyward Sword" : [1, 'magic', -1, 2101],
"Shield Bash" : [1, 'magic', -1, 2201],
"Vital Strike" : [1, 'magic', -1, 2202],
"Merciful Blow" : [1, 'magic', -1, 2203],
"Great Cleave" : [1, 'magic', -1, 2301],
"Rending Blow" : [1, 'magic', -1, 2302],
"Shatter Strike" : [1, 'magic', -1, 2303],
"Iris Strike" : [1, 'magic', -1, 2401],
"Backstab" : [1, 'magic', -1, 2402],
"Frenzied Blows" : [1, 'magic', -1, 2403],
"Concussive Strike": [1, 'magic', -1, 2501],
"Fiery Blast" : [1, 'magic', -1, 111],
"Inferno" : [1, 'magic', -1, 112],
"Flames of Loki" : [1, 'magic', -1, 113],
"Freeze" : [1, 'magic', -1, 121],
"Blizzard" : [1, 'magic', -1, 122],
"Fimbulvetr" : [1, 'magic', -1, 123],
"Shockblast" : [1, 'magic', -1, 131],
"Chained Lightning": [1, 'magic', -1, 132],
"Wrath of Thor" : [1, 'magic', -1, 133],
"Gale" : [1, 'magic', -1, 141],
"Downburst" : [1, 'magic', -1, 142],
"Storms of Njord" : [1, 'magic', -1, 143],
"Smite" : [1, 'magic', -1, 151],
"Banishment" : [1, 'magic', -1, 152],
"Paradise Lost" : [1, 'magic', -1, 153],
"Corruption" : [1, 'magic', -1, 161],
"Disintegrate" : [1, 'magic', -1, 162],
"Ragnarok" : [1, 'magic', -1, 163],
"Drain" : [1, 'magic', -1, 211],
"Weaken" : [1, 'magic', -1, 212],
"Imperil": [1, 'magic', -1, 213],
"Slow" : [1, 'magic', -1, 221],
"Sleep" : [1, 'magic', -1, 222],
"Confuse": [1, 'magic', -1, 223],
"Blind" : [1, 'magic', -1, 231],
"Silence": [1, 'magic', -1, 232],
"MagNet" : [1, 'magic', -1, 233],
"Cure" : [1, 'magic', 0, 311],
"Regen" : [1, 'magic', 0, 312],
"Full-Cure": [1, 'magic', 0, 313],
"Protection" : [1, 'magic', 0, 411],
"Haste" : [1, 'magic', 0, 412],
"Shadow Veil" : [1, 'magic', 0, 413],
"Absorb" : [1, 'magic', 0, 421],
"Spark of Life": [1, 'magic', 0, 422],
"Spirit Shield": [1, 'magic', 0, 423],
"Heartseeker" : [1, 'magic', 0, 431],
"Arcane Focus" : [1, 'magic', 0, 432]
The third number inside the [] should be the key for each, spell, so just change the chain sequence in the way that best suits you.
Example:
Fire Mage: [113, 112, 111]
Dark Mage: [163, 162, 161]
This post has been edited by Kinights: Jun 24 2017, 20:19