Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Simple User Interface For Plus Emu

Experienced Elementalist
Joined
Aug 26, 2012
Messages
248
Reaction score
49
Step 1:

Include these files in your emu source and add them to your project.
If your not sure on how to do it google it xD
Step 2:
Go to program.cs and edit
PHP:
while (SilverwaveEnvironment.isLive)
            {
                Console.CursorVisible = true;
                if (Logging.DisabledState)
                    Console.Write("silverwave> ");
                ConsoleCommandHandeling.InvokeCommand(Console.ReadLine());
                
                
            }
        }

      

        public static void InitEnvironment()
        {
            if (!SilverwaveEnvironment.isLive)
            {
                Console.ForegroundColor = ConsoleColor.White;
                Console.CursorVisible = false;
                AppDomain currentDomain = AppDomain.CurrentDomain;
                currentDomain.UnhandledException += new UnhandledExceptionEventHandler(MyHandler);
               
             SilverwaveEnvironment.Initialize();
            }
        }
to this
PHP:
while (SilverwaveEnvironment.isLive)
            {
                Console.CursorVisible = true;
                if (Logging.DisabledState)
                    Console.Write("silverwave> ");
                ConsoleCommandHandeling.InvokeCommand(Console.ReadLine());
                Application.EnableVisualStyles();
                Application.Run(new EmuUi.Form1());
                Application.DoEvents();
                EmuUi.Form1 emu = new EmuUi.Form1();
                emu.Activate();
                emu.Show();
                
            }
        }

      

        public static void InitEnvironment()
        {
            if (!SilverwaveEnvironment.isLive)
            {
                Console.ForegroundColor = ConsoleColor.White;
                Console.CursorVisible = false;
                AppDomain currentDomain = AppDomain.CurrentDomain;
                currentDomain.UnhandledException += new UnhandledExceptionEventHandler(MyHandler);
                Application.EnableVisualStyles();
                Application.Run(new EmuUi.Form1());
                Application.DoEvents();
                EmuUi.Form1 emu = new EmuUi.Form1();
                emu.Activate();
                emu.Show();
                
                emu.Activate();
                emu.Show();
             //   SilverwaveEnvironment.Initialize();
            }
        }
Step 3:
on Program.cs add at the top
PHP:
using System.Windows.Forms;

there you go it really simple you can do so much with this xD surprised no one else hasn't done it so simple (if there a better way to do it dont mind telling) ive made it so you dont need a console at all but i can remove most off the Console.write and logging.write and so on so this a simpler ver and the console still shows if you know what your doing you go make it in to a full housekeeping.


Print screen:


 
Banned
Banned
Joined
May 6, 2009
Messages
531
Reaction score
165
Yeah... It's good to noobs, but will be good if add more features... Thanks for share mate ;D
 
Experienced Elementalist
Joined
Aug 26, 2012
Messages
248
Reaction score
49
Yeah... It's good to noobs, but will be good if add more features... Thanks for share mate ;D

Yeah adding more features is easy xD but I keep it simple just in case people want to add it to other emu much easy to convert this then loads off features
 
Banned
Banned
Joined
May 6, 2009
Messages
531
Reaction score
165
Yeah adding more features is easy xD but I keep it simple just in case people want to add it to other emu much easy to convert this then loads off features

thinking in this case, i agree xD
 
Experienced Elementalist
Joined
Jul 1, 2012
Messages
232
Reaction score
37
Why always "good for noobs".
Even if you're an expert this could be useful?

ont;
Nice, as said /\, very useful!
 
Ragezone Furni Releaser
Joined
Dec 2, 2012
Messages
918
Reaction score
158
You should make it that the consiole is hidden and when you press the start button i shows up.
 
Banned
Banned
Joined
Dec 9, 2014
Messages
6
Reaction score
0
Don't see how this is usefull at all.

But anyhow it's worth trying.
 
Experienced Elementalist
Joined
Aug 26, 2012
Messages
248
Reaction score
49
How about NO FORMS!

Really helpful comment.

You should make it that the consiole is hidden and when you press the start button i shows up.
Okay will do

Don't see how this is usefull at all.

But anyhow it's worth trying.

its the stuff you can add too it, you can easily add ways to ban users, give credits and duckets and badges
there way more you can do with it.
 
Banned
Banned
Joined
May 6, 2009
Messages
531
Reaction score
165
Why always "good for noobs".
Even if you're an expert this could be useful?

ont;
Nice, as said /\, very useful!

Simple, because i don't see the point to create an console to do all these things... So as I said, this is good for noobs, because is more easy to make the controls, commands on Emulator. This is my opinion.
 
Junior Spellweaver
Joined
Oct 26, 2014
Messages
176
Reaction score
117
But why? Only hotel administrators would be able to use it as nobody is going to give their moderating staff access to their servers.

And besides that, what is so hard about typing a command...
Coding a Terminal that uses a TCP Connection twards the Emulator then you will be able to execute poop from there NO FORMS i kidd. but this was a really really bad idea tbh... you need to be retarded to not know how to start an emulator.
 
Newbie Spellweaver
Joined
Feb 23, 2013
Messages
80
Reaction score
26
But why? Only hotel administrators would be able to use it as nobody is going to give their moderating staff access to their servers.

And besides that, what is so hard about typing a command...

Why should people write down a command when they can click on a button?
 
Back
Top