add introduction at noobspawn
This commit is contained in:
44
ReallifeGamemode.Client/Gui/introduction.ts
Normal file
44
ReallifeGamemode.Client/Gui/introduction.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
/**
|
||||
* @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);
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user