pText_Text( text1[], text2[] ) - AideedGameZ/SAMP_pText_Include GitHub Wiki
Syntax: pText_Text( text1[], text2[] )
- text1[] : first String
- text2[] : second String
Example:
new name[MAX_PLAYER_NAME+1];
GetPlayerName(playerid,name,sizeof(name));
SendClientMessage(playerid,0xFFFFF, pText_Text( name, " has joined the server") );
return 1;
Output:
Player Name has joined the server