I need help...
#1

I will list what I need help with, and im using Y_ini.

.How do I take off the dots off the minimap (Like when other players are on I need to get ride of that)

.I need a /help YCMD

.Thats it!
Reply
#2

https://sampwiki.blast.hk/wiki/ShowPlayerMarkers
Код:
ShowPlayerMarkers(0); //Removes the player markers - Credits SAMP wiki.
--------------------

What better place to get the /help then from Mr ****** himself.

https://sampforum.blast.hk/showthread.php?pid=797676#pid797676

Quote:
Originally Posted by ******
Посмотреть сообщение
[*]Help - The command system, as shown above, has inbuilt support for a help system. You define the help for a command with that command, making managing your script VASTLY easier. To use this feature from your help command simply do something like:

pawn Код:
YCMD:help(playerid, params[], help)
{
    if (help)
    {
        SendClientMessage(playerid, 0xFF0000AA, "Displays help about your mode.");
    }
    else
    {
        if (isnull(params))
        {
            new
                str[128];
            SendClientMessage(playerid, 0xFF0000AA, "Welcome to my mode.");
            format(str, sizeof (str), "Type \"/%s [command]\" for more help on a command", Command_GetDisplayNamed("help", playerid));
            SendClientMessage(playerid, 0xFF0000AA, str);
        }
        else
        {
            Command_ReProcess(playerid, params, true);
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)