01.04.2009, 13:15
I have this in OnPlayerConnect:
The question is about this:
I want to make some when you join a DM area for example it says "%s joined bla bla bla"
But in the
the numbers, (256) can you write like 1 2 3 etc or is it any certain numbers that only them can be used? If I have 1 [256] and 1 [128] can I use the same numbers in another string or..?
Thanks,
Klutty.
pawn Код:
new string[256];
new playername[MAX_PLAYER_NAME];
GetPlayerName(playerid,playername,sizeof(playername));
format(string, sizeof(string), "~%s has joined the Sweet Life~",playername);
SendClientMessageToAll(COLOR_LIGHTBLUE,string);
pawn Код:
new string[256];
But in the
pawn Код:
new string[256];
Thanks,
Klutty.