 |
 |
 |
HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |
|
Jan 11 2017, 23:44
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14

|
Hello.
I tried to make a search for a working item shop helper, but even the latest ones shown in the WTS don't seem to work. I do get the tag+price fields, I do get the options tab, but I cannot get any BBCode the the Mini Shop helper v1.2.5.1. Has anyone got something that works correctly around here? This one is so God damn full of errors in it.
Thanks in advance.
This post has been edited by decondelite: Jan 11 2017, 23:57
|
|
|
|
 |
|
Jan 11 2017, 23:46
|
NerfThis
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14

|
QUOTE(DJNoni @ Jan 12 2017, 02:47)  I did! Edit': yep, works like a charm on non-souldbounds. Would that be possible, to adjust this script to work for souldbound? Basically, the only difference is that the level is not known - could even be user input?
CODE item.level = data.match(/Level\s([^\s]+)/)[1];
CODE item.level = data.match(/Level\s([^\s]+)|Unassigned|Soulbound/); item.level = item.level[1] || item.level[0];
|
|
|
|
 |
|
Jan 12 2017, 00:57
|
Superlatanium
Group: Gold Star Club
Posts: 7,647
Joined: 27-November 13

|
QUOTE(DJNoni @ Jan 11 2017, 17:47)  Edit': yep, works like a charm on non-souldbounds. Would that be possible, to adjust this script to work for souldbound? Basically, the only difference is that the level is not known - could even be user input? It's a really crappy script that I never really intended to publish (it was originally part of a bigger script just for auctions) so the code/"interface" (lol) is very ugly and there might still be bugs. Try this one. It'll show the percentiles without needing to press the silly button. Many ranges have been updated due to new information. It also now takes into account forge level and IW potencies, and tries to estimate the base value of the stat. (there may be 0-10% error depending on the amount of forging/IW levels).
Percentile_Ranges_1.1.3.user.js.txt ( 14.33k )
Number of downloads: 954
|
|
|
|
 |
|
Jan 12 2017, 01:01
|
Cleavs
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07

|
QUOTE(Superlatanium @ Jan 11 2017, 23:57)  there may be 0-10% error depending on the amount of forging/IW levels
problem isn't on IW. problem is on that forge formula. but seems like we still have to find an user kind enough to take note of the values of all stats during a full forge run (IMG:[ invalid] style_emoticons/default/heh.gif)
|
|
|
|
 |
|
Jan 12 2017, 08:39
|
Noni
Group: Catgirl Camarilla
Posts: 13,543
Joined: 19-February 16

|
QUOTE(Superlatanium @ Jan 11 2017, 23:57)  It's a really crappy script that I never really intended to publish (it was originally part of a bigger script just for auctions) so the code/"interface" (lol) is very ugly and there might still be bugs. Try this one. It'll show the percentiles without needing to press the silly button. Many ranges have been updated due to new information. It also now takes into account forge level and IW potencies, and tries to estimate the base value of the stat. (there may be 0-10% error depending on the amount of forging/IW levels).
Percentile_Ranges_1.1.3.user.js.txt ( 14.33k )
Number of downloads: 954Thanks!
|
|
|
|
 |
|
Jan 12 2017, 09:44
|
-Shun-
Group: Gold Star Club
Posts: 1,318
Joined: 19-November 09

|
Testing out CC + Vanilla Reloader 1.1.1. Nothing's happening for me when hovering on enemies x_x Edit: Nvm, looks like it works if I just use CC alone Edit2: Looks like hover is working now even with vanilla enabled. Can't seem to make the right click imperil work. Maybe I'll just put it on num but it feels slower for me (IMG:[ invalid] style_emoticons/default/heh.gif) Anything from the compendium that might not be updated? Planning on adding round counter, counter plus and skip pop up. Where do I find the one that hides the HV logo? And it seems like instead of stopping the hover attacks when channeling's active, it just continues to attack enemies so I couldn't use channeling for buffs :< This post has been edited by IshimaruShun: Jan 12 2017, 11:59
|
|
|
|
 |
|
Jan 12 2017, 14:32
|
morineko
Group: Gold Star Club
Posts: 2,347
Joined: 1-April 14

|
QUOTE(hansvar92 @ Apr 27 2016, 22:53)  CracklingCast img src fix for hv v0.84 and add hover area. [attachmentid=97114] CracklingCastHelper change url when in battle[attachmentid=87999]
fix20 - fixed bug, can't detect Cloak of the Fallen when Cloak of the Fallen expire turn is 2. added checkOnlyExpire settings option for low level player. changed, (even if preferAvatarGod option set to true) always prefer Scroll of Life to Scroll of the Gods.
Hi, I traced your script and found something weird. What is the function "selectAction()" for? I found it always returns null. CODE function selectAction() { var selectSpell = document.querySelector('.btii').textContent; if (canCast(selectSpell)) { alert(selectSpell); return selectSpell; } return null; }
selectSpell gets "battle time" while hovering, but that still can not be cast. This post has been edited by morineko: Jan 12 2017, 14:50
|
|
|
|
 |
|
Jan 12 2017, 18:41
|
NerfThis
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14

