PTE Stream: 73823

Discussion in 'Support!' started by garat, October 10, 2014.

  1. burntcustard

    burntcustard Post Master General

    Messages:
    699
    Likes Received:
    1,312
    It should have a special icon on a minimap too.
  2. Mereth

    Mereth Active Member

    Messages:
    330
    Likes Received:
    164
    On Windows 7, PA is still unable to start server.exe when spawned from nodejs (aka PAMM core engine).
  3. cola_colin

    cola_colin Moderator Alumni

    Messages:
    12,074
    Likes Received:
    16,221
    How does your nodejs spawn it? I am starting server.exe with a nodejs instance myself for other purposes and it works without issues.
  4. garat

    garat Cat Herder Uber Alumni

    Messages:
    3,344
    Likes Received:
    5,376
    Talking to Pinbender, we have about as much data as we can use. We made a number of changes to hopefully address this. Have you checked to see if Qualcomm has a more up to date bluetooth stack available?
  5. maxpowerz

    maxpowerz Post Master General

    Messages:
    2,208
    Likes Received:
    885
    Yeah i checked the drivers to see if i could find a more u to date one and i have it already.

    I'm chatting with pinbender in PM, as soon as i work out how to get a copy of the console log when the server crashes to you guys it should help more.
  6. Mereth

    Mereth Active Member

    Messages:
    330
    Likes Received:
    164
    Starting an exe is not the problem, I could start the server.exe too. The problem is something goes wrong in PA when it has been spawned.

    Code:
    function LaunchPA(nomods) {
      if(pamm.getStream() === 'steam') {
      shell.openExternal('steam://rungameid/233250');
      }
      else {
      var child_process = require('child_process');
      var path = require('path');
       
      var binpath = pa.streams[pamm.getStream()].bin;
      var wd = path.dirname(binpath);
       
      var args = [];
      if(uberent.getSessionTicket()) {
      args = ['--ticket', uberent.getSessionTicket()];
      }
       
      if(nomods)
      args.push('--nomods');
       
      var child = child_process.spawn(binpath, args, { cwd: wd, detached: true });
      child.unref();
      }
      ClosePAMM();
    }
    
    I already tested without the detached/unref & closepamm . It seems to affect only Win7, not Win8.1.

    In PA logs:
    Code:
    [01:18:54.437] INFO Starting background thread pool with 3 threads
    [01:18:54.437] ERROR CreateProcessW failed, The parameter is incorrect.
    
  7. garat

    garat Cat Herder Uber Alumni

    Messages:
    3,344
    Likes Received:
    5,376
    If you guys are working through Mod issues, could you take it to the mod forums? Not to be a wet blanket, but trying to keep threads in support focused on stuff our team can fix. If it's a "Uber needs to fix it", of course, please bring it back. :)

    But until it's confirmed as a PA problem, and not a PAMM problem, please keep it in mod discussion for now! Thanks folks.
  8. Mereth

    Mereth Active Member

    Messages:
    330
    Likes Received:
    164
    It's not a mod issue.
  9. stuart98

    stuart98 Post Master General

    Messages:
    6,009
    Likes Received:
    3,888
  10. cola_colin

    cola_colin Moderator Alumni

    Messages:
    12,074
    Likes Received:
    16,221
  11. masterdigital

    masterdigital Uber Alumni

    Messages:
    438
    Likes Received:
    833
    stuart98 likes this.

Share This Page