Welcome Guest ( Log In | Register )

291 Pages V « < 180 181 182 183 > »   
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 28 2017, 18:52
Post #3607
amped



Experienced Editor and Translator
****
Group: Gold Star Club
Posts: 406
Joined: 12-August 10
Level 500 (Ponyslayer)


QUOTE(Mahiro-kyun @ Jan 28 2017, 07:26) *

Are you perhaps using a chromium-based browser without tampermonkey? Because I had the same problem when I switched to Iron and tried to install scripts directly. Installing the script through tampermonkey solved everything.


I'm using firefox so I installed it through greasemonkey.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 28 2017, 19:18
Post #3608
lazyNPC



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


QUOTE(simrock87 @ Jan 28 2017, 13:18) *

While it does seem to work from looking at it, i'm pretty sure it's bad practice. The usual approach would have been to just move them outside of scope and define them outside of loops, functions and so on, or as (i think it was sapo) did in 1.4 to move them to a utility obj.

It probably is bad practice, but i have to say i don't really care right now, as long as it works well (IMG:[invalid] style_emoticons/default/heh.gif)
Once i decide to refactor it all (not so soon), i'll fix it (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 28 2017, 19:20
Post #3609
RoadShoe



Press any key to continue... Where's the any key?
********
Group: Catgirl Camarilla
Posts: 3,241
Joined: 9-August 15
Level 500 (Godslayer)


I am a very weak mage and I use a LOT of mana.

Therefore, the channeling buff is driving me insane with the constant stops.

How do I loop " stopWhenChanneling : true, // Stop if you have channeling buff"?
(CC 1.0.3)

I want it to trigger a stop like every 4th or 5th time it comes up.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 28 2017, 19:44
Post #3610
simrock87



<('.'<) (>'.')> (^'.')>
*****
Group: Members
Posts: 647
Joined: 12-June 11
Level 399 (Godslayer)


QUOTE(RoadShoe @ Jan 28 2017, 17:20) *
I want it to trigger a stop like every 4th or 5th time it comes up.

I won't say you can't, i'll just say it's not allowed by the rules.
Stopping on channeling itself is technically already a bit dicey, adding even more logic might lead to the whole thing becoming ban-able.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 28 2017, 19:45
Post #3611
lazyNPC



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


QUOTE(RoadShoe @ Jan 28 2017, 18:20) *

I am a very weak mage and I use a LOT of mana.

Therefore, the channeling buff is driving me insane with the constant stops.

How do I loop " stopWhenChanneling : true, // Stop if you have channeling buff"?
(CC 1.0.3)

I want it to trigger a stop like every 4th or 5th time it comes up.

You'd have to change the stop when channelling function by adding a counter in local storage and after 4 or 5 times it hits that function you make it go on in the function and reset the counter instead of returning.
But i have to say that's a plain bad idea man (and i'm not sure if it's a allowed thing) (IMG:[invalid] style_emoticons/default/heh.gif)

This post has been edited by gianfrix94: Jan 28 2017, 19:46
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 28 2017, 21:56
Post #3612
RoadShoe



Press any key to continue... Where's the any key?
********
Group: Catgirl Camarilla
Posts: 3,241
Joined: 9-August 15
Level 500 (Godslayer)


QUOTE(simrock87 @ Jan 28 2017, 09:44) *

I won't say you can't, i'll just say it's not allowed by the rules.
Stopping on channeling itself is technically already a bit dicey, adding even more logic might lead to the whole thing becoming ban-able.



QUOTE(gianfrix94 @ Jan 28 2017, 09:45) *

You'd have to change the stop when channelling function by adding a counter in local storage and after 4 or 5 times it hits that function you make it go on in the function and reset the counter instead of returning.
But i have to say that's a plain bad idea man (and i'm not sure if it's a allowed thing) (IMG:[invalid] style_emoticons/default/heh.gif)



oops...

I wasn't thinking about the ban part.

I'm walking away from the idea now.... not looking back. (IMG:[invalid] style_emoticons/default/unsure.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 28 2017, 22:05
Post #3613
simrock87



<('.'<) (>'.')> (^'.')>
*****
Group: Members
Posts: 647
Joined: 12-June 11
Level 399 (Godslayer)


QUOTE(RoadShoe @ Jan 28 2017, 19:56) *

I'm walking away from the idea now.... not looking back. (IMG:[invalid] style_emoticons/default/unsure.gif)

Don't worry, i've scrapped a couple scripts after 5-10h coding before i noticed they wouldn't be compliant ... i don't think anyone got sent on vacation for ideas, yet.

