View Single Post
CrazY.
Veteran Member
Join Date: May 2015
Location: SP, Brazil
Old 12-14-2018 , 06:45   Re: [TUT] Compiling AMXX plugins with Sublime Text
Reply With Quote #145

Of course. I used stocks of xs.inc (xs_vec_add and xs_vec_equal), in the following example.

Code:
stock bool:xs_vec_equal(const Float:vec1[], const Float:vec2[]) {     return (vec1[0] == vec2[0]) && (vec1[1] == vec2[1]) && (vec1[2] == vec2[2]); } stock xs_vec_add(const Float:in1[], const Float:in2[], Float:out[]) {     out[0] = in1[0] + in2[0];     out[1] = in1[1] + in2[1];     out[2] = in1[2] + in2[2]; }

1° Auto-complete works with xs_vec_add but not with xs_vec_equal



2° "Pop up" works with xs_vec_add but not with xs_vec_equal

__________________









Last edited by CrazY.; 12-14-2018 at 06:46.
CrazY. is offline