hi,
first my code:
Code:
register_forward(FM_PlayerPreThink, "ClientPreThink");
public ClientPreThink(Client)
{
if (getClientATKCHARGE(Client) && isFX != 1)
{
server_print("FX on!");
entity_set_int(Client, EV_INT_sequence, 110);
isFX = 1;
}
}
this works fine, but i still dont want that the sequence 110 repeats. i want to play him and then freeze him until i change them again. any ideas?