Piesel Posted June 8, 2019 Posted June 8, 2019 Error: C:\RAGEMP\server-files\packages\administration-system\mysql.js:60 }}; ^ mp.events.add("getInformationAboutDuty", (player) => { rp.mysql.handle.query('SELECT `adminduty` from rp_administration WHERE login=?', [player], function(err,res){ if(res == 0){ player.outputChatBox(`Nie możesz wejść na duty - brak uprawnień`); } else { mp.events.call('setDutyOnPlayer', player); player.outputChatBox(`Zalogowałeś się na duty!`); }}; )};
Joshua Posted June 9, 2019 Posted June 9, 2019 My guess would be that you're not properly closing shit. mp.events.add("getInformationAboutDuty", (player) => { rp.mysql.handle.query('SELECT `adminduty` from `rp_administration` WHERE `login` = ?', [player], function (err, res) { if(res == 0) { player.outputchatBox(`Text shit here`); } else { mp.events.call('setDutyOnPlayer', player); player.outputChatBox(`Chat shit here`); } }); });
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