04.03.2011, 14:47
When adding this line
You will get this error
Here is the fix
You added a ":" next to "by"
Nice and it looks really good, good tutorial Tee.
pawn Code:
new Float:bx,Float:by:,Float:bz;//Position variables X Y Z and Rotation (Angle);
pawn Code:
error 020: invalid symbol name "by"
pawn Code:
new Float:bx,Float:by,Float:bz;//Position variables X Y Z and Rotation (Angle);
Nice and it looks really good, good tutorial Tee.