Inheritance: MenuBase
Ejemplo n.º 1
0
 private void PickGender()
 {
     if (_shownGender) return;
     _shownGender = true;
     var mmmmmenu = new TiledMenu("Select Your Gender",
                        new TiledPanel("Male", new GTASprite("loadingscreen10", "foreground"), Color.DodgerBlue, SelectGender, "Male characters, typically played by men. "),
                        new TiledPanel("Female", new GTASprite("loadingscreen16", "foreground", Color.LightPink), Color.Purple, SelectGender, "Female characters, typically played by women...and also men. ")
                    );
     View.AddMenu(mmmmmenu);
 }
Ejemplo n.º 2
0
 private void PickMotives()
 {
     if (_shownMotives) return;
     _shownMotives = true;
     var mmmmmenu = new TiledMenu("Select Your Motive",
                    new TiledPanel("Rebel", new GTASprite("loadingscreen3", "foreground"), Color.DodgerBlue, SelectMotive, "You started from the bottom, and you're still there. You know that nothing's free in this world, and even working for it can be too much of hassle. Maybe you're doing this for the right reasons, but you know you have to fight for what you deserve.", ""), //Motivation Passive: Provides +25% Normal Experience
                    new TiledPanel("Lawless", new GTASprite("loadingscreen4", "foreground", Color.SteelBlue), Color.Red, SelectMotive, "You didn't choose this life, it chose you. And since the day that you knew life would always bite you in the ass, you made a vow. You're all about mayhem and destruction. You're going to watch this world burn.", "")); //Motivation Passive: Provides +25% Skill Experience
     View.AddMenu(mmmmmenu);
 }
Ejemplo n.º 3
0
 private void PickClass()
 {
     if (_shownClass) return;
     _shownClass = true;
     var mmmmmenu = new TiledMenu("Select Your Class",
                    new TiledPanel("Time Master", new GTASprite("loadingscreen5", "foreground"), Color.DodgerBlue, SelectClass, "Actually, you were born on a distant planet far far away. You harness the power of time itself to destroy your enemies, before they even know it. Some say you're not a master, but a lord. You'll be the judge of that.", ""), //Class Skill: Harmony - Slow down time to a halt and mark multiple targets for death
                    new TiledPanel("Speedster", new GTASprite("loadingscreen1", "foreground_franklin"), Color.DarkRed, SelectClass, "You're the fastest man in los santos, possibly in the universe. You've harnessed the forces which give you your powers to become the best driver in the city. But hey, without a car you still kick ass in a flash too.", ""), //Class Skill: Turbo - Dramatically increase driving speed and break the laws of physics
                    new TiledPanel("Berserker", new GTASprite("loadingscreen9", "foreground"), Color.White, SelectClass, "Nobody's got time for that nonsense with shooting guns. Well...most of the time anyway. You know that up close and personal is the only way you'll get satisfaction. You're about to enter the danger zone, and you welcome it.", "")); //Class Skill: Rampage - Become invulnerable for a short time and summon the four horsemen
     View.AddMenu(mmmmmenu);
 }