31.08.2014, 22:24
I have a question, what does Y_INI return if there's no such variable found in the .ini?
For example, if it does not find the variable string in the .ini, what value would LoadPhoneNumber get?
pawn Код:
forward LoadContactName_data(phonenumber, name[], value[]);
public LoadContactName_data(phonenumber, name[], value[])
{
new string[128];
valstr(string, phonenumber);
INI_String(string, LoadPhoneNumber, 64);
return 1;
}