Welcome Guest ( Log In | Register )

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

 
post Nov 13 2014, 13:08
Post #1807
oohmrparis



We are ping-pong player
*****
Group: Gold Star Club
Posts: 524
Joined: 18-June 13
Level 500 (Ponyslayer)


nvm

This post has been edited by oohmrparis: Nov 13 2014, 16:02
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 13 2014, 13:44
Post #1808
Dead-ed



Niten = 我が両刀に断てぬもの無し。
********
Group: Members
Posts: 3,577
Joined: 4-March 14
Level 500 (Godslayer)


QUOTE(oohmrparis @ Nov 13 2014, 04:08) *

Sorry, my firefox can't debug it because it does not return an error.
[attachmentid=53882]
(does not display of ET stack)

upload it in a simple substance, please ask an author of hoverplay.

ara~ thanks again (IMG:[invalid] style_emoticons/default/biggrin.gif) gonna work on it when i get time.
Now i'm interested in scripts.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 13 2014, 13:50
Post #1809
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(oohmrparis @ Nov 13 2014, 19:08) *

Sorry, my firefox can't debug it because it does not return an error.
[attachmentid=53882]
(does not display of ET stack)

upload it in a simple substance, please ask an author of hoverplay.

In the current version of Firefox, one needs to use Browser Console (Ctrl+Shift+J) instead of Web Console (Ctrl+Shift+I) to see errors generated by user scripts and addons.
Is this what you want?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 13 2014, 14:32
Post #1810
oohmrparis



We are ping-pong player
*****
Group: Gold Star Club
Posts: 524
Joined: 18-June 13
Level 500 (Ponyslayer)


QUOTE(djackallstar @ Nov 13 2014, 13:50) *

In the current version of Firefox, one needs to use Browser Console (Ctrl+Shift+J) instead of Web Console (Ctrl+Shift+I) to see errors generated by user scripts and addons.
Is this what you want?


I use firefox 32.0 + firebug 2.0.6 + UserScriptLoader (Grease monkey substitute)
Don't display all errors for some reason (even as for the console.log!) (IMG:[invalid] style_emoticons/default/faint.gif)
I tried the method that you taught, but after all it was impossible. (I may get a wrong how to use)
Cuz I can't debug the script which is not usable with chrome...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 13 2014, 14:53
Post #1811
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(oohmrparis @ Nov 13 2014, 20:32) *

I use firefox 32.0 + firebug 2.0.6 + UserScriptLoader (Grease monkey substitute)
Don't display all errors for some reason (even as for the console.log!) (IMG:[invalid] style_emoticons/default/faint.gif)
I tried the method that you taught, but after all it was impossible. (I may get a wrong how to use)
Cuz I can't debug the script which is not usable with chrome...

Tested on Fx 32.0.2. Error messages from userscripts/addons appear only in the Browser Console (the upper one in the image).
Code: [pastebin.com] http://pastebin.com/UC8p8b7g
(IMG:[i.imgur.com] http://i.imgur.com/EiFP4WT.png)

This post has been edited by djackallstar: Nov 13 2014, 14:54
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 13 2014, 15:31
Post #1812
oohmrparis



We are ping-pong player
*****
Group: Gold Star Club
Posts: 524
Joined: 18-June 13
Level 500 (Ponyslayer)


QUOTE(djackallstar @ Nov 13 2014, 14:53) *

Tested on Fx 32.0.2. Error messages from userscripts/addons appear only in the Browser Console (the upper one in the image).
Code: [pastebin.com] http://pastebin.com/UC8p8b7g


oh, i see (IMG:[invalid] style_emoticons/default/smile.gif) but this console is hard to see...

QUOTE(Dead-ed @ Nov 13 2014, 13:44) *

ara~ thanks again (IMG:[invalid] style_emoticons/default/biggrin.gif) gonna work on it when i get time.
Now i'm interested in scripts.


hoverplay code rewrite this.
CODE

    if(ret && stop_on_rebuffs)
    {
        document.getElementById('monsterpane').setAttribute('style', 'border:2px solid silver;');
    }
    return ret;
}



CODE

    if(ret && stop_on_rebuffs)
    {
        document.getElementById('monsterpane').setAttribute('style', 'border:2px solid silver;');
    }
    stacks();
    return ret;
}

