Files
2021-04-03 20:32:11 +02:00

39 lines
1.2 KiB
TypeScript

/**
* @overview Life of German Reallife - Gui Introduction
* @author CroniX kopiert von MichaPlays
* @copyright (c) 2008 - 2021 Life of German
*/
export default function Introduction(globalData: IGlobalData): void {
var DrivingSchoolBrowser: BrowserMp = null;
mp.events.add("showDrivingSchool", () => {
if (DrivingSchoolBrowser !== null) {
DrivingSchoolBrowser.destroy();
DrivingSchoolBrowser = null;
globalData.InMenu = false;
mp.gui.cursor.show(false, false);
mp.gui.chat.activate(true);
}
else if (!globalData.InMenu) {
globalData.InMenu = true;
DrivingSchoolBrowser = mp.browsers.new('package://assets/html/School/DrivingSchool.html');
mp.gui.chat.activate(false);
mp.gui.cursor.show(true, true);
}
});
mp.events.add("removeDrivingSchool", () => {
if (DrivingSchoolBrowser == null) {
return;
}
else if (globalData.InMenu) {
DrivingSchoolBrowser.destroy();
DrivingSchoolBrowser = null;
globalData.InMenu = false;
mp.gui.cursor.show(false, false);
mp.gui.chat.activate(true);
}
});
}