Loading. Please Wait... 
 |
 |
 |
HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |
|
Nov 11 2014, 12:57
|
kumosu
Group: Members
Posts: 428
Joined: 11-July 14

|
Ugh, I tried to extract MonsterStack code from HV STAT to STAT slim, but it doesn't work. My hand's tied on this.
|
|
|
Nov 11 2014, 13:00
|
DaReaper
Newcomer
 Group: Members
Posts: 28
Joined: 24-March 10

|
QUOTE(Delques1843 @ Nov 7 2014, 14:15)  How does the HV equipment comparison work on Chrome? I am on the devs mode, but when i go to an equipment page popup via C and try to load the base stats, it gives me a loading message but thats it? Any ideas?  I got the same problem too, anyone has a fix?
|
|
|
Nov 11 2014, 13:43
|
Dead-ed
Group: Members
Posts: 3,577
Joined: 4-March 14

|
QUOTE(kumosu @ Nov 11 2014, 03:57)  Ugh, I tried to extract MonsterStack code from HV STAT to STAT slim, but it doesn't work. My hand's tied on this.
thanks for trying --------------- anybody can do this? Reward: 10 hath
|
|
|
|
 |
|
Nov 11 2014, 13:51
|
oohmrparis
Group: Gold Star Club
Posts: 524
Joined: 18-June 13

|
QUOTE(kumosu @ Nov 11 2014, 12:57)  Ugh, I tried to extract MonsterStack code from HV STAT to STAT slim, but it doesn't work. My hand's tied on this.
What's the monster stack? QUOTE(DaReaper @ Nov 11 2014, 13:00)  I got the same problem too, anyone has a fix?
↓ QUOTE(Razor320 @ Oct 18 2014, 10:31)  kazsax11, try to switch to custom font in settings.
Javascript engine doesn't throw alert boxes with exceptions by default (well, not anymore, once upon a time this was other way around), usually when something isn't work like intended and browser is responsive it means script terminated early in unusual way.
|
|
|
|
 |
|
Nov 11 2014, 14:09
|
kumosu
Group: Members
Posts: 428
Joined: 11-July 14

|
QUOTE(Dead-ed @ Nov 11 2014, 16:46)  is there any script that displays the number of stacking proc? sorry if redundant, i'm not following this thread
Dead-ed want a script that show the number of stacking proc when applied to monsters, like bleeding wound that can stack to 5. There is something similar in the old HV STAT but it's an out date script. (IMG:[ invalid] style_emoticons/default/cry.gif)
|
|
|
Nov 11 2014, 15:00
|
oohmrparis
Group: Gold Star Club
Posts: 524
Joined: 18-June 13

|
never mind.
This post has been edited by oohmrparis: Nov 11 2014, 17:09
|
|
|
Nov 11 2014, 15:36
|
kumosu
Group: Members
Posts: 428
Joined: 11-July 14

|
Thanks, a few minor bugs but it's still work. I will report it anyway: 1. Sometime the x2stack will appeared in my IA Haste icon as well. 2. If monster got stunned, Searing Skin from spike shield, PA at the same time, then the x2stack move to the Searing Skin icon, not PA. Even with bugs, it won't hinder the game play, great work (IMG:[ invalid] style_emoticons/default/smile.gif)
|
|
|
|
 |
|
Nov 11 2014, 16:36
|
Dead-ed
Group: Members
Posts: 3,577
Joined: 4-March 14

|
QUOTE(kumosu @ Nov 11 2014, 06:36)  Thanks, a few minor bugs but it's still work. I will report it anyway: 1. Sometime the x2stack will appeared in my IA Haste icon as well. 2. If monster got stunned, Searing Skin from spike shield, PA at the same time, then the x2stack move to the Searing Skin icon, not PA. Even with bugs, it won't hinder the game play, great work (IMG:[ invalid] style_emoticons/default/smile.gif) i'm away from pc today, is it working for bw?
|
|
|
Nov 11 2014, 16:49
|
kumosu
Group: Members
Posts: 428
Joined: 11-July 14

|
nvm
This post has been edited by kumosu: Nov 11 2014, 17:18
|
|
|
|
 |
|
Nov 11 2014, 17:09
|
oohmrparis
Group: Gold Star Club
Posts: 524
Joined: 18-June 13

