Welcome Guest ( Log In | Register )

5 Pages V « < 2 3 4 5 >  
Reply to this topicStart new topic
> [Donor Project] HV Scripts, Something a little different

 
post Jun 1 2011, 04:25
Post #61
20200



Death Row
**********
Group: Gold Star Club
Posts: 7,687
Joined: 28-May 07
Level 335 (Godslayer)


I don't know how people can stand to use the scripts seeing as they slow you down so much.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 1 2011, 10:58
Post #62
hgbdd



Godslayer Angelic Belldandy (On vacations)
**********
Group: Gold Star Club
Posts: 8,365
Joined: 8-December 08
Level 500 (Ponyslayer)


QUOTE(Boggyb @ Jun 1 2011, 03:25) *

I don't know how people can stand to use the scripts seeing as they slow you down so much.
I don't atm, but in the past yes because I wasn't in a hurry.

What's interesting is, no one wants to depart some text things for no return.
Hey cmal wants big profit? So what, it's not that different from most guys do, besides it's the way the world works.

This post has been edited by cmdct: Jun 1 2011, 11:00
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 1 2011, 19:58
Post #63
20200



Death Row
**********
Group: Gold Star Club
Posts: 7,687
Joined: 28-May 07
Level 335 (Godslayer)


cmal, should I send the hath as a deposit until I am hypothetically outbid? There doesn't seem to be any money being raised against me. Or really in favor of it being released anyway since I assume people can't be certain of whether we are being serious. (Probably more of whether you are serious)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 1 2011, 23:39
Post #64
grumpymal



I hate everything >:C
***********
Group: Gold Star Club
Posts: 10,923
Joined: 2-April 08
Level 362 (Godslayer)


The scripts don't really slow me down. Maybe if I had everything turned on there might be a slight delay, but I don't need or want everything.

I am being dead serious here. I will take Boggy's 80 hath if people really don't care enough to try to raise the funds to outbid him.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 2 2011, 01:43
Post #65
noccio



Visitor Q
********
Group: Members
Posts: 2,529
Joined: 3-October 09
Level 334 (Godslayer)


1 hath sent. Can you give us the current score point for HV HUD?

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

 
post Jun 2 2011, 05:51
Post #66
grumpymal



I hate everything >:C
***********
Group: Gold Star Club
Posts: 10,923
Joined: 2-April 08
Level 362 (Godslayer)


QUOTE(noccio @ Jun 1 2011, 19:43) *

1 hath sent. Can you give us the current score point for HV HUD?

600/20000. And I'm suspending accepting donations unless I see an effort to counter Boggy's offer, since part of the stipulation is I don't give the script out at all. You can either recall the message or I'll send it back when I see that I'll be taking the 80 Hath.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 2 2011, 06:11
Post #67
Vakuen



Regular Poster
*****
Group: Members
Posts: 551
Joined: 11-July 10
Level 217 (Godslayer)


That is fascinating. I'll have to keep my eye on this topic....

-Vakuen
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 2 2011, 06:11
Post #68
xlee



Veteran Poster
********
Group: Members
Posts: 3,251
Joined: 29-September 09
Level 164 (Destined)


just curios here, are we talking on the HV HUD - Monster Sensor?? or the complete Lab Monster module?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 2 2011, 07:57
Post #69
hitokiri84



Legendary Poster
***********
Group: Gold Star Club
Posts: 10,945
Joined: 24-December 07
Level 496 (Godslayer)


This thread is hilarious. No one is going to buy into such an obvious extortion racket.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 2 2011, 09:36
Post #70
20200



Death Row
**********
Group: Gold Star Club
Posts: 7,687
Joined: 28-May 07
Level 335 (Godslayer)


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

 
post Jun 2 2011, 13:14
Post #71
Death Grunty



デス★ランディ
********
Group: Gold Star Club
Posts: 2,788
Joined: 18-November 09
Level 369 (Dovahkiin)


CODE
// ==UserScript==
// @name          Highlight Mobs
// @namespace    
// @description   Changes Colors.
// @include       http://hentaiverse.org/*

// ==/UserScript==

