06.03.2019, 16:45
cache_get_value_name
So you have to change this line
to this..
And this
to this..
It looks like, you didn't create the function..
Код:
cache_get_value_name(row_idx, const column_name[], destination[], max_len = sizeof(destination))
Код:
BanExpire = cache_get_value_name(i, "BanExpire");
Код:
cache_get_value_name(i, "BanExpire", BanExpire);
Код:
if(BanExpire == 0) ban_expire = "PERMANENT"; else ban_expire = TimeConvert(BanExpire);
Код:
if(BanExpire == 0) format(ban_expire, sizeof(ban_expire), "PERMANENT"); else format(ban_expire, sizeof(ban_expire), TimeConvert(BanExpire));
Код:
error 017: undefined symbol "TimeConvert"