Thread: Fraggl
View Single Post
Johnny got his gun
Veteran Member
Join Date: Jan 2004
Location: Tokyo
Old 12-12-2004 , 13:22  
Reply With Quote #2

You have a lot of tag mismatch.

You do this: float:variable, when you really should do: Float:variable.
Not the big F. :-)

Also the functions that should return floats should be created like this:

Code:
Float:thisfunctionreturnsafloat() {     return 5.0; } anotherfunctino() {     new Float:floatvalue = thisfunctionreturnsafloat() }
Johnny got his gun is offline