Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/21/22 in all areas

  1. I can't enter any server, programs close themselves after rockstar and anticheat are opened
    1 point
    @Wdoyle thank you very much!!!! I did the change that @crying_bae suggested, but still got "error": Vehicle.locked and Vehicle.engine are always "undefined" (like null) so it pushes the vehicle even if it is locked or with engines on. I can't fix it by my own. Any tip how to fix it, please? Btw very nice script, thank you so much!!!!
    1 point
  2. Hi, This small tuturial how make auto server restart on file change by using webpack. 1. All doing in webpack.config.js file 2. On file top initialize empty variable: let gameServer; 3. In exports object add new plugin (with hook): plugins: [ // ... { apply: compiler => { compiler.hooks.afterEmit.tap('AfterEmitPlugin', () => { // Kill started server if (!!gameServer) { console.log('\nKill game server'); gameServer.kill(); } console.log('\nStart game server'); // Start server gameServer = spawn(path.join(__dirname, 'server.exe')); gameServer.stdout.on('data', data => process.stdout.write(data)); gameServer.stderr.on('data', data => process.stderr.write(data)); }); } } ] 4. Profit
    1 point
×
×
  • Create New...