Welcome Guest ( Log In | Register )

5153 Pages V « < 4926 4927 4928 4929 > »   
Closed TopicStart new topic
> Asked the Experts, For archive purposes only. Please use Ask the Expert! for questions

 
post Jun 25 2017, 15:27
Post #98537
Fap.Fap



Active Poster
*******
Group: Gold Star Club
Posts: 1,554
Joined: 19-October 11
Level 500 (Ponyslayer)


QUOTE(pooaa @ Jun 25 2017, 14:55) *

https://hentaiverse.org/equip/130041002/748e375872
is this weapon good enough leveling up 500, at least 450 if i only play 2H?
i can do IWBH now, don't know if i can survive pfudor.



you should get a Rapier of Slaughter if want to continue with 2H
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 25 2017, 16:19
Post #98538
Noni



Hataraku Noni-sama
***********
Group: Catgirl Camarilla
Posts: 13,510
Joined: 19-February 16
Level 500 (Ponyslayer)


QUOTE(pooaa @ Jun 25 2017, 14:55) *

https://hentaiverse.org/equip/130041002/748e375872
is this weapon good enough leveling up 500, at least 450 if i only play 2H?
i can do IWBH now, don't know if i can survive pfudor.



No, you'll be wanting a Legendary. You'll notice the difference. And 2h weapons are cheap.

QUOTE(Fap.Fap @ Jun 25 2017, 15:27) *

you should get a Rapier of Slaughter if want to continue with 2H


Rapier is 1h, he wants to play 2h.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 25 2017, 16:35
Post #98539
pooaa



Regular Poster
*****
Group: Gold Star Club
Posts: 663
Joined: 20-July 14
Level 500 (Ponyslayer)


QUOTE(DJNoni @ Jun 25 2017, 22:19) *

No, you'll be wanting a Legendary. You'll notice the difference. And 2h weapons are cheap.
Rapier is 1h, he wants to play 2h.

i know i finally need a leg, but hard to find affordable or level low enough.
and about mace and estoc, which is better?
i thought in HV0.85 i have enough damage with mace.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 25 2017, 16:36
Post #98540
Fap.Fap



Active Poster
*******
Group: Gold Star Club
Posts: 1,554
Joined: 19-October 11
Level 500 (Ponyslayer)


QUOTE(DJNoni @ Jun 25 2017, 16:19) *

No, you'll be wanting a Legendary. You'll notice the difference. And 2h weapons are cheap.
Rapier is 1h, he wants to play 2h.



my mistake, I read it as 1h ;p since he said he wants to play on higher difficulty
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 11:14
Post #98541
ChanForu



Casual Poster
***
Group: Members
Posts: 204
Joined: 11-November 14
Level 370 (Godslayer)


Does anyone know how to disable MouseMagelee 0.85 temporarily so I can cast imperil without activating the hover attack by right clicking?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 12:40
Post #98542
Noni



Hataraku Noni-sama
***********
Group: Catgirl Camarilla
Posts: 13,510
Joined: 19-February 16
Level 500 (Ponyslayer)


QUOTE(ChanForu @ Jun 26 2017, 11:14) *

Does anyone know how to disable MouseMagelee 0.85 temporarily so I can cast imperil without activating the hover attack by right clicking?


Does shift work? Otherwise, I use altless script to imperil with NUM keys
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 13:17
Post #98543
Sapo84



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


QUOTE(ChanForu @ Jun 26 2017, 11:14) *

Does anyone know how to disable MouseMagelee 0.85 temporarily so I can cast imperil without activating the hover attack by right clicking?

You can't, and honestly the preferred way to imperil-play is with number-key.
If you don't want I think that right click on monster is not a good way (because to use it you need an area where hover works and an area where it doesn't, which is overly complex imho).
A better way would be something like

Modifications to Magelee
Disable the right click heal by removing
CODE

    window.addEventListener('contextmenu', function (e) {
        e.preventDefault();
        runRightClickSpell();
    }, false);


or bind it to middle click, if you have the latest firefox/chrome versions is something like

CODE

    window.addEventListener('auxclick', function (e) {
        e.preventDefault();
        runRightClickSpell();
    }, false);


Then just have a script that activates (but doesn't fire) imperil on right click, so something like

CODE

var caller = document.getElementById(*id of imperil*);
    window.battle.lock_action(caller, 1, 'magic', *id of imperil*);
    window.battle.set_hostile_skill(*id of imperil*);

(or possibly just something like document.getElementById(*id of imperil*).click() )

So you go outside of over area, right click, then you hover again on the monster and imperil fires.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 14:29
Post #98544
karyl123



Hey Tayo !!!
*******
Group: Gold Star Club
Posts: 1,659
Joined: 9-January 11
Level 452 (Godslayer)


QUOTE(Sapo84 @ Jun 26 2017, 18:17) *

You can't, and honestly the preferred way to imperil-play is with number-key.
If you don't want I think that right click on monster is not a good way (because to use it you need an area where hover works and an area where it doesn't, which is overly complex imho).
A better way would be something like

Modifications to Magelee
Disable the right click heal by removing
CODE

    window.addEventListener('contextmenu', function (e) {
        e.preventDefault();
        runRightClickSpell();
    }, false);


or bind it to middle click, if you have the latest firefox/chrome versions is something like

CODE

    window.addEventListener('auxclick', function (e) {
        e.preventDefault();
        runRightClickSpell();
    }, false);


