phillip875
(Big Clucker)
***

Registration Date: 02.01.2012
Date of Birth: Not Specified
Local Time: 27.04.2024 at 05:07
Status: Offline

phillip875's Forum Info
Joined:
02.01.2012
Last Visit:
13.01.2014, 18:52
Total Posts:
158 (0.04 posts per day | 0.01 percent of total posts)
(Find All Posts)
Total Threads:
3 (0 threads per day | 0 percent of total threads)
(Find All Threads)
Time Spent Online:
None Registered
Members Referred:
0
Reputation:

phillip875's Signature
pawn Code:
public OnPlayerCommandText(playerid,cmdtext[])
{
    if(strcmp("/help", cmdtext, true, 10) == 0)
    {
        new pName[MAX_PLAYER_NAME],string[128];
        GetPlayerName(playerid,pName,sizeof(pName));
        format(string,sizeof(string),"Hello %s, we knew you wanted some serious help!",pName);
        SendClientMessage(playerid,0xFF990000,string);
        return 1;
    }
    return 0;
}