07.12.2018, 14:08
Код:
#include <a_samp> #define MAX_NEWBIESMESSAGES (500) #define MAX_MESSAGE_STR (518) enum NewbieMessagesInfo { nMessage[MAX_MESSAGE_STR] }; new NewbieMessageInfo[MAX_NEWBIESMESSAGES][NewbieMessagesInfo]; main() { } public OnPlayerConnect(playerid) { SendQuestion(playerid, "TR"); return 1; } stock SendQuestion(playerid, message[]) { format(NewbieMessageInfo[playerid][nMessage], MAX_MESSAGE_STR, message); }