I tried many ways to do this but nothing worked
It removes all the hit zones except one leg
Then I used this way:
PHP Code:
public check_hitzones1(id)
{
set_user_hitzones(0, id, 64)
set_task(0.1, "check_hitzones2", id)
}
public check_hitzones2(id)
{
set_user_hitzones(0, id, 128)
set_task(0.1, "check_hitzones1", id)
}
This will make the hitzones switch between left and right leg every 0.1 sec
But I think there's a more efficiant way to do this
If anyone knows a way to make the two hitzones work together plz tell me
__________________