Welcome Guest ( Log In | Register )

291 Pages V « < 173 174 175 176 > »   
Reply to this topicStart new topic
> HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd)

 
post Jan 11 2017, 23:44
Post #3476
KitsuneAbby



Curse God of the Hentai Shrine
**********
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14
Level 500 (Ponyslayer)


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
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 11 2017, 23:46
Post #3477
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


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];
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 12 2017, 00:57
Post #3478
Superlatanium



Dreaming of optimizing the system
**********
Group: Gold Star Club
Posts: 7,647
Joined: 27-November 13
Level 500 (Godslayer)


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).

Attached File  Percentile_Ranges_1.1.3.user.js.txt ( 14.33k ) Number of downloads: 954
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 12 2017, 01:01
Post #3479
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07
Level 500 (Ponyslayer)


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)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 12 2017, 08:39
Post #3480
Noni



Hataraku Noni-sama
***********
Group: Catgirl Camarilla
Posts: 13,543
Joined: 19-February 16
Level 500 (Ponyslayer)


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).

Attached File  Percentile_Ranges_1.1.3.user.js.txt ( 14.33k ) Number of downloads: 954



Thanks!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 12 2017, 09:44
Post #3481
-Shun-



Veteran Newbie
*******
Group: Gold Star Club
Posts: 1,318
Joined: 19-November 09
Level 500 (Godslayer)


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
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 12 2017, 14:32
Post #3482
morineko



Active Poster
*******
Group: Gold Star Club
Posts: 2,347
Joined: 1-April 14
Level 500 (Godslayer)


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
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 12 2017, 18:41
Post #3483
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


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]
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 13 2017, 15:00
Post #3484
morineko



Active Poster
*******
Group: Gold Star Club
Posts: 2,347
Joined: 1-April 14
Level 500 (Godslayer)


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
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 15 2017, 20:41
Post #3485
Epion



I'm responsible for what I say. Not for what YOU understand.
********
Group: Gold Star Club
Posts: 3,350
Joined: 20-February 08
Level 500 (Godslayer)


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:

Attached Image

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?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 15 2017, 20:59
Post #3486
Noni



Hataraku Noni-sama
***********
Group: Catgirl Camarilla
Posts: 13,543
Joined: 19-February 16
Level 500 (Ponyslayer)


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:

Attached Image

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
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 16 2017, 06:56
Post #3487
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


QUOTE(DJNoni @ Jan 16 2017, 03:59) *

Just press space

or mouse wheel up/down.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 16 2017, 23:21
Post #3488
KitsuneAbby



Curse God of the Hentai Shrine
**********
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14
Level 500 (Ponyslayer)


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.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 16 2017, 23:25
Post #3489
lazyNPC



├┬┴┬┴┤(・_├┬┴┬┴┤
********
Group: Gold Star Club
Posts: 3,346
Joined: 8-June 12
Level 500 (Godslayer)


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
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 17 2017, 01:00
Post #3490
KitsuneAbby



Curse God of the Hentai Shrine
**********
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14
Level 500 (Ponyslayer)


QUOTE(gianfrix94 @ Jan 16 2017, 22:25) *

It was my screenshot.
Here is it: HV Track Drop In Battle


Thanks.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 17 2017, 19:21
Post #3491
akuma101



Casual Poster
****
Group: Members
Posts: 319
Joined: 17-January 14
Level 381 (Godslayer)


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.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 17 2017, 19:31
Post #3492
lazyNPC



├┬┴┬┴┤(・_├┬┴┬┴┤
********
Group: Gold Star Club
Posts: 3,346
Joined: 8-June 12
Level 500 (Godslayer)


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.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 17 2017, 22:33
Post #3493
KitsuneAbby



Curse God of the Hentai Shrine
**********
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14
Level 500 (Ponyslayer)


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.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 17 2017, 22:35
Post #3494
Superlatanium



Dreaming of optimizing the system
**********
Group: Gold Star Club
Posts: 7,647
Joined: 27-November 13
Level 500 (Godslayer)


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.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 18 2017, 00:00
Post #3495
KitsuneAbby



Curse God of the Hentai Shrine
**********
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14
Level 500 (Ponyslayer)


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.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 173 174 175 176 > » 
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 24th September 2025 - 09:21