View Single Post
CrazY.
Veteran Member
Join Date: May 2015
Location: SP, Brazil
Old 08-09-2018 , 15:18   Re: [TUT] Compiling AMXX plugins with Sublime Text
Reply With Quote #125

Autocomplete doesn't work with stock bool or any other stock (weird, because before, it worked) and I got this following console error.

Code:
/* Tests if given string contains only digits. Also, returns false for zero-length strings. */ stock bool:is_str_num(const sString[]) {     new i = 0;         while (sString[i] && isdigit(sString[i]))         ++i;         return sString[i] == 0 && i != 0; }

Code:
16:17:31:278.320074 5.66e+00 - AmxxEditor.AmxxEditor.load_from_file:854 - (analyzer) Include File Not Found: VexdUM
__________________









Last edited by CrazY.; 08-09-2018 at 15:23.
CrazY. is offline