(function() {

// key: word to match, value a dictionary of style elements to apply
// to blocks containing that word.
const COLOR_MAP = {
  "Bunko": {"color": "orange"},
  "Tsathoggua": {"color": "orange"},
  "Fumoffu": {"color": "orange"},
  "The Q": {"color": "orange"},
  "Ichy": {"color": "orange"},
  "Plue": {"color": "orange"},
  "Conquest101": {"color": "orange"},
  "Holy Bell": {"color": "orange"},
  "Neptunia": {"color": "blue"},
  "Freudia Neuwahl": {"color": "blue"},
  "Liselotte Werckmeister ": {"color": "blue"},
  "Eila Ilmatar Juutilainen": {"color": "blue"},
};

function highlightText() {

  var allTextNodes = document.evaluate('//text()', document, null,
                                       XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
                                       null);

  for (var i = 0; i < allTextNodes.snapshotLength; i++) {
    var ele = allTextNodes.snapshotItem(i);
    for (var key in COLOR_MAP) {
      if (ele.nodeValue.toLowerCase().indexOf(key) != -1) {
        // TODO(ark) perhaps make it only highlight the word?
        var span = document.createElement("span");
        ele.parentNode.replaceChild(span, ele);
        span.appendChild(ele);
        for (var css in COLOR_MAP[key]) {
          span.style[css] = COLOR_MAP[key][css];
        }
      }
    }
  }
}

  highlightText();
})();

How about this then?
(save as whatever.user.js)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 2 2011, 13:40
Post #72
buktore



Skeleton Soldier
********
Group: Members
Posts: 4,353
Joined: 9-September 09
Level 412 (Dovahkiin)


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

 
post Jun 2 2011, 14:52
Post #73
Ichy



~ Loli Trainer ~
***********
Group: Catgirl Camarilla
Posts: 13,061
Joined: 19-February 09
Level 500 (Dovahkiin)


QUOTE(Death Grunty @ Jun 2 2011, 13:14) *


How about this then?
(save as whatever.user.js)

I feel proud to have 3 Monsters on that list (IMG:[invalid] style_emoticons/default/happy.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 3 2011, 00:03
Post #74
grumpymal



I hate everything >:C
***********
Group: Gold Star Club
Posts: 10,923
Joined: 2-April 08
Level 362 (Godslayer)


QUOTE(xlee @ Jun 2 2011, 00:11) *

just curios here, are we talking on the HV HUD - Monster Sensor?? or the complete Lab Monster module?

As it stands, just Monster Sensor. Depending on what happens, maybe the rest of HUD. Boggy could decide to do this again when I put up the Scan recorder and Lab support module.

QUOTE(hitokiri84 @ Jun 2 2011, 01:57) *

This thread is hilarious. No one is going to buy into such an obvious extortion racket.

I know, right? But either way, I've got 80 hath sitting in my inbox waiting for the taking, so no skin off my nose.

QUOTE(Death Grunty @ Jun 2 2011, 07:14) *

How about this then?
(save as whatever.user.js)

But does it work with all three font modes and in Chrome?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 3 2011, 01:00
Post #75
Death Grunty



デス★ランディ
********
Group: Gold Star Club
Posts: 2,788
Joined: 18-November 09
Level 369 (Dovahkiin)


Downloadable only. Well it would work with the hv font engine but it would only color them on battlestart in the messagebox.
Yours is better.^^
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 4 2011, 02:12
Post #76
grumpymal



I hate everything >:C
***********
Group: Gold Star Club
Posts: 10,923
Joined: 2-April 08
Level 362 (Godslayer)


Whatever I received for the current project have been returned and Boggy gets his way as the "donor" for this project.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 4 2011, 02:42
Post #77
20200



Death Row
**********
Group: Gold Star Club
Posts: 7,687
Joined: 28-May 07
Level 335 (Godslayer)


QUOTE(cmal @ Jun 3 2011, 17:12) *

Whatever I received for the current project have been returned and Boggy gets his way as the "donor" for this project.

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

 
post Jun 7 2011, 21:27
Post #78
20200



Death Row
**********
Group: Gold Star Club
Posts: 7,687
Joined: 28-May 07
Level 335 (Godslayer)


FYI: If you have any more scripts, give me a chance to respond before taking donations.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 8 2011, 21:47
Post #79
Death Grunty



デス★ランディ
********
Group: Gold Star Club
Posts: 2,788
Joined: 18-November 09
Level 369 (Dovahkiin)


Here a script I'd want:
Make a script that generates a list of all item links in the inventory. Even better in this format if you can:
CODE
[url=X]Y[/url]

X being the equipment link and Y item name.

(IMG:[invalid] style_emoticons/default/biggrin.gif)

This post has been edited by Death Grunty: Jun 8 2011, 21:47
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 8 2011, 23:29
Post #80
grumpymal



I hate everything >:C
***********
Group: Gold Star Club
Posts: 10,923
Joined: 2-April 08
Level 362 (Godslayer)


QUOTE(Death Grunty @ Jun 8 2011, 15:47) *

Here a script I'd want:
Make a script that generates a list of all item links in the inventory. Even better in this format if you can:
CODE
[url=X]Y[/url]

X being the equipment link and Y item name.

(IMG:[invalid] style_emoticons/default/biggrin.gif)

I can do that. How are you paying?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


5 Pages V « < 2 3 4 5 >
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: 14th January 2025 - 13:40