06.06.2016, 00:07
I doubt if this is a bug... How do you use the inputtext in your format's and printfs?
Because if i use a %s in any format/printf, then it just works.
My test code:
UPDATE: nvm, i see now that SendClientMessageToAll doesn't like %s and any other format.
Because if i use a %s in any format/printf, then it just works.
My test code:
PHP Code:
public OnGameModeInit() {
new
message[] = "%s",
string[128]
;
format(string, sizeof(string), "%s", message);
printf("%s", message);
return 1;
}