Why i'm getting this error:
error 090: public functions may not return arrays (symbol "GetRegionName")
return string;
on this:
error 090: public functions may not return arrays (symbol "GetRegionName")
return string;
on this:
Code:
forward GetRegionName(Float: X, Float: Y, Float: Z);
public GetRegionName(Float: X, Float: Y, Float: Z) {
? ? new string[128];
? ? format(string, sizeof(string), "Idlewood");
? ? return string;
}