04.11.2010, 23:34
You can't do a format operator (%) without using the actual "format".
You will need to make a string array or something:
You will need to make a string array or something:
pawn Код:
new str[80];
format(str, sizeof(str), "Accounts/%s.ini", playername);
if(dini_Get(file, str))
etc

