Welcome Guest ( Log In | Register )

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

 
post Apr 25 2016, 21:05
Post #2947
Sapo84



Deus lo vult
********
Group: Gold Star Club
Posts: 3,332
Joined: 14-June 09
Level 500 (Ponyslayer)


QUOTE(hansvar92 @ Apr 25 2016, 16:42) *

I try to Track Drops 2.1.1 with vanilla reloader, and test on Iron v31 and v48.
Track working find for me. But I test very shortly (only 2 equipments drops).
Try vanilla reloader 1.1.1 with this on Iron v31 or v48.
[attachmentid=84396]

I see no reason why this shouldn't be working with Reloader 1.3.3b or last vanilla (unless you're using https).

Also scripts not working with Reloader is usually not a reloader problem, scripts just need to be modded (like hansvar92 did with the above).
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 25 2016, 21:36
Post #2948
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


QUOTE(garm0 @ Apr 26 2016, 02:24) *

Thanks F4tal for being so merciful and thanks for creating the compendium which is of great help.

I did the following tests:

Firefox 45.0.2 + Trackdrops 2.1.0 + Reloader 1.3.3a = does not work. (= gifts, salvaging works but no loot logs which is what I am looking for)
Firefox 45.0.2 + Trackdrops 2.1.0 + Reloader 1.3.2b = no loot logs
Firefox 45.0.2 + Trackdrops 2.1.0 + Reloader 1.3.2 = no loot logs
Firefox 45.0.2 + Trackdrops 2.1.0 + Reloader 1.1 = no loot logs
Firefox 45.0.2 + Trackdrops 2.1.0 + Vanilla Reloader 1.1.1 (latest version) = no loot logs
Firefox 45.0.2 + Trackdrops 2.1.0 + VanillaReloader 1.0.0.0 = LOOT LOGS

BUT, with Firefox 45.0.2 Vanilla Reloader (even latest version) = broken mousemelee, so I was back to click click click...

Should I narrow the "working" (with trackdrops 2.1.0 loot logs) versions of Vanilla Reloader even more?



I mean what do you want to track drops, reloader and browser.
Anyway, I test and fix to Iron v31 and FF v45.0.2 with Vanilla Reloader 1.1.1 and Reloader 1.3.2b.
I only change code order and now it's work on Iron v31 and FF v45.0.2.
Please re-try this with reloader which you want version.
[attachmentid=84416]

But, I don't know why your mousemelee is broken.
My case both version reloader's mousemelee working good.



before
CODE
window.addEventListener('Reloader_reloaded', checkDrop);
checkDrop();
function checkDrop() {
......


after
CODE
function checkDrop() {
......
}
window.addEventListener('Reloader_reloaded', checkDrop);
checkDrop();



For easy test, I remove Superior in Trash Gear.
Line 25:
CODE
if (/(Crude|Fair|Average|Fine|Superior)/.test(equipment.textContent)) equipment = "Trash Gear"; else equipment = equipment.outerHTML; // returns drop with colours


CODE
if (/(Crude|Fair|Average|Fine)/.test(equipment.textContent)) equipment = "Trash Gear"; else equipment = equipment.outerHTML; // returns drop with colours


This post has been edited by hansvar92: Apr 25 2016, 21:39
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 26 2016, 00:21
Post #2949
garm0



Active Poster
*******
Group: Members
Posts: 1,871
Joined: 1-January 10
Level 436 (Godslayer)


QUOTE(hansvar92 @ Apr 25 2016, 21:36) *


Please re-try this with reloader which you want version.
[attachmentid=84416]




Confirmed hansvar92, YOU MADE IT! (IMG:[invalid] style_emoticons/default/biggrin.gif) Your version of TrackDrops is fixed with FF 45.0.2 and reloader 1.3.3b.
It stores "rounds" too but I really don't care (and thus I don't ask for another fix (IMG:[invalid] style_emoticons/default/tongue.gif) ) Edit: ah yes, this feature was included in Trackdrops 2.1.1, I was wondering what it was actually doing...Now I know!

As a token of gratitude for your help guys and , and because I am not rich, I am moogling hansvar92, F4tal and Sapo84, 50k credits each.

Because the time you spent on my (and maybe other people's, I hope so cause this trackdrop script is really handy when you watch vids playing HV and you see an equipment drop -red- and can't check what it is before the no popup takes you to next round -one click on stamina and it is displayed-, or to gather loot stats per difficulty or on a time basis ) problem should be rewarded.

Edit: F4tal, you can update your compendium ^^

