02.06.2014, 12:44
the problem is that the format syntax is wrong
the 2nd argument should be the size of the output string
so like current line is this--
format(str, "{15D4ED}Player Name: %s\n", GetName(playerid));
change it to following--
format(str, sizeof(str),"{15D4ED}Player Name: %s\n", GetName(playerid));
like this do with all format line
the 2nd argument should be the size of the output string
so like current line is this--
format(str, "{15D4ED}Player Name: %s\n", GetName(playerid));
change it to following--
format(str, sizeof(str),"{15D4ED}Player Name: %s\n", GetName(playerid));
like this do with all format line