23.11.2009, 14:46
I can make a string with:
so if i made it under the other 'new' stuff, something like this:
and on connection i do this:
and everywhere else they just use 1 string,
how to make that?
pawn Код:
new string[1024];
format(string, sizeof(string), "string");
pawn Код:
new playerid[MAX_PLAYERS];
new string[1024];
format(string, sizeof(string), "lol");
pawn Код:
public OnPlayerConnect(playerid)
{
GameTextForPlayer(playerid,string,3000,4);
SendClientMessage(playerid,COLOR_WHITE,string");
return 1;
}
how to make that?