Page 1 of 1

/admin chat -All messages will be sent to admins.

PostPosted: 25 Oct 2011, 23:05
by HelloWorldCool
Just a suggestion.

Can Anyone create this command?

Re: /admin chat -All messages will be sent to admins.

PostPosted: 21 Nov 2011, 14:17
by Ultima
Code: Select all
/*
using System;

namespace MCDzienny
{
public class CmdAdminmeeting : Command
{
// The command's name, in all lowercase. What you'll be putting behind the slash when using it.
public override string name { get { return "adminmeeting"; } }

// Command's shortcut (please take care not to use an existing one, or you may have issues.
public override string shortcut { get { return "ameet"; } }

// Determines which submenu the command displays in under /help.
public override string type { get { return "other"; } }

// Determines whether or not this command can be used in a museum. Block/map altering commands should be made false to avoid errors.
public override bool museumUsable { get { return false; } }

// Determines the command's default rank. Valid values are:
// LevelPermission.Nobody, LevelPermission.Banned, LevelPermission.Guest
// LevelPermission.Builder, LevelPermission.AdvBuilder, LevelPermission.Operator, LevelPermission.Admin
public override LevelPermission defaultRank { get { return LevelPermission.Banned; } }

// This is where the magic happens, naturally.
// p is the player object for the player executing the command. message is everything after the command invocation itself.
public override void Use(Player p, string message)
{
Command.all.Find( "").Use(p,"spawn");   
Player.SendMessage(p, "You are now in adminmeeting");
}

// This one controls what happens when you use /help [commandname].
public override void Help(Player p)
{
Player.SendMessage(p, "/adminmeeting - Goes into adminchat. (Shortcut ameet)");
}
}
}


Copyright zoids12345

Havent tested it.

Re: /admin chat -All messages will be sent to admins.

PostPosted: 21 Nov 2011, 21:36
by HelloWorldCool
um looking at the code i'm not going to test it.
Apparently it sends the player to spawn...so that'd just be pressing r.

Re: /admin chat -All messages will be sent to admins.

PostPosted: 21 Nov 2011, 21:38
by Ultima
HelloWorldCool wrote:um looking at the code i'm not going to test it.
Apparently it sends the player to spawn...so that'd just be pressing r.


Hm, havent looked deep inside the code (busy at that time)

Re: /admin chat -All messages will be sent to admins.

PostPosted: 21 Nov 2011, 21:43
by g0d01w4r99
Derp. Suggestions into the right forum.
Moved.

Re: /admin chat -All messages will be sent to admins.

PostPosted: 21 Nov 2011, 22:25
by HelloWorldCool
g0d01w4r99 wrote:Derp. Suggestions into the right forum.
Moved.

Dude g0d01w4r99, no offence but you are being mean and ridiculous. This is the Suggestions forum!!! :ugeek:
And one more thing! Read before you post! That's your lesson for today. :arrow:

Re: /admin chat -All messages will be sent to admins.

PostPosted: 22 Nov 2011, 10:54
by Ultima
Since i posted the command, it belongs to the commands forum.

Re: /admin chat -All messages will be sent to admins.

PostPosted: 22 Nov 2011, 17:34
by g0d01w4r99
HelloWorldCool wrote:
g0d01w4r99 wrote:Derp. Suggestions into the right forum.
Moved.

Dude g0d01w4r99, no offence but you are being mean and ridiculous. This is the Suggestions forum!!! :ugeek:
And one more thing! Read before you post! That's your lesson for today. :arrow:

Cool do not try to fight with me. I moved the topic. You should get your facts right before calling me out and telling me to read before I post.

And yes Ultima, you posted the command, I'm moving it back to the commands forum.