@Nonameebla, установи nodejs
const fs = require('fs');
const SampQuery = require('samp-query');
async function getServerStatus(ip, port) {
return new Promise((resolve) => {
const options = { host: ip, port: port };
SampQuery(options, (error, response) => {
if...