Then just have a script that activates (but doesn't fire) imperil on right click, so something like

CODE

var caller = document.getElementById(*id of imperil*);
    window.battle.lock_action(caller, 1, 'magic', *id of imperil*);
    window.battle.set_hostile_skill(*id of imperil*);

(or possibly just something like document.getElementById(*id of imperil*).click() )

So you go outside of over area, right click, then you hover again on the monster and imperil fires.


thanks, finally, this is crackling cast. but I need to disable the cure/full cure. dont know why it keep launching cure even though I already move it to mid click.

------------------------------------------

question. so now we can only see our money in the shop page ????

money is everything eh.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 14:44
Post #98545
Sapo84



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


QUOTE(karyl123 @ Jun 26 2017, 14:29) *

thanks, finally, this is crackling cast. but I need to disable the cure/full cure. dont know why it keep launching cure even though I already move it to mid click.

Maybe auxclick is also triggered on right click?
I wrote the post without any kind of test (I'm @work (IMG:[invalid] style_emoticons/default/heh.gif)) after all.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 14:45
Post #98546
CPUAMD



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 2,731
Joined: 24-April 15
Level 500 (Ponyslayer)


[attachembed=104780]

What happened? (IMG:[invalid] style_emoticons/default/sad.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 14:48
Post #98547
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07
Level 500 (Ponyslayer)


QUOTE(Goldage @ Jun 26 2017, 14:45) *

[attachembed=104780]

What happened? (IMG:[invalid] style_emoticons/default/sad.gif)

QUOTE
8 mins ago: HV will go down in around 20 minutes to finish up some backend work. Expected downtime is around an hour.

a mini-patch or some leftover fixes, probably.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 14:50
Post #98548
karyl123



Hey Tayo !!!
*******
Group: Gold Star Club
Posts: 1,659
Joined: 9-January 11
Level 452 (Godslayer)


QUOTE(Goldage @ Jun 26 2017, 19:45) *

=snip=

What happened? (IMG:[invalid] style_emoticons/default/sad.gif)


that means boss tell us to take rest.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 14:52
Post #98549
CPUAMD



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 2,731
Joined: 24-April 15
Level 500 (Ponyslayer)


QUOTE(Scremaz @ Jun 26 2017, 21:48) *

[indent][/indent]
a mini-patch or some leftover fixes, probably.


Thanks (IMG:[invalid] style_emoticons/default/smile.gif)

QUOTE(karyl123 @ Jun 26 2017, 21:50) *

that means boss tell us to take rest.


(IMG:[invalid] style_emoticons/default/heh.gif) Ok, get some rest
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 16:15
Post #98550
pooaa



Regular Poster
*****
Group: Gold Star Club
Posts: 663
Joined: 20-July 14
Level 500 (Ponyslayer)


QUOTE(Goldage @ Jun 26 2017, 20:52) *

Thanks (IMG:[invalid] style_emoticons/default/smile.gif)
(IMG:[invalid] style_emoticons/default/heh.gif) Ok, get some rest

i think the update is finished now
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 18:28
Post #98551
zlaricob



Casual Poster
****
Group: Members
Posts: 284
Joined: 30-March 16
Level 500 (Godslayer)


From my point of view (1handed weapon style), fight are faster. So I can make more of them and eat my stamina bar faster than before.
Do you think the update will have an impact on energy drink price?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 19:19
Post #98552
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07
Level 500 (Ponyslayer)


QUOTE(zlaricob @ Jun 26 2017, 18:28) *

From my point of view (1handed weapon style), fight are faster. So I can make more of them and eat my stamina bar faster than before.
Do you think the update will have an impact on energy drink price?

well, it should be partly mitigated by caffeine drinks, i guess. so, if any, i dont think they will increase too much.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 26 2017, 19:50
Post #98553
karyl123



Hey Tayo !!!
*******
Group: Gold Star Club
Posts: 1,659
Joined: 9-January 11
Level 452 (Godslayer)


QUOTE(zlaricob @ Jun 26 2017, 23:28) *

From my point of view (1handed weapon style), fight are faster. So I can make more of them and eat my stamina bar faster than before.
Do you think the update will have an impact on energy drink price?


agreed with you, before I can only do 1.4 t/s on 0.84 now about 3+ t/s on 0.85.
this update rocks. energy drink will not affected I think. but the GP price will be higher since I know thos HATH baron will join the lottery everyday and press do not want to aim the covfefe
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 27 2017, 01:09
Post #98554
subzeroX



Regular Poster
*****
Group: Gold Star Club
Posts: 581
Joined: 15-August 09
Level 500 (Ponyslayer)


After a few turns of Spark of Life, the dark green bar turns to the regular color even though I haven't hit 1 HP. Then when I get KO'd it doesn't save me. It rarely happens. Why does it happen?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 27 2017, 01:13
Post #98555
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,317
Joined: 18-January 07
Level 500 (Ponyslayer)


QUOTE(subzeroX @ Jun 27 2017, 01:09) *

After a few turns of Spark of Life, the dark green bar turns to the regular color even though I haven't hit 1 HP. Then when I get KO'd it doesn't save me. It rarely happens. Why does it happen?

how's your spirit bar? is your spark spell still active?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 27 2017, 02:20
Post #98556
Zomnus



Casual Poster
***
Group: Members
Posts: 154
Joined: 26-September 16
Level 464 (Godslayer)


Looking to expand my melee proficiencies beyond 1H (the amount of 0.00s makes me sad). Is the Niten Ichiryu still bereft of 2H/DW gains?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


5153 Pages V « < 4926 4927 4928 4929 > » 
Closed TopicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 10th September 2025 - 02:43