This post has been edited by garm0: Apr 26 2016, 00:36
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 26 2016, 07:37
Post #2950
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


HV - Skip Popup v.0.0.0.3 (for Reloader vanilla) [attachmentid=84666]

changes: setTimeout only use popup time > 0.


add popupTime and use_reloader options.
if you mage, popupTime set to you want (100-1000).
line 11:
CODE
var settings = {
    dropStop: true,
    dropStopTime: 5000,
    popupTime: 0,
    use_reloader: true
};


maximum limit of dropStopTime is 10000ms (10 secs).
line 34:
CODE
milliseconds = Math.min(milliseconds, 10000);


This post has been edited by hansvar92: Apr 29 2016, 19:07
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 26 2016, 09:57
Post #2951
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


QUOTE
Edit: F4tal, you can update your compendium ^^

I will in next month - let more scripts are coming on =)
QUOTE
HV - Skip Popup v.0.0.0.2 (for Reloader vanilla)

So we didn't need this script for Reloader 1.3.3b only for Vanilla, isn't it?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 26 2016, 10:28
Post #2952
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


QUOTE(f4tal @ Apr 26 2016, 16:57) *

I will in next month - let more scripts are coming on =)

So we didn't need this script for Reloader 1.3.3b only for Vanilla, isn't it?

Reloader 1.3.3 self auto skip popup.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 26 2016, 10:34
Post #2953
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


QUOTE
Reloader 1.3.3 self auto skip popup.

