21.12.2011, 20:36
I have a text draw code:
And it is for when some one joins it say in the lower right JOIN:
But the problem is idk how i would make it so it says the JOIN: (name) ? Any help
pawn Код:
// On top of script:
new Text:joinmsg;
// In OnGameModeInit
joinmsg = TextDrawCreate(506 ,330 , "Join:");
TextDrawFont(joinmsg , 3);
TextDrawLetterSize(joinmsg , .4, 2.8000000000000003);
TextDrawColor(joinmsg , 0x187836FF);
TextDrawSetOutline(joinmsg , false);
TextDrawSetProportional(joinmsg , true);
TextDrawSetShadow(joinmsg , 1);
But the problem is idk how i would make it so it says the JOIN: (name) ? Any help