SA-MP Forums Archive
Incoming message - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Incoming message (/showthread.php?tid=188074)



Incoming message - antsolen - 06.11.2010

How i can make that if player join server then he got message

USE /register FOR REGISTER , OR /login FOR LOGIN !


Re: Incoming message - TouR - 06.11.2010

under OnPlayerConnect

SendClientMessage(playerid, the color you want, " USE /register FOR REGISTER, OR /login FOR LOGIN !");


Re: Incoming message - ViruZZzZ_ChiLLL - 06.11.2010

pawn Код:
public OnPlayerConnect(playerid)
{
  SendClientMessage(playerid, Colour, "USE /register FOR REGISTER, OR /login FOR LOGIN!");
  return 1;
}
EDIT : Oops >.>