Loading. Please Wait... 
 |
 |
 |
[SHOP][SCRIPT][IW] HolyDemon Shop (0.82 update 13/07), Legendaries, IW Service@15c/pxp, lv5/4 potencies, Crystal pack@40k(500) Figurine@60k Leg Savage Power Slaughter, Peerless Frugal Mjolnir Phase |
|
Jan 27 2014, 15:26
|
holy_demon
Group: Gold Star Club
Posts: 5,417
Joined: 2-April 10

|
QUOTE(Owyn @ Jan 28 2014, 00:09)  simple drop-down select of difficulty on any page it's shown (IMG:[ invalid] style_emoticons/default/happy.gif) **and Innate Arcanas below that ^3^ difficulty is already done with inline difficulty changer It was my inspiration for doing inline equipment changer I don't really find changing Innate Arcana is too useful. I leave all my IA on Haste/SV and never come back again. Anyway, you already know scripting, so DIY. (IMG:[ invalid] style_emoticons/default/tongue.gif) I'd suggest you modiying the Inline difficulty inline changer code since it already deals with the setting page. QUOTE(jlak @ Jan 27 2014, 23:12)  Is possible a auto-trainning script?Continue training until target level http://hentaiverse.org/?s=Character&ss=trWill consider doing it when I start to grind training (IMG:[ invalid] style_emoticons/default/sleep.gif) but I will put it on the list This post has been edited by holy_demon: Jan 27 2014, 15:33
|
|
|
|
 |
|
Jan 27 2014, 20:57
|
Owyn
Group: Members
Posts: 692
Joined: 12-May 10

|
QUOTE I don't really find changing Innate Arcana is too useful. I leave all my IA on Haste/SV and never come back again. for high difficulty runs I use shadow veil as 2nd and for daily arenas on hard I'd use just protection there not to waste MP
|
|
|
Jan 27 2014, 21:01
|
holy_demon
Group: Gold Star Club
Posts: 5,417
Joined: 2-April 10

|
QUOTE(Owyn @ Jan 28 2014, 05:57)  for high difficulty runs I use shadow veil as 2nd and for daily arenas on hard I'd use just protection there not to waste MP
Why do you care about wasting MP on arena that you can clear with only half the MP pots you're bringing? This post has been edited by holy_demon: Jan 27 2014, 21:01
|
|
|
Jan 27 2014, 21:04
|
Owyn
Group: Members
Posts: 692
Joined: 12-May 10

|
QUOTE half the MP pots you're bringing? not half, usually - none ^3^ i use gems instead, that's why.
|
|
|
Jan 27 2014, 22:14
|
holy_demon
Group: Gold Star Club
Posts: 5,417
Joined: 2-April 10

|
QUOTE(Owyn @ Jan 28 2014, 06:04)  not half, usually - none ^3^ i use gems instead, that's why.
When I was at your level, only IWBTH arenas could give me that kind of trouble, and I still have to keep Haste/Protection/SV/SS all the time anyway...
|
|
|
Jan 27 2014, 23:29
|
Owyn
Group: Members
Posts: 692
Joined: 12-May 10

|
QUOTE When I was at your level, only IWBTH arenas could give me that kind of trouble, and I still have to keep Haste/Protection/SV/SS all the time anyway...
whaaa? you calling using no pots on hard dif. arena a trouble? O_o
|
|
|
Jan 27 2014, 23:55
|
holy_demon
Group: Gold Star Club
Posts: 5,417
Joined: 2-April 10

|
QUOTE(Owyn @ Jan 28 2014, 08:29)  whaaa? you calling using no pots on hard dif. arena a trouble? O_o
Oh you meant using no pot... thought you were saying having no pot. Then why do you even need to save mana in the 1st place? You have plenty of mana to spare...
|
|
|
Jan 28 2014, 00:52
|
Owyn
Group: Members
Posts: 692
Joined: 12-May 10

|
QUOTE Then why do you even need to save mana in the 1st place? You have plenty of mana to spare... to be sure not to waste a single pot on hard arenas (IMG:[ invalid] style_emoticons/default/happy.gif) *But anyway looks like I overthinked mana consumption, just cleared all arena with shadow veil. whatever.
|
|
|
|
 |
|
Jan 28 2014, 04:09
|
Cats Lover
Group: Gold Star Club
Posts: 2,800
Joined: 18-April 13

|
QUOTE(Owyn @ Jan 28 2014, 03:57)  for high difficulty runs I use shadow veil as 2nd and for daily arenas on hard I'd use just protection there not to waste MP
How about use another equip set? I'm doing for it (IMG:[ invalid] style_emoticons/default/smile.gif) My 1st equip set's IA is Protection, Haste, Spirit Shield while 2nd equip set's IA is Protection, Haste. Besides IA settings, all other things like equipment, ability, battle items, quickbar setting are the same. This post has been edited by Cats Lover: Jan 28 2014, 04:10
|
|
|
Jan 30 2014, 08:23
|
Homicidalsage
Group: Catgirl Camarilla
Posts: 1,370
Joined: 8-April 08

|
Is there a script that can permanently keep open the Skillbook or Items tabs while battling or would that be possible to make?
|
|
|
|
 |