TBH, i've just set stopOnChanneling to false for maging, am happy for bonus damage from channeling and just swallow the 20 potions extra a day (IMG:[invalid] style_emoticons/default/happy.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 28 2017, 23:03
Post #3614
KitsuneAbby



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


QUOTE(RoadShoe @ Jan 28 2017, 18:20) *

I am a very weak mage and I use a LOT of mana.

Therefore, the channeling buff is driving me insane with the constant stops.

How do I loop " stopWhenChanneling : true, // Stop if you have channeling buff"?
(CC 1.0.3)

I want it to trigger a stop like every 4th or 5th time it comes up.


That's simply not allowed because it then becomes a script that decides what to do instead of you. It's called automation.

But unlike what the others said, stopping the mousemelee when Channeling pops up is perfectly okay: in the normal gameplay you're always stopped between all actions anyway, and it's still up to you to decide to keep on attacking or to use the Channeling.
What would be forbidden, would be auto-casting a certain spell (or even a rotation) when Channeling pops up.

You all have to keep in mind that what we're allowed to use are scripts that soften our gameplay, but nothing more.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 01:05
Post #3615
RoadShoe



Press any key to continue... Where's the any key?
********
Group: Catgirl Camarilla
Posts: 3,241
Joined: 9-August 15
Level 500 (Godslayer)


QUOTE(simrock87 @ Jan 28 2017, 12:05) *

Don't worry, i've scrapped a couple scripts after 5-10h coding before i noticed they wouldn't be compliant ... i don't think anyone got sent on vacation for ideas, yet.

TBH, i've just set stopOnChanneling to false for maging, am happy for bonus damage from channeling and just swallow the 20 potions extra a day (IMG:[invalid] style_emoticons/default/happy.gif)


The potions are so cheap anyway. yep.. I think I'll set it to false and see how that works out.

QUOTE(decondelite @ Jan 28 2017, 13:03) *

That's simply not allowed because it then becomes a script that decides what to do instead of you. It's called automation.

But unlike what the others said, stopping the mousemelee when Channeling pops up is perfectly okay: in the normal gameplay you're always stopped between all actions anyway, and it's still up to you to decide to keep on attacking or to use the Channeling.
What would be forbidden, would be auto-casting a certain spell (or even a rotation) when Channeling pops up.

You all have to keep in mind that what we're allowed to use are scripts that soften our gameplay, but nothing more.


