hi , i need to know waht this code do in game :
PHP Code:
public fw_CmdStart(id, uc, seed)
{
if(g_bIsGhost[id])
{
new Buttons = get_uc(uc, UC_Buttons)
new Impulse = get_uc(uc, UC_Impulse)
if(Buttons & IN_USE)
{
Buttons &= ~IN_USE
set_uc(uc, UC_Buttons, Buttons)
}
if(Impulse == 100 || Impulse == 201)
{
set_uc(uc, UC_Impulse, 0)
return FMRES_HANDLED
}
}
return FMRES_IGNORED
}
__________________