function stacks() {
  var targets = document.querySelectorAll('.btm6 > img'),
    i = targets.length;
  if (i) {
    while(i--) {
      var text = targets[i].getAttribute('onmouseover'),
        stack = text.match(/x\d/);
      if (stack) {
        var left = targets[i].offsetLeft + 16,
          div = targets[i].parentNode.appendChild(document.createElement('div'));
        div.textContent = stack;
        div.style.cssText ='position:absolute;width:12px;top:2px;left:'+left+'px;background:#FF6600;border:1px solid black;font-size:7pt;font-weight:bold;text-align:center;';
      }
    }
  }
}


This post has been edited by oohmrparis: Nov 13 2014, 16:28
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 14 2014, 06:49
Post #1813
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


Script Name
    Equipment Popup for MoogleMail
Description
    Press "c" to open the equipment popup of the attached equipment. The hotkey is customizable.
    This script is mainly written for auctioneers. (useful when a seller forgets to write the equipment URL in the mail)
    Note: The script only works when you use a custom font.
DemoDownload and InstallationFeedback
    To report bugs, request features, or if you have any feedback, please PM me or reply to this thread.


This post has been edited by djackallstar: Nov 17 2014, 02:42
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 16 2014, 20:07
Post #1814
Tugamos



Casual Poster
***
Group: Members
Posts: 153
Joined: 18-September 14
Level 236 (Godslayer)


Hi,

The trophy script it's only for firefox?
Im using google canary, all scrips work fine in native mode except this one.

thank you.

