Quote:
| 
					Originally Posted by TitanX  Nice work but i noticed something 
PHP код: 
new Float:xx, Float:yy, Float:zz,Float:xx2, Float:yy3, Float:zz4; 
 is not needed also use static not global variables
 
PHP код: 
static Float:x[2], Float:y[2], Float:z[2] 
 and use for every native a variable like this
 
PHP код: 
GetPlayerPos(hitid, x[0], y[0], z[0]) 
 etc   | 
 also arrays are slower than normal variables he don't have huge no of variables. So there is no need for that.