07.03.2017, 07:38
This basically doesn't work ... the compiler just stops responding. Any idea on how can i make this work?
Код:
// On top. #define MSG_SOMETHING "Hey %s what's up" // Somewhere. new string[64], name[24]; GetPlayerName(playerid, name, sizeof(name)); format(string, sizeof(string), MSG_SOMETHING, name); SendClientMessage(playerid, COLOR_WHITE, string);