Thanks, as I thought of. This Reloader + smth or Vanialla + smth become more and more confusing, you know... =(

*by the way your avatar looks like you tired to answer my questions ^^"*
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 26 2016, 10:35
Post #2954
Sapo84



Deus lo vult
********
Group: Gold Star Club
Posts: 3,332
Joined: 14-June 09
Level 500 (Ponyslayer)


QUOTE(hansvar92 @ Apr 26 2016, 10:28) *

Reloader 1.3.3 self auto skip popup.

I was thinking, wouldn't it be better to include skip functionality in vanilla?
In that way it would be a lot easier to skip to next round or hide the popup.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 27 2016, 16:53
Post #2955
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


HV - Round Counter [attachmentid=84539]
round counter source code get/steal FabulousCupcake's Reloader v1.3.3b and tatarime's HV STAT Slim Mod #Reload v0.2.13

HV - counter plus 3.6 for Vanilla Reloader (by tatarime) [attachmentid=85634]
https://forums.e-hentai.org/index.php?s=&am...t&p=4444300

HV - Skip Popup (for Reloader vanilla) [attachmentid=97771]

Reloader vanilla [attachmentid=84805]
fix - Prevent ajax multiple request at a turn. (for CracklingCast)

CracklingCast img src fix for hv v0.84 and add hover area. [attachmentid=103073]
CracklingCastHelper change url when in battle[attachmentid=87999]

v.1.0.3.23 - Fixed bug, can't cast spell to number 10 monster via right click.
v.1.0.3.22 - Improve queue code (before, my code is bad).
v.1.0.3.21 - Added cast "Queue" and some fix by simrock87.

The following list can input to cast queue.
number key, spacebar, mouse wheel and right click.

Found a race condition with CC + Reloader, where if you use a consumable at round end, reloader loads the new mobs and CC starts hovering again without "technically" advancing to the next round.
Also added a little "Queue", though it isn't really one with only 1 allowed entry max, to stay within the 1 action limit, and moved the num-cast into there. Reason for that is that i was annoyed with having to move my mouse to re-imperil on DwD and FSM (IMG:[invalid] style_emoticons/default/heh.gif)
Essentially, instead of directly trying to cast, the num get's written into the queue and then cast on the next hover. Normal non-hover behaviour is the same.
TBH i did not test this further, so this is very much beta so far (IMG:[invalid] style_emoticons/default/dry.gif)

fix20 - fixed bug, can't detect Cloak of the Fallen when Cloak of the Fallen expire turn is 2.
added checkOnlyExpire settings option for low level player.
changed, (even if preferAvatarGod option set to true) always prefer Scroll of Life to Scroll of the Gods.

fix19 - fixed bug, null return from elementFromPoint.
fix18 - fixed hover stop code (not important).

fix17 - changed from middle button click event to wheel up/down event

fix16 - changed from keydown event to keyup event for spacebar and shift key
stop when overcharge >= Settings.limits.oc

fix15 - prevent num key and right click when paused (like hover attack).

fix14 - removed feature determine spell on new round.

fix13 - add innate arcana option (you should be keep over 25% total mp)
useScrollOfLife: false, // if set to true, prefer Scroll of Life to cast Spark of Life or IA when Cloak of the Fallen without Spark of Life
innateArcana: ['Haste', 'Protection', 'Spirit Shield', 'Shadow Veil', 'Spark of Life'],

fix12 - fixed number key issue
Note: Display action name (mouse cursor on action) to override selected action when display action name and number key will not any actions when all cooldown.
num : [], // List to cast when number key is pressed (if set to [], disable number key spells)
stopWhenChanneling : -1, // Stop when less than or equal to channeling buff expire turn (if < 0, disable)
sparkOfLife: 0, // 0:IA, 1:cast, 2: scroll, when get Cloak of the Fallen without Spark of Life
[attachembed=87987]
Note: if number key spells can't any actions when length of Settings.spells.num greater than 0, number key will not work.

fix11 - gem order
fix10 - add select spell cast on hover. how to reset? click "ATTACK" (toggle to "Battle Time").
add expire turn option. set to true detect expire at 0 turn. but sometimes 0 turn is too short.
fixed bug not use normal scroll when have not avatar/gods scrolls with preferAvatarGod set to true
fix9 - change detect buff expire turn 1 to 0
fix8 - support scrolls, infusions, Flower Vase and Bubble-Gum.
fix7 - fixed bug only once parse to item slots at begin of round.
fix6 - fixed bug attack wrong target ('Stop beating dead horses')
fix5 - fixed bug ccrack sort
fix4 - Add ccrack clickable paramater
You should be edit placeDisplay in buffCheck (line 446).
If you want click rather than mouseover, 4th paramater set to true.
CODE

/**
* Creates and places display for buffs
* @param {String}    icon    img src
* @param {String}    style   css style
* @param {function}  action  action to perform
* @param {boolean}   clickable    onclick
* @param {number}    insertBefore Optional. insert the new node before
*/
function placeDisplay(icon, style, action, onclick, insertBefore) {

fix3 - Fixed bug: Invalid target

This is temporary fix. I wait for simrock87's next update.
Description: here

Changes:
Replace Spirit Stance image and Full-Cure.
Add hover area option.
Add stop when channeling buff and channeling buff image.
Change ccrack icon order. This change will make consume item order.
Settings.heal_rotation, channeling, gem, hp-mp-sp draught-potion-elixir, expire buff.

Line 17:
CODE
hover_area : 1, // 0:none, 1:mob box, 2:mob icon, 3:mob name, 4:mob status; inspired by sssss2

[attachembed=84542]

Right click feature move to Middle click.
- Bug
Line 841:
CODE

// fix me: Middle click on monster pane, trigger normal attack on Iron v31 (not FF 46.0).
// <div id="mkey_1" ... onclick="battle.hover_target(this); battle.commit_target(1)" // cause


My wind mage setting.
CODE

Settings = {
    use_reloader : true, // set to true if you're using a Reloader
    hover_area : 4, // 0:none, 1:mob box, 2:mob icon, 3:mob name, 4:mob status; inspired by sssss2
    stopWhenChanneling : -1, // Stop when less than or equal to channeling buff expire turn (if < 0, disable)
    checkOnlyExpire : true, // set to true, if you want to check only expiring buff.
    expireTurn: false, // if set to true, expire turn prefer 0 to 1
    preferAvatarGod : false, // prefer avatar and god to others
    useScrollOfLife: false, // if set to true, prefer Scroll of Life to cast Spark of Life or IA when Cloak of the Fallen without Spark of Life
    innateArcana: ['Haste', 'Protection', 'Spirit Shield', 'Shadow Veil', 'Spark of Life'],
    spells       : { // Pay Attention to typos. Is case-sensitive
      hover   : ['Storms of Njord', 'Downburst', 'Gale'], // List of Hover spells
      num     : ['Weaken'], // List to cast when number key is pressed
      right   : ['Imperil'] // List to cast when right click on monster pane (hover_area set to neither 0 nor 1)
    },
    limits       : {  // Limits are percentage based. i.e. 0.8 = 80%
      heal    : 0.55,  // Heal rotation threshold
      hdraught: 0.75, // Use Health Draught at or below
      mdraught: 0.75,  // Use Mana Draught at or below
      mpotion : 0.5,  // Use Mana Potion at or below
      melixir : 0.0,  // Use Mana Elixir at or below
      sdraught: 0.75, // Use Spirit Draught at or below
      spotion : 0.625,  // Use Spirit Potion at or below
      selixir : 0.0,  // Use Spirit Elixir at or below
      oc      : 225 / 250 // Use Spirit Stance at or below (If > 1, never use spirit stance)
    },
    /**
     * Heal Rotation, switch order or remove options to affect heal rotation
     */
    heal_rotation: [
      Common.recovery.cure,
      Common.recovery.hpotion//,
      //Common.recovery.fullcure,
      //Common.recovery.helixir
    ],

RiddleLimiterPlus twice click fix [attachmentid=84543]
author: holy_demon
I just this fix No keyboard, No one click.


HV - Left Focus UI [attachmentid=103074] (all in one pack for Left Focus UI)
This packs include below 9 scripts.

HV - counter plus 3.6 for Vanilla Reloader (by tatarime)
HV - Skip Popup
Reloader vanilla
CracklingCastHelper
[attachmentid=103074]
[attachmentid=87998]
[attachmentid=97772]
[attachmentid=86412]
[attachmentid=86260]

Reset tps: Alt + C
[attachmentid=86264]

I shortly test on Iron v31.
Thank you all.

QUOTE(Sapo84 @ Apr 26 2016, 04:05) *

I see no reason why this shouldn't be working with Reloader 1.3.3b or last vanilla (unless you're using https).

Also scripts not working with Reloader is usually not a reloader problem, scripts just need to be modded (like hansvar92 did with the above).


IMHO, Although mostly scripts are not support for reloader.
As you know, external scripts can support for reloader through addEventListener.
For example, MouseMelee is very important feature.
But vanilla reloader not include MouseMelee.
And he made CracklingCast for vanilla reloader.

This post has been edited by NerfThis: May 20 2017, 18:52
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 27 2016, 19:00
Post #2956
milannews




*******
Group: Gold Star Club
Posts: 1,180
Joined: 8-May 12
Level 500 (Godslayer)


QUOTE(hansvar92 @ Apr 27 2016, 23:53) *



CracklingCast img src fix for hv v0.84 and add hover area. [attachmentid=84541]
This is temporary fix. I wait for simrock87's next update.
Description: here



Thanks for update

But, missing comma at line 21

fix
CODE
num    : ['Orbital Friendship Cannon']

to
CODE
num     : ['Orbital Friendship Cannon'],


This post has been edited by milannews: Apr 27 2016, 19:02
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 27 2016, 19:39
Post #2957
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


QUOTE(milannews @ Apr 28 2016, 02:00) *

Thanks for update

But, missing comma at line 21

fix
CODE
num    : ['Orbital Friendship Cannon']

to
CODE
num     : ['Orbital Friendship Cannon'],


Thank you, fixed it.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 04:32
Post #2958
幻猫儿



Sweetness Overload!
**********
Group: Gold Star Club
Posts: 7,591
Joined: 4-December 15
Level 422 (Journeyman)


I followed the wiki and downloaded mousemelee+bettermelee+hoverplay+showgem, but due to my awful limited knowledge of scripts some uncontrollable issues only showgem and bettermelee worked for me. What I want to know is that is there a version of bettermelee which can automatically be deactivated when below a certain percentage of health, just like mousemelee and hoverplay described?
Thanks to everyone who answers my question (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 10:13
Post #2959
garm0



Active Poster
*******
Group: Members
Posts: 1,871
Joined: 1-January 10
Level 436 (Godslayer)


Hi 诱骗者迪卡伊, I strongly advise you to switch to a script that is updated and does everything you want: Reloader 1.3.3b. (basically you can delete all 4: mousemelee+bettermelee+hoverplay+showgem and replace them all with Reloader)

It includes Hover, Showgem and deactivation below a certain health, that you can set by yourself (manage the script), and it will make your gaming experience way better and way faster:

the wiki is outdated sadly but we are lucky enough that we have F4tal (and many others who create/update the scripts) in our community and he keeps an updated compendium of scripts:

https://forums.e-hentai.org/index.php?showtopic=190038

and link for Reloader 1.3.3b:
[www.mediafire.com] Reloader [1.3.3b] (Work perfectly on HV 0.83) Fix for HV 0.84

This post has been edited by garm0: Apr 28 2016, 10:14
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 11:40
Post #2960
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


QUOTE
I followed the wiki and downloaded mousemelee+bettermelee+hoverplay+showgem, but due to my awful limited knowledge of scripts some uncontrollable issues only showgem and bettermelee worked for me. What I want to know is that is there a version of bettermelee which can automatically be deactivated when below a certain percentage of health, just like mousemelee and hoverplay described?
Thanks to everyone who answers my question smile.gif

For all this years we have a LOT script solution here.
So far we have this scripts:
  1. Crackling Cast [1.0.3f] - the most complicated and most superb script ( https://forums.e-hentai.org/index.php?s=&am...t&p=4453976 ) , suit good for mage and melee. You can define when hovering should switch off (when your HP,MP,Sp are low), but disadvantage of this script - it may looks complicated for newcomers. But you can spend an one hour to proper con figurate it and use until end of world.
  2. HoverPlay [1.9.5] - same as Crackling Cast from same author. A little less complicated and more straightforward setting-wise. ( https://forums.e-hentai.org/index.php?s=&am...t&p=4353125 )
  3. SpellSpam [3.5.2.14] - this script design for mage, so if you are melee you can avoid it ( https://forums.e-hentai.org/index.php?s=&am...t&p=4384809 )
  4. Reloader [1.3.3b] - this script do two things: speed overall battle speed and provide ability to hit enemies with hovering with simply HP/MP/SP management. ( https://forums.e-hentai.org/index.php?s=&am...t&p=4441690 ) , and many more in Compendium (see link in my signature)
In your situation better to install Reloader [1.3.3b] and check this out. It will have all nice feature you want (hover on enemies, stop when your HP, MP and SP are low). If you want better battle managment (shortcut to use potions, quick spell use, e.t.c.) - install Reloader [1.3.3b] & Crackling Cast [1.0.3f] - this is best combo possibly and they worked very well together ^^"
Oh, and bytheway - Reloader [1.3.3b] has next scripts in-build: noBlinking (stop buff blinking when they have 1-3 to expire), effectDuration (show how many turns this spell will stand on), gemIcon (provide icon for gems), roundCounter (show how many round you beat and how many to go), hvStateHP (show enemies HP near their name), skipToNextRound (automatically click you are victorious popup), counterPlus (show how many turns & time you spend in beat this arena and your credits and exp income) and many more.

So, as garm0 said - this is best script for now and should be must have for everyone (except very specific situation) and check Crackling Cast - it will greatly increase your speed and battle comfort =)

QUOTE
the wiki is outdated sadly but we are lucky enough that we have F4tal

*And here cult of persona is rising* xD
Yes, wiki is outdated in script terms, but this is because script community so active that wiki contributors have not enough time to react properly. It is not their flaw - it is all about impossibly to cover everything. For now we have Compendium, maybe in future we will move for more comfort solution (github?). In my opinion the best way is cover all scripts in detail and provide link to download all script in one archive. =/

This post has been edited by f4tal: Apr 28 2016, 15:10
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 21:44
Post #2961
幻猫儿



Sweetness Overload!
**********
Group: Gold Star Club
Posts: 7,591
Joined: 4-December 15
Level 422 (Journeyman)


@garm0&f4tal
Thanks to both of you but I have issues running the reloader.
What I did was I downloaded the user.js file and dragged it into the "extensions" tab of my chrome (the same thing as what I did to the other 4 user.js files I downloaded) and it simply does not work.
Here is a screenshot from my extensions tab:Attached Image
The same method worked for showgem and bettermelee but did not work for hovermelee.
I'd like to know if I did anything wrong or additional things have to be done.

This post has been edited by 诱骗者迪卡伊: Apr 28 2016, 21:46
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 21:54
Post #2962
nobody_xxx



((´☻ω☻`) $◞౪◟$ (´☻ω☻`))
***********
Group: Gold Star Club
Posts: 13,753
Joined: 7-December 10
Level 496 (Godslayer)


you need tampermonkey extensions for some scripts like reloader and hoverplay (IMG:[invalid] style_emoticons/default/laugh.gif)

just download it from chrome webstore (IMG:[invalid] style_emoticons/default/heh.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 22:05
Post #2963
幻猫儿



Sweetness Overload!
**********
Group: Gold Star Club
Posts: 7,591
Joined: 4-December 15
Level 422 (Journeyman)


QUOTE(nobody_xxx @ Apr 28 2016, 21:54) *

you need tampermonkey extensions for some scripts like reloader and hoverplay (IMG:[invalid] style_emoticons/default/laugh.gif)

just download it from chrome webstore (IMG:[invalid] style_emoticons/default/heh.gif)


now it worked.
I just went to the actual thread, played with tampermonkey for a while and now it's running.
Thanks to you all (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 22:24
Post #2964
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


QUOTE
I just went to the actual thread, played with tampermonkey for a while and now it's running.

You can find more useful information about script configuration and installation in special thread: forums.e-hentai.org/index.php?showtopic=191192
Good to know everything works for you.
Check this thread periodically - someday new version of reloader may be released =)

P.S. Checked my mediafire account - Reloader 1.3.3a was download 170 times and Reloader 1.3.3b was download 50 times. Not bad ^^
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 28 2016, 23:33
Post #2965
ginjok



The Villain
*******
Group: Gold Star Club
Posts: 1,736
Joined: 23-April 12
Level 500 (Godslayer)


I'm currently using these:
Reloader 1.3.3b,Spell Spam #Reloader 3.5.2.1, HV STAT Slim Mod #Reloader 0.2.16

If anyone know how to change these:

How to use a gem just by hovering?

Channeling on the last cast of the round requires manual input to skip to next round, any fix?

A way to right click to recast the draught when it expires?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 29 2016, 02:31
Post #2966
Superlatanium



Dreaming of optimizing the system
**********
Group: Gold Star Club
Posts: 7,629
Joined: 27-November 13
Level 500 (Godslayer)


Edit: Many things to do, I'll post the upgraded version in a day or few. 1.1.1 will be obsolete very soon. You may consider this as a nearly-broken preview only. (It will work in WTB just fine, but if you save more than a couple pages of WTS it will likely hit the localStorage limit quickly and break)

Edit2: No I'm serious, if you download it now you'll probably be disappointed, just wait a few hours

Edit3: Here's a preliminary version that doesn't break localStorage size limits, for those of you who are over-eager for a working version. Mostly untested, but it probably works on Firefox at least. Your browser must support IndexedDB.

Edit4: See latest post



SmartSearch 1.1.1


Before:
Want to buy an item from WTS at the best price? Click on every single thread on each of the 6 pages and control-F.
Want to sell an item in WTB at the best price? Click on every single thread on each of the 6 pages and control-F.
Want to find an equipment, such as Magnificent+ prefixed Rapier of the Nimble? Too bad, the search function doesn't support wildcards. You'll have to search for each prefix individually.
Magnificent Fiery Rapier of the Nimble
Legendary Fiery Rapier of the Nimble
Magnificent Shocking Rapier of the Nimble
Legendary Shocking Rapier of the Nimble
etc. Also, you can't filter search results for the first few posts of recent shop threads (the posts that have equipment lists), so the posts you find may be from players who haven't logged on in a year.
Now:
Want to buy an item from WTS at the best price? SmartSearch with a single click and get a list of every line in every thread in WTS that includes that item, all on one page.
Want to sell an item in WTB at the best price? SmartSearch and get a list of every line in every thread in WTB that includes that item, all on one page.
Want to find an equipment? SmartSearch for the equipment name (with wildcards if you want) and get a list of every line in every thread in WTS that matches (links to thread and equipment included). You also have the option of searching with a regular expression.
Quick start instructions:

Attached Image

Notes:
  • First "Save" every page in WTS and WTB, and then "Save" again every so often when you want to update the database.
  • Type in the search string and press SmartSearch while on WTS to search for threads in WTS, or while on WTB to search for threads in WTB.
  • Use * as a wildcard. You can also click the checkbox to search for a [www.regular-expressions.info] regular expression instead.
  • Not case sensitive. Both ordinary searches and regular expressions will match any case in the search string and search results.
  • Press "Ignore" to display an interface which gives you the option of ignoring the selected post, or the entire selected thread. From that interface you can also remove other posts and threads that you ignored in the past.
  • Strikethroughs strikethroughs and [url]s are preserved.
  • When Saving threads, multiple spaces in a post are all replaced with a single space, so you don't need to worry about search results not coming up due to the poster's bad formatting.
  • Can be used on forums 77 and 78 (WTS and WTB).
Try it, please report any bugs!

Edit: Working on (personal notes):
* On left-click, open links in new tab instead of replacing the SmartSearch about:blank page
* Local storage limits are preventing some people from saving many pages of threads. WTS in particular is eating up too much space. Compression algorithm? Don't compress SmartSearch.last ? Or IndexedDB?
* only HV links are saved
* Equipment EID column?
* "Post last edited" column?
* "Thread last saved" column?
* Price column? /(\d+[km])/i
* On ignore click, "remove from database" option?

All done, debugging and testing now...

This post has been edited by Superlatanium: May 2 2016, 12:06
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 147 148 149 150 > » 
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: 23rd July 2025 - 07:21