the title says all:
PHP Code:
public FwdCmdStart(id, ent, uc_handle, seed)
{
if (is_user_connected(id) && get_pcvar_num(ff_stat))
return FMRES_IGNORED;
new button = get_uc(uc_handle, UC_Buttons);
new target[32]
pev(ent, pev_targetname, target, 31)
if ((button & IN_USE))
{
if(equal(target, "endbut"))
{
set_task( 1.0 , "text" , 2356 , _ , _ , "a" , 1 );
}
}
return FMRES_IGNORED;
}
public text()
{
client_print(0, print_chat, "gratz You almost won the fear factory left only one victory...")
}
im using this everything wokrs except when i push button i do not get message...
__________________