| 
| Loading. Please Wait... 
        
    | 
               
                |  |  |  |   
                | 
		
			
	
	
	
	
	 |  HV Script Thread , Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |  |  
  
     
      |   
           Nov 13 2014, 13:08 |  
		| oohmrparis 
 
 
 
 Group: Gold Star Club Posts: 524 Joined: 18-June 13 
  
 | nvm
 This post has been edited by oohmrparis: Nov 13 2014, 16:02
 |  
		|  |  |  
  
     
      |   
           Nov 13 2014, 13:44 |  
		| Dead-ed 
 
 
 
 Group: Members Posts: 3,578 Joined: 4-March 14 
  
 | 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. |  
		|  |  |  
  
     
      |   
           Nov 13 2014, 13:50 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | 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? |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 13 2014, 14:32 |  
		| oohmrparis 
 
 
 
 Group: Gold Star Club Posts: 524 Joined: 18-June 13 
  
 | 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... |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 13 2014, 14:53 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | 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 |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 13 2014, 15:31 |  
		| oohmrparis 
 
 
 
 Group: Gold Star Club Posts: 524 Joined: 18-June 13 
  
 | 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/UC8p8b7goh, 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 This post has been edited by oohmrparis: Nov 13 2014, 16:28if(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;';
 }
 }
 }
 }
 
 |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 14 2014, 06:49 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | Script NameEquipment Popup for MoogleMailDescription Press "c" to open the equipment popup of the attached equipment. The hotkey is customizable.DemoDownload and InstallationFeedbackThis 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.
 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 |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 16 2014, 20:07 |  
		| Tugamos 
 
 
 
 Group: Members Posts: 153 Joined: 18-September 14 
  
 | 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 |  
		|  |  |  
  
     
      |   
           Nov 17 2014, 17:10 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | Script NameAverage Price Calculator for MoogleMailDescription Shows the average price of items attached to a letter at the bottom of the body section.DemoDownload and InstallationFeedbackWorks under the "Inbox", "Read Mail" and "Sent Mail" tabs.
 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 |  
		|  |  |  
  
     
      |   
           Nov 17 2014, 18:38 |  
		| LostLogia4 
 
 
 
 Group: Gold Star Club Posts: 2,716 Joined: 4-June 11 
  
 | QUOTE(djackallstar @ Nov 14 2014, 12:49)  Script NameEquipment Popup for MoogleMail About time this one showed up. (IMG:[invalid ] style_emoticons/default/tongue.gif )  |  
		|  |  |  
  
     
      |   
           Nov 17 2014, 18:47 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | 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. >.> |  
		|  |  |  
  
     
      |   
           Nov 17 2014, 18:57 |  
		| LostLogia4 
 
 
 
 Group: Gold Star Club Posts: 2,716 Joined: 4-June 11 
  
 | 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 |  
		|  |  |  
  
     
      |   
           Nov 18 2014, 12:29 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | 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 |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 18 2014, 18:50 |  
		| LostLogia4 
 
 
 
 Group: Gold Star Club Posts: 2,716 Joined: 4-June 11 
  
 | 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">This post has been edited by LostLogia4: Nov 18 2014, 19:23<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>
 |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 19 2014, 06:34 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | Script NameE-Hentai Gallery Overview - All in OneDescription Appends GP Exchange, Credit Log and Hath Exchange to the Overview tab (under My Home).DemoDownload and InstallationKnown Issues Feedback The order of GP Exchange, Credit Log and Hath Exchange is random.
 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 |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 19 2014, 18:24 |  
		| LostLogia4 
 
 
 
 Group: Gold Star Club Posts: 2,716 Joined: 4-June 11 
  
 | QUOTE(djackallstar @ Nov 19 2014, 12:34)  Script NameE-Hentai Gallery Overview - All in OneDescription Appends GP Exchange, Credit Log and Hath Exchange to the Overview tab (under My Home).DemoDownload and InstallationKnown IssuesThis script was written at the request of LostLogia4, who helped me a lot when I was a noob in HV.
 Feedback The order of GP Exchange, Credit Log and Hath Exchange is random.
 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 )   Now with improved HTML layout: CODE <div class="homebox">This post has been edited by LostLogia4: Nov 19 2014, 18:40<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>
 |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 19 2014, 18:25 |  
		| LostLogia4 
 
 
 
 Group: Gold Star Club Posts: 2,716 Joined: 4-June 11 
  
 | *doublepost*
 This post has been edited by LostLogia4: Nov 19 2014, 18:37
 |  
		|  |  |  
  
     
      |   
           Nov 20 2014, 05:13 |  
		| eleeinos 
 
 
 
 Group: Gold Star Club Posts: 3,720 Joined: 22-December 08 
  
 | QUOTE(Gasior @ Oct 7 2014, 23:19)  Made in free time.HV Equipment Comparison  0.6.4.0  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 ) |  
		|  |  |  
  
    |  |  |  |  
  
     
      |   
           Nov 20 2014, 05:38 |  
		| djackallstar 
 
 
 
 Group: Gold Star Club Posts: 8,222 Joined: 23-July 14 
  
 | 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. |  
		|  |  |  
	2 User(s) are reading this topic (2 Guests and 0 Anonymous Users) 0 Members:  |   
                |  |  |  |  |  |  |