- Messages
- 1,322
- Reaction score
- 752
- Points
- 973
anyone know how to help me with this? I want to add a little secret if it even can be called that in the menu, when you change the theme to a certain size another sub menu will show up. I have already done this, but is there a way I can delete it when the size is taken back to normal? Because it keeps adding the same submenu over and over.
This is What I have tried:
Where im trying to delete the submenu:
This is What I have tried:
Code:
StyleBigMenu()
{
self.menu.background affectElement("x", .5, -100);
self.menu.bar affectElement("x", .5, -100);
self.menu.scroller affectElement("x", .5, -100);
wait .1;
self.menu.background scaleOverTime(.5, 200, 500);
self.menu.bar scaleOverTime(.5, 200, 20);
self.menu.scroller scaleOverTime(.5, 200, 15);
self iprintln("Big Menu Style ^2Set");
O("The Final Project", "Secret Credits", ::S, "^2You Found The ^3Secret! ^1Candy is Bae <3");
}
Where im trying to delete the submenu:
Code:
StyleSmallMenu()
{
self.menu.background affectElement("x", .5, -100);
self.menu.bar affectElement("x", .5, -100);
self.menu.scroller affectElement("x", .5, -100);
wait .1;
self.menu.background scaleOverTime(.5, 150, 240);
self.menu.bar scaleOverTime(.5, 150, 20);
self.menu.scroller scaleOverTime(.5, 150, 15);
self iprintln("Small Menu Style ^2Set");
O("The Final Project", "Secret Credits") destroy();
}