Sayres Posted May 28, 2019 Share Posted May 28, 2019 Код на спавн 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(), Link to comment Share on other sites More sharing options...
vaskidze Posted May 31, 2019 Share Posted May 31, 2019 this убери Link to comment Share on other sites More sharing options...
HEROofMAIDAN Posted May 31, 2019 Share Posted May 31, 2019 numberPlate не работает при создании тачки (работает криво как то точнее). Сначала тачку создаешь, потом номер 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