Loading. Please Wait...
|
|
|
HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |
|
Oct 22 2013, 14:53
|
ctxl
Group: Members
Posts: 425
Joined: 20-May 12
|
HV - Track Drops for 0.77 [ pastebin.com] Version 2.1.1 now has mostly-accurate round counting and stats for nerds. Otherwise, it's just like 2.1. The Non-HVTD data bit is just there to give you an idea of how much localStorage is being used by other scripts. You should reset the drop data once it reaches 1MB, as most browsers allow around 2.5MB of localStorage per origin/domain.
|
|
|
Oct 25 2013, 13:48
|
varst
Group: Gold Star Club
Posts: 11,561
Joined: 30-March 10
|
HV Equipment Comparison Script Update. Thanks ggxxsol! [ userscripts.org] http://userscripts.org/scripts/show/173494Fix some issues caused by changes in wiki presentation. This post has been edited by varst: Oct 25 2013, 13:49
|
|
|
|
|
|
Oct 27 2013, 08:37
|
aided
Group: Gold Star Club
Posts: 773
Joined: 1-September 12
|
I tried to modify Equipment Comparison Script, to adjust values to 0.77 updated wiki and see comparison in two demical places. And I thought it was almost done...but some error occured in Leather Boots section. W and E key doesn't work in specific quality(e.g. under Average-E only on strike, Sup-both). I used Plate section to create Leather section, and I didn't touch something that can make this problem...actually I don't know JavaScript(I only learded VB about...12 years ago?), so I just "modified" existing scripts. I think the rest parts are ok, so I'm using this now...but something uncomfortable remains.I solved the problem myself...just one wrong letter found.
hentaiverse_equipment_comparison_0.77.zip ( 12.75k )
Number of downloads: 75Umm...is it bad manner to do this without noticing the original creator? I'm a little bit worried about it... This post has been edited by aided: Oct 27 2013, 12:54
|
|
|
|
|
|
Nov 1 2013, 17:09
|
f_riz
Group: Gold Star Club
Posts: 1,051
Joined: 13-December 10
|
QUOTE(ctxl @ May 19 2013, 12:44) Item Menu. kudos to tiap again, changes are as follows: line 34 : var target = item.querySelector('.fd2 > div'); line 142 : var temp = data.match(/equips.set\((\d+),\s?'(.+?)'\)/);
itemmenu.user.js.zip ( 2.22k )
Number of downloads: 156 I just made a mistake that I salvaged a valuable equip while moogle. (IMG:[ invalid] style_emoticons/default/cry.gif) I think some actions in moogle are unecessary. So I add several lines in Item Menu. if (document.location.href.match(/ss\=mm/)) hideMenu('Salvage','Upgrade','Enchant','Item World');
|
|
|
|
|
|
Nov 2 2013, 09:54
|
yobi00
Group: Members
Posts: 700
Joined: 13-August 13
|
QUOTE(aided @ Oct 27 2013, 15:37) I tried to modify Equipment Comparison Script, to adjust values to 0.77 updated wiki and see comparison in two demical places.
Thanks for your effort in updating the script! It might be a personal preference, but I liked the old comparison method with whole values, since they only change in increments of one when the "Base multiplier/Fluctuation" is taken into account, bar for slight variation in "Quality Bonus". For anyone wanting the old behaviour back (I think that it doesn't break anything): CODE --- hentaiverse+equipment+comparison+0.77.user.js 2013-10-27 19:50:38.000000000 +0900 +++ hentaiverse+equipment+comparison+0.77.user.js.mod 2013-11-02 16:37:55.531565591 +0900 @@ -45,7 +45,7 @@ resultStr='Error'; break; } - equipResult = (baseData[i + offset] - equipData).toFixed(2); + equipResult = ((baseData[i + offset] - equipData) / multiplier).toFixed(0); if (equipResult != 0) resultStr+= '-' + equipResult; break; } This post has been edited by yobi00: Nov 2 2013, 10:08
|
|
|
|
|
|
Nov 2 2013, 22:22
|
ctxl
Group: Members
Posts: 425
Joined: 20-May 12
|
HV - Track Drops[ pastebin.com] Version 2.1.2 tracks when you last had a random encounter. It then displays remaining time until the next RE (or DotD) in the page title.
|
|
|
Nov 3 2013, 02:50
|
eramosat
Group: Gold Star Club
Posts: 1,366
Joined: 9-October 10
|
QUOTE(aided @ Oct 27 2013, 02:37) I tried to modify Equipment Comparison Script, to adjust values to 0.77
thank you! QUOTE(yobi00 @ Nov 2 2013, 03:54) Thanks for your effort in updating the script! It might be a personal preference, but I liked the old comparison method with whole values... For anyone wanting the old behaviour back
thank you too!
|
|
|
Nov 4 2013, 10:27
|
evanpiper896
Group: Members
Posts: 398
Joined: 10-March 11
|
Is there a way to preserve user settings for the STAT script somehow after I clear my cookies/cache?
|
|
|
Nov 5 2013, 07:01
|
ctxl
Group: Members
Posts: 425
Joined: 20-May 12
|
QUOTE(evanpiper896 @ Nov 4 2013, 00:27) Is there a way to preserve user settings for the STAT script somehow after I clear my cookies/cache? This allows you to import/export all localStorage data on HV. Useful for copying settings between browsers.
localstorage.user.zip ( 944bytes )
Number of downloads: 105You'll find it at the bottom of Character > Settings. Due to base-64 limitations, Unicode characters will become gibberish upon export.
|
|
|
|
|
|
Nov 5 2013, 10:50
|
aided
Group: Gold Star Club
Posts: 773
Joined: 1-September 12
|
QUOTE(yobi00 @ Nov 2 2013, 07:54) Thanks for your effort in updating the script! It might be a personal preference, but I liked the old comparison method with whole values, since they only change in increments of one when the "Base multiplier/Fluctuation" is taken into account, bar for slight variation in "Quality Bonus". For anyone wanting the old behaviour back (I think that it doesn't break anything)
Thanks for your advice! I made a little variation of that script again. It's not a big change. All I did is only this. First thing is numbers under decimal point. Most shops use only one decimal place, so I did it. Second thing is double comparison. I had a club that has Ex-3.41 WD, but it was actually Sup+0.06 - more close to max than exmax. So this is added. In the zip, two files exists. One with ~modified.user is before yobi00's advice, and one with ~modified+again.user is after yobi00's advice - it uses multiplier when calculating numbers. You may use whatever you like.
hentaiverse_equipment_comparison_0.77plus_modified_again.user.zip ( 26.2k )
Number of downloads: 92special thanks to Cats Lover, that he gave me a hand to make double comparison active. Oh, a little bit more - my friends using this script claimed about ADB of Power Slaughter, so only that numbers are 0.76 wiki version. This post has been edited by aided: Nov 6 2013, 02:51
|
|
|
|
|
|
Nov 5 2013, 13:28
|
Pillowgirl
Group: Gold Star Club
Posts: 5,389
Joined: 2-December 12
|
Seeing all these base scripts makes me glad i can estimate value and quality of an item at a glance without having to open a ranges page or compare items.
This post has been edited by Pillowgirl: Nov 5 2013, 13:29
|
|
|
Nov 6 2013, 03:15
|
hihohahi
Group: Members
Posts: 661
Joined: 19-February 09
|
For the HV Keybind 2.5.0, any way for Cast function not deselect a spell if it's already selected?
|
|
|
|
|
|
Nov 7 2013, 16:58
|
Malenk
Group: Gold Star Club
Posts: 974
Joined: 12-June 12
|
QUOTE(aided @ Nov 5 2013, 08:50) Thanks for your advice! I made a little variation of that script again. It's not a big change. All I did is only this. First thing is numbers under decimal point. Most shops use only one decimal place, so I did it. Second thing is double comparison. I had a club that has Ex-3.41 WD, but it was actually Sup+0.06 - more close to max than exmax. So this is added. In the zip, two files exists. One with ~modified.user is before yobi00's advice, and one with ~modified+again.user is after yobi00's advice - it uses multiplier when calculating numbers. You may use whatever you like.
hentaiverse_equipment_comparison_0.77plus_modified_again.user.zip ( 26.2k )
Number of downloads: 92special thanks to Cats Lover, that he gave me a hand to make double comparison active. Oh, a little bit more - my friends using this script claimed about ADB of Power Slaughter, so only that numbers are 0.76 wiki version. thanks for the update. i have some doubts though: i probably don't get how it's supposed to work but since in your version the numbers are precise to the second decimal i did the math manually with the numbers on the wiki and checked them and they don't match. also both versions fail to open the right tab and highlight the stats when i press R (firefox) This post has been edited by Malenk: Nov 7 2013, 17:26
|
|
|
|
|
|
Nov 8 2013, 03:09
|
aided
Group: Gold Star Club
Posts: 773
Joined: 1-September 12
|
QUOTE(Malenk @ Nov 7 2013, 14:58) thanks for the update. i have some doubts though: i probably don't get how it's supposed to work but since in your version the numbers are precise to the second decimal i did the math manually with the numbers on the wiki and checked them and they don't match.
also both versions fail to open the right tab and highlight the stats when i press R (firefox)
Umm...I just adjusted existing script, so I don't fully understand this. The calculation is done by (equipment number - base number(manual input by wiki)), and '~+again' has ( / multiplier) added. In my computer, the former one works precisely, with ±0.01 error. You may compare both. And about the highlight problem, I suffered the same thing - from original script. I want to solve it, but I don't know how. This post has been edited by aided: Nov 8 2013, 03:11
|
|
|
|
|
|
|
|
|
Nov 16 2013, 03:47
|
walkleft
Group: Members
Posts: 303
Joined: 28-September 11
|
QUOTE(aided @ Nov 5 2013, 00:50) Thanks for your advice! I made a little variation of that script again. It's not a big change. All I did is only this. First thing is numbers under decimal point. Most shops use only one decimal place, so I did it. Second thing is double comparison. I had a club that has Ex-3.41 WD, but it was actually Sup+0.06 - more close to max than exmax. So this is added. In the zip, two files exists. One with ~modified.user is before yobi00's advice, and one with ~modified+again.user is after yobi00's advice - it uses multiplier when calculating numbers. You may use whatever you like.
hentaiverse_equipment_comparison_0.77plus_modified_again.user.zip ( 26.2k )
Number of downloads: 92special thanks to Cats Lover, that he gave me a hand to make double comparison active. Oh, a little bit more - my friends using this script claimed about ADB of Power Slaughter, so only that numbers are 0.76 wiki version. I have a question about equipment comparison script. I saw older version of script printed out GODLIKE, if the equipment was upgraded beyond Legendary max value. Does it still do that or it is fixed to print out base value? It was one of the main reason I didnt use the script, but to think about it.. What dah heck, I will never use upgraded legendary in near future anyway. Well, thanks for the script.
|
|
|
|
|
|
Nov 17 2013, 06:47
|
FiniteA
Group: Members
Posts: 2,419
Joined: 3-November 11
|
I wrote a script that renders a one-click-sell-all buttons in EQ shop. After confirm, it will sell all items of all types. Save time to sell each type one by one. [ dpaste.com] http://dpaste.com/1468339/
hvOneClick.user.js.zip ( 1.27k )
Number of downloads: 87This post has been edited by FiniteA: Nov 17 2013, 07:03
|
|
|
|
|
|
Nov 17 2013, 07:50
|
aided
Group: Gold Star Club
Posts: 773
Joined: 1-September 12
|
QUOTE(walkleft @ Nov 16 2013, 01:47) I have a question about equipment comparison script.
I saw older version of script printed out GODLIKE, if the equipment was upgraded beyond Legendary max value. Does it still do that or it is fixed to print out base value?
It was one of the main reason I didnt use the script, but to think about it.. What dah heck, I will never use upgraded legendary in near future anyway. Well, thanks for the script.
Umm, you mean that you want Leg+x.x, rather than GODLIKE? If then, this might not fill your demand. This shows Peer-x.x over Leg-x.x, but over Peer is GODLIKE. Maybe I have to think about that...
|
|
|
|
|
|
|
|
|
Nov 19 2013, 02:27
|
aided
Group: Gold Star Club
Posts: 773
Joined: 1-September 12
|
QUOTE(letmegitdat @ Nov 17 2013, 13:20) Oh my....what happened? If you're using the script with multiplier, you may see something different that I see. I'm using one without multiplier, and I see Crit:Sup-1.7, INT:Sup-3.0, PMI:Sup-2.8. About Power helmet ADB, I found some errors(by your pointing. thx!). It may print out right numbers now(still not EXACTLY correct, but it can be some help). Use this one, and please tell me if you suffer same trouble.
hentaiverse_equipment_comparison_0.77plus_modified_.user.zip ( 13.09k )
Number of downloads: 56This post has been edited by aided: Nov 19 2013, 02:29
|
|
|
|
|
|
8 User(s) are reading this topic (8 Guests and 0 Anonymous Users)
0 Members:
|
|
|
|
|
|
|