[Include] mcmd - Command processor!
#1

[Include] mcmd - Command processor!
> by MrDeath!



Description:
Then of a lot of tries, and trying to understand dcmd, I made my command processor, it's like dcmd. mcmd is easy to use!



Functions:
Code:
mcmd(function, source, lenght, player)
function - Function name
source   - The source command (cmdtext...)
lenght   - Lenght of the command (Example: kick = 4)
player   - The player who used the command.


♦ mcmd2(function, source, player)
function - Function name
source   - The source command (cmdtext...)
player   - The player who used the command.


♦ mcmd_init(source)
source - Prepares mcmd to use commands.

Use:
Code:
mcmd
It's used for commands with parameters (Example: /me <action>)


♦ mcmd2
It's used for commands WITHOUT parameters (Example: /help).


♦ mcmd_init
It should be the first line in OnPlayerCommandText, it deletes the "/" of cmdtext, without it, mcmd and mcmd2 doesn't works.
NOTE: mcmd_init deletes the "/", if you use strcmp (like with strtok, but use mcmd2 it was made for it) it needs to be adapted.


♦ How to define commands
Then of define them in OnPlayerCommandText we should make the function:
Function WITH parameters: mcmd_command(playerid, params[])
Function WITHOUT parameters: mcmd_command(playerid)

(You should change "command" for the command name, lol)

Why use it?
It's easy and faster to script.



Examples:
pawn Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
    // Init the mcmd
    mcmd_init(cmdtext);



    // Commands WITH parameters
    mcmd(kick, cmdtext, 4, playerid);
    mcmd(me, cmdtext, 2, playerid);

    // Commands WITHOUT parameters
    mcmd2(help, cmdtext, playerid);
    return 0;
}



mcmd_kick(playerid, params[])
{
    new kickid = strval(params);
    if (!IsPlayerConnected(kickid))
    {
        SendClientMessage(playerid, 0xFFFFFFFF, "The player isn't connected!");
        return 0;
    }

    new String[20];
    format(String, sizeof(String), "%i was kicked", kickid);
    SendClientMessage(playerid, 0xFFFFFFFF, String);
    Kick(kickid);
    return 1;
}

mcmd_me(playerid, params[])
{
    new String[128];
    format(String, sizeof(String), "%i %s", playerid, params);
    SendClientMessageToAll(0xFFFFFFFF, String);
    return 1;
}


mcmd_help(playerid)
{
    SendClientMessage(playerid, 0xFFFFFFFF, "You used /help, congratulations!");
    return 1;
}


Download:
Download!
Reply


Messages In This Thread
mcmd - Command processor! - by MrDeath537 - 29.08.2010, 09:45
Re: mcmd - Command processor! - by Agent Smith - 29.08.2010, 09:53
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 09:56
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 10:09
Re: mcmd - Command processor! - by DiddyBop - 29.08.2010, 10:27
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 10:31
Re: mcmd - Command processor! - by Grim_ - 29.08.2010, 10:55
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 10:57
Re: mcmd - Command processor! - by Calgon - 29.08.2010, 11:07
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 11:09
Re: mcmd - Command processor! - by Y_Less - 29.08.2010, 11:10
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 11:11
Re: mcmd - Command processor! - by playbox12 - 29.08.2010, 11:41
Respuesta: mcmd - Command processor! - by Jesus^ - 29.08.2010, 11:48
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 11:50
Re: mcmd - Command processor! - by ziomal432 - 29.08.2010, 11:51
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 12:02
Re: mcmd - Command processor! - by Y_Less - 29.08.2010, 15:56
Re: mcmd - Command processor! - by MrDeath537 - 29.08.2010, 22:05
Re: mcmd - Command processor! - by Y_Less - 29.08.2010, 23:16
Re: mcmd - Command processor! - by DiddyBop - 29.08.2010, 23:30
Re: mcmd - Command processor! - by Wesk3R - 30.08.2010, 01:30
Re: mcmd - Command processor! - by Simon - 30.08.2010, 02:12
Re: mcmd - Command processor! - by Norn - 30.08.2010, 02:14
Re: mcmd - Command processor! - by MrDeath537 - 30.08.2010, 02:37
Re: mcmd - Command processor! - by Kitten - 30.08.2010, 02:58
Re: mcmd - Command processor! - by MrDeath537 - 30.08.2010, 03:15
Re: mcmd - Command processor! - by Calgon - 30.08.2010, 03:44
Re: mcmd - Command processor! - by MrDeath - 30.08.2010, 04:34
Re: mcmd - Command processor! - by F_Lexx - 18.09.2010, 20:05
Re: mcmd - Command processor! - by Voldemort - 18.09.2010, 20:53
Respuesta: Re: mcmd - Command processor! - by MrDeath - 18.09.2010, 21:54
Re: mcmd - Command processor! - by RenisiL - 20.09.2010, 13:14
Respuesta: mcmd - Command processor! - by xenowort - 20.09.2010, 18:33
Re: mcmd - Command processor! - by Ricop522 - 04.03.2011, 22:29
Re: mcmd - Command processor! - by Steven82 - 05.03.2011, 10:23
Re: mcmd - Command processor! - by Montis123 - 05.03.2011, 12:07

Forum Jump:


Users browsing this thread: 1 Guest(s)