ditto (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 14:27
Post #3616
Maximum_Carnage



There is only carnage !!!
******
Group: Gold Star Club
Posts: 792
Joined: 27-October 09
Level 500 (Ponyslayer)


Can somebody help with this?
Attached Image

It shows double info at every page load and after I take any action it goes back to normal.
Attached Image

I'm using Reloader 1.3.3b (tried 1.3.5d) with HV cooldown Reloader (by gianfrix94).
When I disable reloader it works as it should.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 15:11
Post #3617
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(Dragon Ninja @ Jan 29 2017, 13:27) *

Can somebody help with this?
Attached Image

It shows double info at every page load and after I take any action it goes back to normal.
Attached Image

I'm using Reloader 1.3.3b (tried 1.3.5d) with HV cooldown Reloader (by gianfrix94).
When I disable reloader it works as it should.

yep, my guess is that you have two scripts with cooldown function.
if that's the case and you really need the supplemental function given by cooldown reloader, try check reloader to see if you can disable such similar function.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 15:43
Post #3618
Maximum_Carnage



There is only carnage !!!
******
Group: Gold Star Club
Posts: 792
Joined: 27-October 09
Level 500 (Ponyslayer)


QUOTE(Scremaz @ Jan 29 2017, 14:11) *

yep, my guess is that you have two scripts with cooldown function.
if that's the case and you really need the supplemental function given by cooldown reloader, try check reloader to see if you can disable such similar function.

Checked the reloader and didn't find any similar:
CODE
var settings = {
    hideWelcome: false,
    noBlinking: false,
    effectDurations: true,
    gemIcon: false,
    roundCounter: true,
    hvStateHP: false,
    fluidHPBar: false,
    sparkAlert: true,
    defaultAction: 0,
    mouseMelee: true,
    minHP: 0.4,
    minMP: 0.25,
    minSP: 0.4,
    stopWhenChanneling: 2,
    chromeFix: true,
    battleLog: false,
    skipToNextRound: true,
    popupTime: 0,
    counterPlus: true,
    counterPlusSave: false

Disabled all of them and still nothing.

This post has been edited by Dragon Ninja: Jan 29 2017, 15:43
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 15:50
Post #3619
simrock87



<('.'<) (>'.')> (^'.')>
*****
Group: Members
Posts: 647
Joined: 12-June 11
Level 399 (Godslayer)


QUOTE(Dragon Ninja @ Jan 29 2017, 12:27) *

Can somebody help with this?
Attached Image

It shows double info at every page load and after I take any action it goes back to normal.
Attached Image

I'm using Reloader 1.3.3b (tried 1.3.5d) with HV cooldown Reloader (by gianfrix94).
When I disable reloader it works as it should.

Code error, both stackcounter and cooldown run twice with reloader enabled on initial page load.

//Edit:
Change
CODE
if (settings.use_reloader) {
    window.addEventListener('Reloader_reloaded', HV_Cooldown);
}

HV_Cooldown();

to
CODE
if (settings.use_reloader) {
    window.addEventListener('Reloader_reloaded', HV_Cooldown);
} else {
  HV_Cooldown();
}


This post has been edited by simrock87: Jan 29 2017, 15:54
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 15:58
Post #3620
Maximum_Carnage



There is only carnage !!!
******
Group: Gold Star Club
Posts: 792
Joined: 27-October 09
Level 500 (Ponyslayer)


QUOTE(simrock87 @ Jan 29 2017, 14:50) *

Code error, both stackcounter and cooldown run twice with reloader enabled on initial page load.

//Edit:
Change
CODE
if (settings.use_reloader) {
    window.addEventListener('Reloader_reloaded', HV_Cooldown);
}

HV_Cooldown();

to
CODE
if (settings.use_reloader) {
    window.addEventListener('Reloader_reloaded', HV_Cooldown);
} else {
  HV_Cooldown();
}


Thank You very much. Now it works as it should.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 16:19
Post #3621
lazyNPC



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


QUOTE(simrock87 @ Jan 29 2017, 14:50) *

Code error, both stackcounter and cooldown run twice with reloader enabled on initial page load.

//Edit:
Change
CODE
if (settings.use_reloader) {
    window.addEventListener('Reloader_reloaded', HV_Cooldown);
}

HV_Cooldown();

to
CODE
if (settings.use_reloader) {
    window.addEventListener('Reloader_reloaded', HV_Cooldown);
} else {
  HV_Cooldown();
}


I'll go fix everywhere this error is soon.
On chrome this error doesn't appear so i never noticed it, sorry.
EDIT: With the else on Chrome it doesn't work on the first turn, so i'm keeping it like it is now.

This post has been edited by gianfrix94: Jan 29 2017, 19:29
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 19:09
Post #3622
aznknightfire



HV Friend
*****
Group: Gold Star Club
Posts: 534
Joined: 23-July 10
Level 500 (Ponyslayer)


Hi All,

Where can I find a script that shows my potions/draughts and how many I have on the same battle page?

Thanks,
Newbie

This post has been edited by erojh jioj: Jan 29 2017, 19:10
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 19:51
Post #3623
KitsuneAbby



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


QUOTE(erojh jioj @ Jan 29 2017, 18:09) *

Hi All,

Where can I find a script that shows my potions/draughts and how many I have on the same battle page?

Thanks,
Newbie


How does one could ever not have enough potions?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 19:52
Post #3624
aznknightfire



HV Friend
*****
Group: Gold Star Club
Posts: 534
Joined: 23-July 10
Level 500 (Ponyslayer)


Someone who's been away a long time (IMG:[invalid] style_emoticons/default/biggrin.gif)

Is there a script that just allows me to drink potions/draughts on the main battle page?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 19:56
Post #3625
trikon000



Blue Wizard is about to die. Nevermind, just killed him.
*******
Group: Gold Star Club
Posts: 1,127
Joined: 17-August 07
Level 500 (Ponyslayer)


QUOTE(erojh jioj @ Jan 29 2017, 12:52) *

Someone who's been away a long time (IMG:[invalid] style_emoticons/default/biggrin.gif)

Is there a script that just allows me to drink potions/draughts on the main battle page?

There is a Itembar script you can use.

https://forums.e-hentai.org/index.php?showt...p;#entry4544253
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 29 2017, 20:18
Post #3626
aznknightfire



HV Friend
*****
Group: Gold Star Club
Posts: 534
Joined: 23-July 10
Level 500 (Ponyslayer)


What is this Reloader and CracklingCast I am reading about? Ideally, I'd like to know if my health goes below 25% to manually drink a health potion easily. I also saw a screenshot of someone who has arena/item world stats at the very end with credits, time taken, etc. What script is that?

Thanks again (IMG:[invalid] style_emoticons/default/biggrin.gif) Itembar worked!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 180 181 182 183 > » 
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: 13th August 2025 - 20:34