Say command
#3

pawn Код:
[CMD:say(playerid,params[])// /say command
{
     new string[128], say[100];// Store the intial action
    new Float:x, Float:y, Float:z;
    GetPlayerPos(playerid, x, y, z);
     if(sscanf(params, "s[100]",say)) return SendClientMessage(playerid,COLOR_WHITE,"Usage: /s [Action]");//Error handling
    for (new i = 0; i < MAX_PLAYERS; i++)
    {
          if (IsPlayerInRangeOfPoint(i, 25.0, x, y, z))
          {
             format(string,sizeof(string),"*%s says\58 \34%s\34",GetName(playerid),say);//Formats the /shout cmd output
             SendClientMessage(i,COLOR_LIGHTBLUE,string);
        }
          else SendClientMessage(playerid, COLOR_SILVER, "You spoke but nobody heard you...");
          break;
          }
     return 1;
}
Reply


Messages In This Thread
Say command - by Tass007 - 17.07.2016, 11:17
Re: Say command - by oMa37 - 17.07.2016, 11:58
Re: Say command - by TaiRinsuru - 17.07.2016, 12:00
Re: Say command - by Stinged - 17.07.2016, 12:14
Re: Say command - by Tass007 - 18.07.2016, 04:52
Re: Say command - by Stinged - 18.07.2016, 08:55
Re: Say command - by Tass007 - 18.07.2016, 10:41
Re: Say command - by Tass007 - 20.07.2016, 02:09
Re: Say command - by Sew_Sumi - 20.07.2016, 03:20
Re: Say command - by Tass007 - 20.07.2016, 04:17

Forum Jump:


Users browsing this thread: 1 Guest(s)