Sayres Posted May 28, 2019 Share Posted May 28, 2019 (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, 2019 by Sayres Link to comment Share on other sites More sharing options...
micsko17 Posted May 21, 2020 Share Posted May 21, 2020 not this.getRandomStrings just getRandomStrings(5) Link to comment Share on other sites More sharing options...
five_dev Posted June 29, 2020 Share Posted June 29, 2020 "this." не нужен. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now