01.04.2011, 16:18
What I was saying was that when I type in '!say hi' it will say this in the IRC.
What I am wondering is how that I would make it say this
My Script...
Код:
[DR]Sc0pe: !say hey everybody
Код:
[DR]Sc0pe: hey everybody
pawn Код:
if(strfind(text,"!say",true)!= -1 )
{
new name[MAX_PLAYER_NAME];
new ircMsg[128];
GetPlayerName(playerid, name, sizeof(name));
format(ircMsg, sizeof(ircMsg), "[%d] 07%s: %s", playerid, name, text);
AddEcho(ircMsg);
//IRC_GroupSay(gGroupID, IRC_CHANNEL, ircMsg);
return 0;
}