View Single Post
CheesyPeteza
Senior Member
Join Date: Feb 2004
Location: UK
Old 03-17-2004 , 17:25  
#42

Quote:
Originally Posted by IceMouse[WrG
]I downloaded this and noticed that in the stock functions theres a few
Code:
FVec[0] = float(IVec[0])
FVec[1] = float(IVec[1])
FVec[2] = float(IVec[2])
Don't you feel it would make it a bit simpler to
Code:
for(new i=0;i<3;i++)
FVec[i] = float(IVec[i])
Anyhow I didn't know what more you guys could have added, but I think that AMXX is a step in the right direction from the dead-development of AMX Mod
The first method is the fastest method, for loops add more instructions that isn't worth it for 3 simple assignments. Plus its simpler to read.
__________________
YO|Cheesy Peteza

[email protected]

CheesyPeteza is offline