06.11.2010, 21:14
(
Последний раз редактировалось Colton; 06.11.2010 в 21:25.
)
Alright Guy's I have a Question, Lets say I wanted to make a welcome message I would put this into pawno compile into .amx and put it into my filterscript folder on my server.
Is there anything I need to add onto this to make it work?
Is there anything I need to add onto this to make it work?
Код:
#include <a_samp>
#define RED 0xAA3333AA
#if define FILTERSCRIPT
public OnPlayerConnect(playerid)
{
new string[85],pname[24];
GetPlayerName(playerid,pname,24);
format(string,sizeof(string),"*** %s Has Joined The Server! (ID:%d)",pname,playerid);
SendClientMessageToAll(RED,string);
SendClientMessage(playerid, RED, "Welcome");
#endif

