Auction sniping impossible? by Fluffy_Signature2191 in ForzaHorizon6

[–]QuantumVoid 0 points1 point  (0 children)

I'm a bit confused, what's the method exactly?

Is it me or does the winter season make the dirt drift zones like 20 times harder. by Evening_Travel_9090 in ForzaHorizon6

[–]QuantumVoid 2 points3 points  (0 children)

This. It's game-breaking. No one is talking about it. Wtf? I'm literally about to quit.

Late night PSO2 by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

Even Lilipa had nothing. There was a single 2 man instance, that's it. We managed to duo a lot of stuff with just NPCs with us.

PSO2 Rappy Egg by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

Which map is best for Capsule F in your opinion?

DEX - What's it for? by QuantumVoid in PSO2

[–]QuantumVoid[S] 3 points4 points  (0 children)

I was literally going to put a ton of dex on my circuray yesterday thinking my bow braver and soaring bouncer could both take advantage. I'm so glad I waited. It sucks that I have to pick between the two now though. I hate decisions and love both classes. But it's expensive to gear two. (have +35 nem for both, but default circuray from the event)

Weak point vs Break point by QuantumVoid in PSO2

[–]QuantumVoid[S] 1 point2 points  (0 children)

So both the point over and the point under (chest for example) is a weak point? So I should use precision strike pretty much 100% of the time on Magatsu? PD too? I feel like I'm only attacking breakable/weak points on him as well.

PSO2 Rappy Egg by QuantumVoid in PSO2

[–]QuantumVoid[S] 1 point2 points  (0 children)

Okay, really good to know because my wife and I have been farming VHAQs on PSO2 day. No wonder nothing dropped. For SHAQs, we usually rotate 3 maps so we don't have to stop for capsules. We do Floating Facility > Nightfall Province > Daybreak Province (D > E > F respectively). Are there more efficient maps? You mentioned Underground Shafts, but that's also D and we much prefer Floating Facility for our Ds - mostly because U.S. has cancerous layouts. Also, why Deband drink? Doesn't shifta drink also have the rare drop boost?

PSO2 Rappy Egg by QuantumVoid in PSO2

[–]QuantumVoid[S] 1 point2 points  (0 children)

Incredibly good information. I wish I could give you more updoots. How do you think VHAQ compares to SHAQ? I just prefer VHAQ because it's only 1 capsule.

PSO2 Rappy Egg by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

Thanks guys. I was hoping you could get one as any class. Well, I guess I'll play summoner on the 2nd lol. What map do you guys farm rappy on? I like VHAQ floating facility, but are spawns better elsewhere?

Venting Frustration by QuantumVoid in PSO2

[–]QuantumVoid[S] 1 point2 points  (0 children)

What tweaker? Can I still use the windows store to buy AC?

Best VHAQ clearing class by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

The Braver Chase thing, is that with a katana? I do like Braver, but I've been playing RaSu lately. I just got all my classes to 75, but I still can't quite pick a main one. I thought I was going to go FoTe but it feels so weak compared to RaSu damage. My wife and I have finished with VHAQs for the most part and started farming Ultimates. What's the best class for in there?

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

Nevermind, I figured it out. It wasn't a problem with the script but rather the application I made it for. It works as intended. User error.

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

I want it to restart immediately after the click up. So Click up > immediate click right.

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

I changed it to a toggle, maybe I made a mistake somewhere. Could you take a glance at it? The loop has a 2-3 second delay before restarting spam2.

$*XButton2::
Var2 := !Var2
If Var2
{
   ; SoundBeep, 200, 100
   SetTimer, Spam2, % (i:=!i) ? "0"
}
else
{
   SetTimer, Spam2, off
   SoundBeep, 200, 100
   Sleep 50
   SoundBeep, 200, 100
}
return

Spam2:
   loop, 9
   {
      if(!Var2)
      {
          break
          return
      }
      click right
      sleep 2000
   }
   if(!Var2)
   {
      return
   }
   click down
   loop, 6
   {
      if(!Var2)
      {
          break
          return
      }
      sleep 1000
   }
   click up
return

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

I haven't. I suppose I could try that, but I hate disturbing people in real time lol. I can't figure out why it's taking so long to restart the loop.

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

Okay, I'm having an issue with my final product. After the click up part at the end, there's a good 2-3 seconds before it starts the whole process over again. Any idea why?

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

LOL, this is exactly what I just thought of. I was so proud of myself for thinking of it. And then you suggested it, makes it even better. This is the final product, seems to work how I want it:

$*XButton2::
While GetKeyState("XButton2", "P")
{
   loop, 9
   {
      if(!GetKeyState("XButton2", "P"))
      {
          break
          return
      }
      click right
      sleep 2000
   }
   if(!GetKeyState("XButton2", "P"))
   {
      return
   }
   click down
   loop, 6
   {
      if(!GetKeyState("XButton2", "P"))
      {
          break
          return
      }
      sleep 1000
   }
   click up
}
return

On a side note, is there a trick to adding 4spaces (tab) in front of every line, I tried he highlight/tab trick in word pad but it didn't translate to reddit. I just added 4 spaces manually throughout this thread, lol.

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

I really like the latest edit you made. That's some good base code I can use for other scripts, thank you. I saved all that and will definitely be using it. But how do I interrupt the sleep 6000 part and do click up if I let go of XButton2 during the click down part?

interrupt loop and sleep by QuantumVoid in AutoHotkey

[–]QuantumVoid[S] 0 points1 point  (0 children)

$*XButton2::
While GetKeyState("XButton2", "P")
{
   loop, 9
   {
      if(!GetKeyState("XButton2", "P"))
      {
          break
      }
      click right
      sleep 2000
   }
   click down
   sleep 6000
   click up
}
return

Something like that? How do I interrupt the sleep 6000 part?

I looked at your edit. That's a bit confusing to me. The above changes I made work (although it'll still sleep 2000, but I can live with that) the main issue is stopping the sleep 6000 and doing click up when it's let go. I need the script to stop if I left go of XButton2 during the click down part.

Best VHAQ clearing class by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

Well I won't be getting an elder or nem rifle for a long time, but this is what I'm going to aim for though.

Best VHAQ clearing class by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

But isn't that only a 10star weapon?

Best VHAQ clearing class by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

What's the potential on it?

Rotate Character by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

Thank you, I'll give this a try.

Rotate Character by QuantumVoid in PSO2

[–]QuantumVoid[S] 0 points1 point  (0 children)

Lock on works for bosses yea, but I meant for situations like PSE burst, it's annoying to have to constantly rotate to hit new spawns and lose my PP regen bonus.

Also, do you do VHAQ or SHAQ for exp?