|
QUOTE(morineko @ Jan 12 2017, 21:32)  Hi, I traced your script and found something weird. What is the function "selectAction()" for? I found it always returns null. CODE function selectAction() { var selectSpell = document.querySelector('.btii').textContent; if (canCast(selectSpell)) { alert(selectSpell); return selectSpell; } return null; }
selectSpell gets "battle time" while hovering, but that still can not be cast. Hi, Usually, that value is null. If you click any spell/skill, that value is set to your clicked spell/skill. And then your hoverattack or number key action cast your clicked spell/skill instead of Settings.spells.hover and Settings.spells.num. [attachembed=87987]
|
|
|
|
 |
|
Jan 13 2017, 15:00
|
morineko
Group: Gold Star Club
Posts: 2,347
Joined: 1-April 14

|
QUOTE(NerfThis @ Jan 13 2017, 00:41)  Hi, Usually, that value is null. If you click any spell/skill, that value is set to your clicked spell/skill. And then your hoverattack or number key action cast your clicked spell/skill instead of Settings.spells.hover and Settings.spells.num.
I got it. Thank you for the detailed explanation. (IMG:[ invalid] style_emoticons/default/laugh.gif) This post has been edited by morineko: Jan 13 2017, 15:00
|
|
|
|
 |
|
Jan 15 2017, 20:41
|
Epion
Group: Gold Star Club
Posts: 3,350
Joined: 20-February 08

|
I would rather avoiding a mistake by tinkering with things i don't know about. Installed CracklingCast fix20 and vanila reloader. Now about the activation of heal/potions and everything else that appears in this area:  if i hover the mouse over the area they activate. With the mousemelee i was running in the past there was the option to right click the mouse and they would activate instead. Is there a similar option for CC, or is there something that i have to change in either CC or reloader to manage this faster activation of the needed actions?
|
|
|
|
 |
|
Jan 15 2017, 20:59
|
Noni
Group: Catgirl Camarilla
Posts: 13,543
Joined: 19-February 16

|
QUOTE(Epion @ Jan 15 2017, 19:41)  I would rather avoiding a mistake by tinkering with things i don't know about. Installed CracklingCast fix20 and vanila reloader. Now about the activation of heal/potions and everything else that appears in this area:  if i hover the mouse over the area they activate. With the mousemelee i was running in the past there was the option to right click the mouse and they would activate instead. Is there a similar option for CC, or is there something that i have to change in either CC or reloader to manage this faster activation of the needed actions? Just press space
|
|
|
Jan 16 2017, 06:56
|
NerfThis
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14

|
QUOTE(DJNoni @ Jan 16 2017, 03:59)  Just press space
or mouse wheel up/down.
|
|
|
Jan 16 2017, 23:21
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14

|
I've seen a screenshot of someone using a script that logs all the items earned in an arena with a popup in the right side of the screen, and that is compatible with reloader.
Can someone tell me what it is please? I am pretty lost in my research.
|
|
|
Jan 16 2017, 23:25
|
lazyNPC
Group: Gold Star Club
Posts: 3,346
Joined: 8-June 12

|
QUOTE(decondelite @ Jan 16 2017, 22:21)  I've seen a screenshot of someone using a script that logs all the items earned in an arena with a popup in the right side of the screen, and that is compatible with reloader.
Can someone tell me what it is please? I am pretty lost in my research.
It was my screenshot. Here is it: HV Track Drop In Battle
|
|
|
Jan 17 2017, 01:00
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14

|
QUOTE(gianfrix94 @ Jan 16 2017, 22:25)  It was my screenshot. Here is it: HV Track Drop In BattleThanks.
|
|
|
Jan 17 2017, 19:21
|
akuma101
Group: Members
Posts: 319
Joined: 17-January 14

|
Can someone teach me how to use the shop highlight script. I drag it into tampermonkey but the items in the shop didn't highlight.
|
|
|
Jan 17 2017, 19:31
|
lazyNPC
Group: Gold Star Club
Posts: 3,346
Joined: 8-June 12

|
QUOTE(akuma101 @ Jan 17 2017, 18:21)  Can someone teach me how to use the shop highlight script. I drag it into tampermonkey but the items in the shop didn't highlight.
Give a link to this script you're using, or no one can help you.
|
|
|
Jan 17 2017, 22:33
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14

|
38 15 Arena Clear Bonus! [Exquisite Plate Sabatons of Dampening] 7x Trash Gear
*cough* *cough*
Would someone be able to update the HV - Track Drop in Battle so at least we can set up the line between what is trash and what isn't? Because for me Exquisite is not trash, but valuable stuff. I'd even say that rare Superiors have some value too.
|
|
|
Jan 17 2017, 22:35
|
Superlatanium
Group: Gold Star Club
Posts: 7,647
Joined: 27-November 13

|
QUOTE(decondelite @ Jan 17 2017, 20:33)  Would someone be able to update the HV - Track Drop in Battle so at least we can set up the line between what is trash and what isn't? Because for me Exquisite is not trash, but valuable stuff. I'd even say that rare Superiors have some value too. Only for self-use, at your level. Market value is pretty much nothing.
|
|
|
Jan 18 2017, 00:00
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14

|
QUOTE(Superlatanium @ Jan 17 2017, 21:35)  Only for self-use, at your level. Market value is pretty much nothing.
I've sold plenty of my stuff for more than 10k. "Nothing" doesn't fit in this. And I still prefer selling 2k than 1k to the equipment shop.
|
|
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|