26.08.2009, 02:49
I have a question with the below sample code. With the way that I have it set up, will the test(playerid); only be executed if the conditions of the if statement aren't met? If so, is there any way for test(playerid); to be executed without sticking it in the if statement to prevent redundancy. Obviously, sticking it in the if statement now isn't going to be matter since there isn't any other if statements in the function, but I'm talking as if there was.
Kind Regards,
Haku
Код:
public something(playerid) { if(...) { ... } test(playerid); }
Haku