|
Jan 30 2014, 09:09
|
Razor320
Group: Members
Posts: 220
Joined: 17-October 13

|
QUOTE(Homicidalsage @ Jan 30 2014, 08:23)  Is there a script that can permanently keep open the Skillbook or Items tabs while battling or would that be possible to make?
You can do it without script, with CSS styles. Though it not so nice - buttons will not work, so, yes, it would be permanent. If you use GreaseMonkey/Scriptish/Tampermonkey, you can use following code: CODE unsafeWindow.battle.toggle_magict_pane(); If not, you can use following code: CODE document.getElementById("togpane_log").style.display = "none"; document.getElementById("togpane_magict").style.display = ""; If you want items instead of spells, replace 'magict' with 'item'. This post has been edited by Razor320: Jan 30 2014, 09:11
|
|
|
|
 |
|
Jan 30 2014, 09:26
|
Homicidalsage
Group: Catgirl Camarilla
Posts: 1,370
Joined: 8-April 08

|
QUOTE(Razor320 @ Jan 30 2014, 20:09)  You can do it without script, with CSS styles. Though it not so nice - buttons will not work, so, yes, it would be permanent. If you use GreaseMonkey/Scriptish/Tampermonkey, you can use following code: CODE unsafeWindow.battle.toggle_magict_pane(); If not, you can use following code: CODE document.getElementById("togpane_log").style.display = "none"; document.getElementById("togpane_magict").style.display = ""; If you want items instead of spells, replace 'magict' with 'item'. Thanks Razor but using that I wouldn't be able to switch tabs? Cause that would be inconvenient I'd like to be able to click one and have it stay open while battling and be able to switch to another tab or between skills and spells and have the last one clicked to stay open until another is selected is that possible? Something even more useful but probably difficult to implement would be being able to customize the battle log area with a combination of a custom selection of all tabs (skills, spells and items) and have them placed on a single custom tab page that can be made to remain open. Not sure how useful that would be for most people but playing on a tablet would be a lot more efficient. This post has been edited by Homicidalsage: Jan 30 2014, 09:35
|
|
|
|
 |
|
Jan 30 2014, 11:29
|
VriskaSerket
Group: Catgirl Camarilla
Posts: 4,118
Joined: 27-December 08

|
QUOTE(holy_demon @ Jan 23 2014, 07:05)  HV Round Counter 1.0 New
HVRoundCounter_1.0.user.zip ( 884bytes )
Number of downloads: 361Show current round/max round below the stamina hi, i have a similar script with same problem: go into battle, hold 11111111111111, round counter are flashing, all standart elements not flashing. may be you know with what problem is and how fix it?
|
|
|
|
 |
|
Jan 30 2014, 12:36
|
Razor320
Group: Members
Posts: 220
Joined: 17-October 13

|
QUOTE(Homicidalsage @ Jan 30 2014, 09:26)  Thanks Razor but using that I wouldn't be able to switch tabs? Cause that would be inconvenient I'd like to be able to click one and have it stay open while battling and be able to switch to another tab or between skills and spells and have the last one clicked to stay open until another is selected is that possible?
Something even more useful but probably difficult to implement would be being able to customize the battle log area with a combination of a custom selection of all tabs (skills, spells and items) and have them placed on a single custom tab page that can be made to remain open. Not sure how useful that would be for most people but playing on a tablet would be a lot more efficient.
No, if you ise javascript, you will be able to switch tabs as usually. I wrote this script and tested on Firefox(Scriptish) and Google Chrome(built-in and Tampermonkey modes). Log will show if you click on 'Attack' button. By default, it switches to Spells, but this can be changed if you edit it. [attachmentid=36082]
|
|
|
|
 |
|
Jan 30 2014, 15:01
|
holy_demon
Group: Gold Star Club
Posts: 5,417
Joined: 2-April 10

|
QUOTE(VriskaSerket @ Jan 30 2014, 20:29)  hi, i have a similar script with same problem: go into battle, hold 11111111111111, round counter are flashing, all standart elements not flashing. may be you know with what problem is and how fix it?
put this in the data block CODE @run-at document-start then wrap this around your main function CODE document.addEventListener("DOMContentLoaded", function(){ //main function goes here }, false);
|
|
|
Jan 30 2014, 18:50
|
holy_demon
Group: Gold Star Club
Posts: 5,417
Joined: 2-April 10

|
Shop tentatively open, with Shade, Phase, Cotton, and Crap section...
|
|
|
Jan 30 2014, 23:09
|
Ashandarei
Newcomer
 Group: Members
Posts: 28
Joined: 14-December 09

|
32. Superior Ethereal Scythe of Slaughter 5k. Credits sent.
|
|
|
Jan 30 2014, 23:21
|
holy_demon
Group: Gold Star Club
Posts: 5,417
Joined: 2-April 10

|
QUOTE(Ashandarei @ Jan 31 2014, 08:09)  32. Superior Ethereal Scythe of Slaughter 5k. Credits sent.
equips sent
|
|
|
Jan 31 2014, 08:59
|
Hassirith
Newcomer
 Group: Members
Posts: 42
Joined: 14-June 13

|
Hello, I want 7. Superior Ethereal Axe of Slaughter 5k
c sent
|
|
|
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|
|
|