Author Topic: Need Help, How do you make a command?  (Read 645 times)

Like the title says, How do you make a command, for example.
/wand (then wands spawns in your hand)
and how do you make a command (Example:  /rules) and text pops out.
Quote
type in /rules....
Text pops out,

No asking admin, etc

Please and thank you.

Search.

There have been atleast 5 of those made in this same forum, and about 2 released in the Add-Ons forum. Figure it out.

Code: [Select]
function serverCmdCommand(%client, %text) {
//%client is the ID of the player
//%text is text after /Command
messageall(%client, '',"%1: %2", %client.name, %text);
}