[INFO]Convert Command
#1

how to turn this command / me, YCMD?

https://sampwiki.blast.hk/wiki/Using_strcmp%28%29
Reply
#2

use zcmd+sscanf

CMD:me(playerid,params[])
{
new text[128];
if(sscanf(params,"s",text)) return SendClientMessage(playerid,-1,"usage /me text");
{
new name[24], s[128];
GetPlayerName(playerid, name, sizeof name);
format(s, sizeof s, "%s say %s",name, text);
SendClientMessageToAll(-1,s);
}
return 1;
}
Reply
#3

Next time use SUPER DUPER MAGIC search function!

pawn Код:
YCMD:me(playerid, params[], help)
{
    if (help)
    {
        SendClientMessage(playerid, 0xFF0000AA, "Sends an action to other players.");
    }
    else
    {
        new
            str[128];
        if (isnull(params))
        {
            format(str, sizeof (str), "Usage: \"/%s [action]\"", Command_GetDisplayNamed("me", playerid));
            SendClientMessage(playerid, 0xFF0000AA, str);
        }
        else
        {
            GetPlayerName(playerid, str, sizeof (str));
            format(str, sizeof (str), "* %s %s", str, params);
            SendClientMessageToAll(0xFF0000AA, str);
        }
    }
    return 1;
}
Reply
#4

Thank you..
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)