MTASC will complain if you use the keyword “interface” *anywhere* in your code outside of its declared usage. This includes strings, which makes it tough if you have strings that need the word “interface”. Ok, so whats the work around?
Declare a static variable like so -
static var:String STR_INTERFACE = "inter" + "face";
Use this static variable in places where you would be using the word “interface”.
Hope this helps anyone else whose faced this compiler limitation!
Posted by mcoopet
Posted by mcoopet 