screenshot:
(IMG:[i.imgur.com] http://i.imgur.com/zZ4pLgD.png)

Edit: It's working but after i change the Font. thanks!

This post has been edited by Tugamos: Nov 16 2014, 20:26
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 17 2014, 02:45
Post #1815
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


Thanks for reporting the problem and providing a solution, Tugamos. (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 17 2014, 17:10
Post #1816
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


Script Name
    Average Price Calculator for MoogleMail
Description
    Shows the average price of items attached to a letter at the bottom of the body section.
    Works under the "Inbox", "Read Mail" and "Sent Mail" tabs.
DemoDownload and InstallationFeedback
    To report bugs, request features, or if you have any feedback, please PM me or reply to this thread.


This post has been edited by djackallstar: Nov 18 2014, 03:13
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 17 2014, 18:38
Post #1817
LostLogia4



Translating Miku's Yuri Nikki for the heck of it~~
********
Group: Gold Star Club
Posts: 2,716
Joined: 4-June 11
Level 362 (Godslayer)


QUOTE(djackallstar @ Nov 14 2014, 12:49) *
Script Name
    Equipment Popup for MoogleMail
About time this one showed up. (IMG:[invalid] style_emoticons/default/tongue.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 17 2014, 18:47
Post #1818
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(LostLogia4 @ Nov 18 2014, 00:38) *

About time this one showed up. (IMG:[invalid] style_emoticons/default/tongue.gif)

Yeah, didn't realize MM doesn't have any way to open the equip link until I hosted an auction by myself. >.>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 17 2014, 18:57
Post #1819
LostLogia4



Translating Miku's Yuri Nikki for the heck of it~~
********
Group: Gold Star Club
Posts: 2,716
Joined: 4-June 11
Level 362 (Godslayer)


QUOTE(djackallstar @ Nov 18 2014, 00:47) *
Yeah, didn't realize MM doesn't have any way to open the equip link until I hosted an auction by myself. >.>
Think you can append the GP, Credit, and Hath to "My Home" page?

This post has been edited by LostLogia4: Nov 17 2014, 18:58
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 18 2014, 12:29
Post #1820
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(LostLogia4 @ Nov 18 2014, 00:57) *

Think you can append the GP, Credit, and Hath to "My Home" page?

[github.com] E-Hentai Gallery Overview - All in One
(Click the "Raw" button to install)

This post has been edited by djackallstar: Nov 18 2014, 12:29
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 18 2014, 18:50
Post #1821
LostLogia4



Translating Miku's Yuri Nikki for the heck of it~~
********
Group: Gold Star Club
Posts: 2,716
Joined: 4-June 11
Level 362 (Godslayer)


QUOTE(djackallstar @ Nov 18 2014, 18:29) *
[github.com] E-Hentai Gallery Overview - All in One
(Click the "Raw" button to install)
Just tested the script... uh, I ate my exact wordings, as I'd prefer to append a table like this one between the Images Limit and EHTracker tables instead.

CODE
<h2>Currencies</h2><div class="homebox">
    <table style="margin:auto; text-align:left">
        <tbody><tr>
            <td style="font-weight:bold; text-align:right">0,000,000</td>
            <td>GP</td>
        </tr>
        <tr>
            <td style="font-weight:bold; text-align:right">0,000,000</td>
            <td>Credits</td>
        </tr>
        <tr>
            <td style="font-weight:bold; text-align:right">26@7400</td>
            <td>Haths</td>
        </tr>
    </tbody></table>
</div>


This post has been edited by LostLogia4: Nov 18 2014, 19:23
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 19 2014, 06:34
Post #1822
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


Script Name
    E-Hentai Gallery Overview - All in One
Description
    Appends GP Exchange, Credit Log and Hath Exchange to the Overview tab (under My Home).
DemoDownload and InstallationKnown Issues
  • The order of GP Exchange, Credit Log and Hath Exchange is random.
Feedback
    To report bugs, request features, or if you have any feedback, please PM me or reply to this thread.


This post has been edited by djackallstar: Nov 21 2014, 10:53
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 19 2014, 18:24
Post #1823
LostLogia4



Translating Miku's Yuri Nikki for the heck of it~~
********
Group: Gold Star Club
Posts: 2,716
Joined: 4-June 11
Level 362 (Godslayer)


QUOTE(djackallstar @ Nov 19 2014, 12:34) *
Script Name
    E-Hentai Gallery Overview - All in One
Description
    Appends GP Exchange, Credit Log and Hath Exchange to the Overview tab (under My Home).
    This script was written at the request of LostLogia4, who helped me a lot when I was a noob in HV.
DemoDownload and InstallationKnown Issues
  • The order of GP Exchange, Credit Log and Hath Exchange is random.
Feedback
    To report bugs, request features, or if you have any feedback, please PM me or reply to this thread.
Oh dear (IMG:[invalid] style_emoticons/default/unsure.gif)
I only need them to just show only the currencies like this one... (IMG:[invalid] style_emoticons/default/heh.gif)
Attached Image

Now with improved HTML layout:
CODE
<div class="homebox">
    <table style="margin:auto; text-align:left">
        <tbody><tr>
            <td class="c1" style="font-weight:bold; text-align:right">0,000,000</td>
            <td class="c2">Credits</td>
            <td class="c1" style="font-weight:bold; text-align:right">000</td>
            <td class="c2">Haths</td>
        </tr><tr>
            <td class="c1" style="font-weight:bold; text-align:right">0,000,000</td>
            <td class="c2">GP</td>
            <td class="c1" style="font-weight:bold; text-align:right">7,400</td>
            <td class="c2">Exchange Rate</td>
        </tr></tbody>
    </table>
</div>


This post has been edited by LostLogia4: Nov 19 2014, 18:40
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 19 2014, 18:25
Post #1824
LostLogia4



Translating Miku's Yuri Nikki for the heck of it~~
********
Group: Gold Star Club
Posts: 2,716
Joined: 4-June 11
Level 362 (Godslayer)


*doublepost*

This post has been edited by LostLogia4: Nov 19 2014, 18:37
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2014, 05:13
Post #1825
eleeinos



Veteran Poster
********
Group: Gold Star Club
Posts: 3,720
Joined: 22-December 08
Level 500 (Ponyslayer)


QUOTE(Gasior @ Oct 7 2014, 23:19) *

Made in free time.

HV Equipment Comparison 0.6.4.0

Attached File  HVEquipCompare_0.6.4.0.zip ( 21.15k ) Number of downloads: 1826


- Update to Wiki Ranges data (26 August 2014)
- Update to HV 0.81
- Added " T " hotkey to calculate approximate base values before forge&iw (not sure about iw part)
-- work only on pages where you can see "Upgrades and Enchantments"
- Now also compares Durability (max Condition)

Do you need some other script installed in order to make this one work? I've tried it in both Firefox and Iron and it's not working in either, it just says "Loading..." and then nothing. (IMG:[invalid] style_emoticons/default/sleep.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2014, 05:38
Post #1826
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(eleeinos @ Nov 20 2014, 11:13) *

Do you need some other script installed in order to make this one work? I've tried it in both Firefox and Iron and it's not working in either, it just says "Loading..." and then nothing. (IMG:[invalid] style_emoticons/default/sleep.gif)

Change the default HV font to any custom font and the problem will be gone.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 90 91 92 93 > » 
Reply to this topicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 15th September 2025 - 05:42