Hello, guy's i've got a problem

(
include file:
PHP Code:
new fwd_reset = CreateMultiForward("kz_resetdata", ET_IGNORE, FP_CELL);
new fwd_result;
plugin code:
PHP Code:
ExecuteForward(fwd_reset, fwd_result, id);
when compiling i get
Code:
D:\Downloads\CS servers\AMXX_Studio_1.4.3_final\compiler\include\kz-amxx.inc(26) : error 008: must be a constant expression; assumed zero
i've got almost the same code in that include but with different var and forward_handle names and it compiles without any problems!
here you go include:
PHP Code:
new fwd_start = CreateMultiForward("kz_startclimb", ET_IGNORE, FP_CELL);
new fwd_finish = CreateMultiForward("kz_finishclimb", ET_IGNORE, FP_CELL, FP_FLOAT, FP_CELL, FP_CELL);
plugin code:
PHP Code:
ExecuteForward(fwd_start, fwd_result, id);
and in other place
ExecuteForward(fwd_finish, fwd_result, id, time, cp_count[id], gc_count[id]);
__________________