Question Comment faire fonctionner un welcome message dans CMT Frosty ?

Lunaire_

Membre
Inscription
21 Février 2021
Messages
2
Réactions
0
Points
16
Bonjour,comment faire fonctionner se welcome message dans la base de CMT Frosty ? :
Code:
WelcomeNotifcation() {    if(!isDefined(self.pMenu["Pats_Notify"]))        self.pMenu["Pats_Notify"] = [];            self.pMenu["Pats_Notify"]["BG"] = self createRectangle("CENTER", "TOP", 0, 0, 190, 0, (0,0,0), "white", 0, 1);    self.pMenu["Pats_Notify"]["Icon_BG"] = self createRectangle("CENTER", "TOP", -110, 0, 0, 0, (0,0,0), "white", 1, 1);    self.pMenu["Pats_Notify"]["Icon"] = self createRectangle("CENTER", "TOP", -110, 0, 0, 0, (1,1,1), "thumbsup", 2, 1);    self.pMenu["Pats_Notify"]["String"] = self createText("default", 1.2, "CENTER", "TOP", 5, -10, 3, 1, "Welcome To ^1Falcon's Menu Base, Enjoy \n^7Press [{+speed_throw}] & [{+melee}] To Open ^1Falcon's Menu Base.", (1,1,1));        self.pMenu["Pats_Notify"]["BG"] scaleOverTime(0.50, 190, 40);    self.pMenu["Pats_Notify"]["Icon_BG"] scaleOverTime(0.50, 40, 40);    self.pMenu["Pats_Notify"]["Icon"] scaleOverTime(0.50, 35, 35);    self.pMenu["Pats_Notify"]["String"] setTypeWriterFx(50, 7000, 800);        wait 8;        self.pMenu["Pats_Notify"]["BG"] scaleOverTime(0.50, 0, 0);    self.pMenu["Pats_Notify"]["Icon_BG"] scaleOverTime(0.50, 0, 0);    self.pMenu["Pats_Notify"]["Icon"] scaleOverTime(0.50, 0, 0);        wait 0.50;        self destroyAll(self.pMenu["Pats_Notify"]); }
 
Dernière édition par un modérateur:
Haut