|
while ago of the code was a mistake (IMG:[ invalid] style_emoticons/default/sad.gif) CODE if (settings.effectDurations) { var targets = $a('img[onmouseover^="battle.set_infopane_effect"]'), i = targets.length; while (i --) { var duration = targets[i].getAttribute('onmouseover').match(/, ([-\d]+)\)/); if (!duration || duration < 0) duration = '-'; else duration = duration[1]; var div = targets[i].parentNode.insertBefore(create('div'),targets[i].nextSibling); div.appendChild(create('div')).innerHTML = duration; div.className = 'duration'; } } ↓this CODE if (settings.effectDurations) { var targets = $a('img[onmouseover^="battle.set_infopane_effect"]'), i = targets.length; while (i --) { var text = targets[i].getAttribute('onmouseover'), duration = text.match(/, ([-\d]+)\)/), stack = text.match(/x\d/); if (!duration || duration < 0) duration = '-'; else duration = duration[1]; var div = targets[i].parentNode.insertBefore(create('div'), targets[i].nextSibling); div.appendChild(create('div')).innerHTML = duration; div.className = 'duration'; if (stack) { var left = targets[i].offsetLeft + 16, div2 = targets[i].parentNode.insertBefore(create('div'), div.nextSibling); div2.appendChild(create('div')).innerHTML = stack; div2.style.cssText ='position:absolute;width:12px;top:2px;left:'+left+'px;background:#FF6600;border:1px solid black;font-size:7pt;font-weight:bold;text-align:center;'; } } } Background color change (IMG:[ invalid] style_emoticons/default/tongue.gif)
|
|
|
|
 |
|
Nov 11 2014, 18:14
|
Dead-ed
Group: Members
Posts: 3,577
Joined: 4-March 14

|
QUOTE(oohmrparis @ Nov 11 2014, 08:09) 
thanks (IMG:[ invalid] style_emoticons/default/biggrin.gif) I'd love to test it. Reward sent. This post has been edited by Dead-ed: Nov 11 2014, 18:16
|
|
|
Nov 13 2014, 00:41
|
Delques1843
Newcomer
  Group: Members
Posts: 76
Joined: 21-December 13

|
QUOTE(oohmrparis @ Nov 11 2014, 08:51)  What's the monster stack? ↓
Great! It works now! Thanks!
|
|
|
|
 |
|
|
 |
|
Nov 13 2014, 09:04
|
kumosu
Group: Members
Posts: 428
Joined: 11-July 14

|
QUOTE(Dead-ed @ Nov 13 2014, 15:50)  tested & it works great. (IMG:[ invalid] style_emoticons/default/biggrin.gif) btw, how can i combine it with Owyn's Hoverplay? Just because hvstat slim has overlaping function with it, i just need the stack function. I've tried but obviously i screwed up. (IMG:[ invalid] style_emoticons/default/faint.gif) In HV STAT slim: adjustkey : true, effectDurations : true, gemIcon : true, skillHotkey : false, roundCounter : true, noPopup : true, popupTime : 000, sparkAlert : false, HPalert : true, HPpercentage : 60, MPalert : true, MPpercentage : 10, SPalert : false, SPpercentage : 1, channeling : false, turnEndborder : false, equippedSet : false Turn everything except effectDurations into false: adjustkey : false, effectDurations : true, gemIcon : false, skillHotkey : false, roundCounter : false, noPopup : false, popupTime : 000, sparkAlert : false, HPalert : false, HPpercentage : 60, MPalert : false, MPpercentage : 10, SPalert : false, SPpercentage : 1, channeling : false, turnEndborder : false, equippedSet : false Check if it work, I think the gemIcon is the main problem.. If you need something just turn value to true. This post has been edited by kumosu: Nov 13 2014, 09:11
|
|
|
|
 |
|
Nov 13 2014, 09:22
|
Dead-ed
Group: Members
Posts: 3,577
Joined: 4-March 14

|
QUOTE(kumosu @ Nov 13 2014, 00:04)  In HV STAT slim: adjustkey : true, effectDurations : true, gemIcon : true, skillHotkey : false, roundCounter : true, noPopup : true, popupTime : 000, sparkAlert : false, HPalert : true, HPpercentage : 60, MPalert : true, MPpercentage : 10, SPalert : false, SPpercentage : 1, channeling : false, turnEndborder : false, equippedSet : false
Turn everything except effectDurations into false:
adjustkey : false, effectDurations : true, gemIcon : false, skillHotkey : false, roundCounter : false, noPopup : false, popupTime : 000, sparkAlert : false, HPalert : false, HPpercentage : 60, MPalert : false, MPpercentage : 10, SPalert : false, SPpercentage : 1, channeling : false, turnEndborder : false, equippedSet : false
Check if it work, I think the gemIcon is the main problem.. If you need something just turn value to true.
I just delete them & it works (IMG:[ invalid] style_emoticons/default/tongue.gif) i like compact script
|
|
|
|
 |
|
Nov 13 2014, 10:43
|
oohmrparis
Group: Gold Star Club
Posts: 524
Joined: 18-June 13

|
QUOTE(Dead-ed @ Nov 13 2014, 08:50)  tested & it works great. (IMG:[ invalid] style_emoticons/default/biggrin.gif) btw, how can i combine it with Owyn's Hoverplay? Just because hvstat slim has overlaping function with it, i just need the stack function. I've tried but obviously i screwed up. (IMG:[ invalid] style_emoticons/default/faint.gif) need hoverplay in stack display only? with duration?
|
|
|
Nov 13 2014, 11:30
|
Dead-ed
Group: Members
Posts: 3,577
Joined: 4-March 14

|
QUOTE(oohmrparis @ Nov 13 2014, 01:43)  need hoverplay in stack display only? with duration?
stack only is enough since the procs usually get refreshed excessively.
|
|
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|
|
|