Jump to content
Game-Labs Forum

Magpie Jack

Ensign
  • Posts

    5
  • Joined

  • Last visited

Posts posted by Magpie Jack

  1. On 9/22/2018 at 9:58 PM, qw569 said:

    save as 1.vbs and launch cscript 1.vbs

    Before sending the key W, you need to activate the focus on the Naval Action window (objShell.AppActivate). Otherwise, the key will be sent to another application when the focus is changed.

    Yes, but that's 9 lines over PS's 5.

    I think you misunderestimate my laziness. Case in point, Iearning VBScript was too much like hard work.

    • Like 1
  2. I just use a little powershell script to press a key once every 15 minutes or so. I put the rudder hard over so my ship goes in circles around the spot I've chosen, which is well off the regular shipping lanes

    $myshell = New-Object -com "Wscript.Shell"
    for ($i = 1; $i -lt 10000; $i++)
    
    {
    Start-Sleep -seconds 900
    $myshell.sendkeys("w")
    write-host We have been going around in circles for the last ($i*15) minutes, Captain!
    }

     

    • Like 1
  3. The client.exe has suddenly started doing this after a very short period Drops back to the desktop. The client is still running, and will respond to inputs, but there's no graphics.

     

    The Unity_log.txt is filling up with

     

    d3d11: failed to create staging 2D texture w=256 h=256 d3dfmt=2 [887a0005]

    and the occasional d3d11: failed to create buffer (target 0x2 mode 1 size 3036) [0x887A0005]

     

    Any ideas?

     

     

×
×
  • Create New...