Loading. Please Wait...
|
|
|
HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |
|
Jun 28 2017, 21:43
|
sickentide
Group: Catgirl Camarilla
Posts: 1,355
Joined: 31-August 10
|
QUOTE(roadgray @ Jun 28 2017, 21:41) Probably a stupid question, but what is the correct name to cast Spark of Life?
should be just that, 'Spark of Life'
|
|
|
Jun 28 2017, 21:46
|
roadgray
Group: Gold Star Club
Posts: 4,014
Joined: 14-July 11
|
QUOTE(sickentide @ Jun 28 2017, 21:43) should be just that, 'Spark of Life'
Alrighty, 'Full-Cure' had me confused…
|
|
|
Jun 28 2017, 22:22
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,566
Joined: 12-July 14
|
QUOTE(sickentide @ Jun 28 2017, 21:09) is this another one of those things that break if you don't use a custom font? the restore values should appear to the right of the upgrade buttons, in black if they don't waste morale and in grey otherwise
(IMG:[ i.imgur.com] http://i.imgur.com/TlNUqAY.jpg) Eeyup.
|
|
|
|
|
|
|
|
|
Jun 28 2017, 23:34
|
Sapo84
Group: Gold Star Club
Posts: 3,332
Joined: 14-June 09
|
QUOTE(friggo @ Jun 28 2017, 20:27) Sapo's script does this. Maybe somehow integrate it into this one?
Use Stylish and add
CODE #pane_log {display: none} for the domains alt.hentaiverse.org and hentaiverse.org
It's easier and in this way it doesn't flash in Chrome like my script was doing. 100% satisfaction guaranteed.Edit: Ok, I'm a complete idiot and I posted the wrong code. It would be something like CODE #btcp {display: none} BUTI was also forgetting that if you want to display the end round and/or prevent click you have to undo that. So either way you would probably need to inject some styles with javascript anyway. so, something like CODE if ( noPopup && (btcp = document.getElementById('btcp')) && !stopAtBattleEnd && (!stopOnEquipDrop || !document.querySelector('span[style$="#FF0000"]')) ) btcp.click();
to CODE if ( noPopup && (btcp = document.getElementById('btcp')) && !stopAtBattleEnd && (!stopOnEquipDrop || !document.querySelector('span[style$="#FF0000"]')) ) btcp.click(); else document.head.appendChild(document.createElement('style')).innerHTML = '#btcp {display: block !important}';
and CODE document.head.appendChild(document.createElement('style')).innerHTML = '.btm6 { min-width: 195px; }' + [...]
to CODE document.head.appendChild(document.createElement('style')).innerHTML = '#btcp {display: block !important}.btm6 { min-width: 195px; }' + [...]
Note: untested (IMG:[ invalid] style_emoticons/default/heh.gif) This post has been edited by Sapo84: Jun 29 2017, 00:34
|
|
|
|
|
|
Jun 28 2017, 23:41
|
Cohozuna
Group: Gold Star Club
Posts: 958
Joined: 26-April 14
|
So, this might sound like a stupid question.. But is there any mousemelee scripts that work with the utilitarian style? I have one running currently that works well with the standard but.. I honestly dislike the way it looks.
|
|
|
Jun 28 2017, 23:52
|
sickentide
Group: Catgirl Camarilla
Posts: 1,355
Joined: 31-August 10
|
QUOTE(Mudsdale @ Jun 28 2017, 23:41) So, this might sound like a stupid question.. But is there any mousemelee scripts that work with the utilitarian style? I have one running currently that works well with the standard but.. I honestly dislike the way it looks.
mine works with both bar styles
|
|
|
Jun 29 2017, 00:02
|
Cohozuna
Group: Gold Star Club
Posts: 958
Joined: 26-April 14
|
QUOTE(sickentide @ Jun 29 2017, 00:52) mine works with both bar styles
I got it working! Thanks for the info.
|
|
|
Jun 29 2017, 00:59
|
SleepDealer
Group: Gold Star Club
Posts: 3,020
Joined: 6-February 12
|
QUOTE(simrock87 @ Jun 29 2017, 03:19) If you didn't change some stuff in CC it would not auto recover by itself (IMG:[ invalid] style_emoticons/default/blink.gif) I'm sorry, I believe you've misunderstood. I was talking about 0.84v In version that I used it would. (IMG:[ invalid] style_emoticons/default/smile.gif)
|
|
|
|
|
|
Jun 29 2017, 01:39
|
piyin
Group: Gold Star Club
Posts: 10,797
Joined: 4-February 09
|
QUOTE(Superlatanium @ Jun 28 2017, 09:49) HV Item Manager, fixed up for 0.85
HV_Item_Manager_1.6.0.user.js.txt ( 41.64k )
Number of downloads: 494Not every function may work, but most of them do, including setting equip/item prices, MMing, and making customized equip lists. See holy_demon's post for features and usage details. Fixed for Iron as well as Chrome/Firefox. The credits pane has been added to many pages. I'll try to fix any critical problems if anyone sees any, but I'm not going to bother with anything minor, now that most of the functionality has been restored, since this isn't my script. Thanks, sadly the multi selection bazzar and salvage options doesnt work and item inventory just keep refreshing the page... at least for me... I just love this script, and i wish someone could just fix it to work at 100%... and add some more variables for the customized equip list. If anyone is insterested, PM me. I will pay for this. (IMG:[ invalid] style_emoticons/default/wink.gif)
|
|
|
|
|
|
Jun 29 2017, 02:28
|
Superlatanium
Group: Gold Star Club
Posts: 7,577
Joined: 27-November 13
|
QUOTE(dmyers59 @ Jun 28 2017, 17:27) Could mass salvage with this but couldn't bazaar with it. You're right, the bazaar POST method changed. It's an easy fix, I'll post a fixed version as soon as: QUOTE(piyin @ Jun 28 2017, 23:39) Thanks, sadly the multi selection bazzar and salvage options doesnt work and item inventory just keep refreshing the page... at least for me... Bazaaring wasn't working, but salvaging should work, I can't reproduce whatever problem you're having. If the inventory keeps refreshing, that means it's failing to grab an ID of an item in your inventory. See the this.getId function, around line 103. Maybe there's an old artifact, an untradeable, or some other unique item that I don't have that's causing problems. At the end of the getId function, just before the last line "getItemIds();", can you add the following line: alert(name); and tell me what it says? Knowing the name of the troublesome item should help narrow down the issue QUOTE(piyin @ Jun 28 2017, 23:39) and add some more variables for the customized equip list. Such as?
|
|
|
|
|
|
Jun 29 2017, 02:44
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07
|
QUOTE(Superlatanium @ Jun 29 2017, 02:28) Maybe there's an old artifact
unless it's something that i don't own either but piyin does, it shouldn't be the case. is it possible that odd characters in custom names are breaking it? btw, no refreshes and salvaging working here too. bazaar says it processed the items but in the end, if you refresh the page they are still there...
|
|
|
Jun 29 2017, 04:00
|
sickentide
Group: Catgirl Camarilla
Posts: 1,355
Joined: 31-August 10
|
i wrote a parser for the default font so my script supports that now too, and fixed ether tap
HentaiverseMonsterbation.1.0.2.user.js.zip ( 6.42k )
Number of downloads: 74context menu no longer shows up when right clicking monsters, making that button more useful This post has been edited by sickentide: Jun 29 2017, 17:42
|
|
|
Jun 29 2017, 04:45
|
tonyi
Group: Members
Posts: 195
Joined: 5-October 10
|
I tried Hentaiverse Monsterbation 1.0.1 and it's work fine. thanks for your code. I think you got it. I think You could got the reward....
This post has been edited by tonyi: Jun 29 2017, 05:18
|
|
|
Jun 29 2017, 06:38
|
AnonDarkMage7
Group: Gold Star Club
Posts: 925
Joined: 1-June 12
|
QUOTE(sickentide @ Jun 29 2017, 04:00) I put cure as my right click but it only works if my cursor is over the mob list in battle and is there anyway to disable the pop up menu you get when you right click?
|
|
|
Jun 29 2017, 06:47
|
friggo
Group: Gold Star Club
Posts: 2,134
Joined: 9-October 14
|
QUOTE(abc12345678901 @ Jun 29 2017, 07:38) I put cure as my right click but it only works if my cursor is over the mob list in battle and is there anyway to disable the pop up menu you get when you right click?
Was literally about to post the exact same question. EDIT: got it to work by pasting bits of Sapo's old script into the big one. Incidentally, this also got rid of the round-end pop-up (IMG:[ invalid] style_emoticons/default/happy.gif) This post has been edited by friggo: Jun 29 2017, 07:02
|
|
|
|
|
|
Jun 29 2017, 07:12
|
AnonDarkMage7
Group: Gold Star Club
Posts: 925
Joined: 1-June 12
|
QUOTE(friggo @ Jun 29 2017, 06:47) Was literally about to post the exact same question. EDIT: got it to work by pasting bits of Sapo's old script into the big one. Incidentally, this also got rid of the round-end pop-up (IMG:[ invalid] style_emoticons/default/happy.gif) Mind telling which in where please? I'm not so good with scripts (IMG:[ invalid] style_emoticons/default/sad.gif)
|
|
|
|
|
|
Jun 29 2017, 07:24
|
friggo
Group: Gold Star Club
Posts: 2,134
Joined: 9-October 14
|
QUOTE(abc12345678901 @ Jun 29 2017, 08:12) Mind telling which in where please? I'm not so good with scripts (IMG:[ invalid] style_emoticons/default/sad.gif) I don't really know a lot either, so I pretty much pasted all of it, just removing the redundant values for minHP etc. I didn't replace anything in the original script and just pasted it all in a random spot. It's not pretty, but it works (IMG:[ invalid] style_emoticons/default/smile.gif) I'm sure you'd really only need like four lines of code for what you're asking, but like I said, I don't really know jack about it, so... (IMG:[ invalid] style_emoticons/default/rolleyes.gif)
|
|
|
|
|
|
Jun 29 2017, 07:24
|
Noni
Group: Catgirl Camarilla
Posts: 12,952
Joined: 19-February 16
|
QUOTE(sickentide @ Jun 28 2017, 23:24) it says right at the top, you need to use a custom font, sorry i think this is how it should be, someone else can mod it if they want it to work differently. if it helps, you can set it to turn hover on and off with a click or scroll of the mouse
is it true that I can't use left click to troggle hover? I can assign mid click and right click. But right click also gives the browser right click popup as well as the function.
|
|
|
3 User(s) are reading this topic (3 Guests and 0 Anonymous Users)
0 Members:
|
|
|
|
|
|
|