Files
reallife-gamemode/ReallifeGamemode.Client/Gui/introduction.ts
2021-01-18 15:36:33 +01:00

44 lines
1.2 KiB
TypeScript

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