11.01.2018, 11:03
Hello guys, I want to now how can I create a message format like this
I currently use this, but I want what I have shown above, for something quicker to write
I saw in some people scripting on ytb and I want to know how I can do that for myself.
Код:
SFM(playerid, -1, "Hello %s", "Bonjour %s", GetName(playerid));
Код:
if(playerVariables[playerid][pLanguage] == 2) format(string, sizeof(string), "Bonjour %s", GetName(playerid)); else format(string, sizeof(string), "Hello %s", GetName(playerid)); SendClientMessage(playerid, -1, string);