Sayres 0 Posted May 28 (edited) Код на спавн mp.events.addCommand("v", (player, position) => { if(player.admin < 4) return player.outputChatBox("<font color=#FF0000>[Ошибка] <font color=#FFA500>У Вас недостаточно прав"); let pos = player.position; pos.x += 1.0; let veh = mp.vehicles.new(position, pos, { numberPlate: this.getRandomStrings(), }); player.putIntoVehicle(veh,-1) console.log(`${player.name} spawn car`); }); Код на генерацию function getRandomStrings(length) { const value = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; const randoms = []; for(let i=0; i < length; i++) { randoms.push(value[Math.floor(Math.random()*value.length)]); } return randoms.join(''); } Ошибка Цитата TypeError: this.getRandomStrings is not a function numberPlate: this.getRandomStrings(), Edited May 28 by Sayres Share this post Link to post Share on other sites