31.01.2018, 13:40
Quote:
i said not this way
i don't want to put the filterscript i want the code from the filterscript inserted to my gamemode.. |
Next, lets say for example that this is your filterscript:
Код:
public OnPlayerConnect(playerid) { new string[64], pName[MAX_PLAYER_NAME]; GetPlayerName(playerid,pName,MAX_PLAYER_NAME); format(string,sizeof string,"%s has joined the server. Welcome!",pName); SendClientMessageToAll(0xFFFFFFAA,string); return 1; }