Lines 639-640:
Code:
get_user_origin ( i, origin[3] );
FS_Should_Burn_Victim ( origin[3], burnvec1, burnvec2, radius, i, id, tempff );
Lines 399-403:
Code:
public FS_Should_Burn_Victim ( origin[], burnvec1[], burnvec2[], radius, i, id, ff )
{
if ( ( is_user_alive ( i ) == 1 ) && ( i != id ) )
{
if ( ( get_distance ( origin, burnvec1 ) < radius ) || ( get_distance ( origin[3], burnvec2 ) < radius ) )
Why are lines 399-403 giving me
Code:
error 47: array sizes do not match...
Lines 639-640 are correct AFAIK, but 399-403 are reciprocating this error. I tried a variety of things but none worked.
Initialization of origin:
I have been following the following threads/docs:
http://forums.alliedmods.net/showthr...%22array+sizes
www.doomworld.com/eternity/engine/smalldoc.pdf
Slmclarengt
__________________