Would it be possible to change the if statements where, if the jumping function is inside an if block, it could perform some functions like changing a user var based on if it's true or not?
Code: Select all
TNT1 A 0
{
if ( A_CheckLOF(...) )
{
//Some functionality here like A_SetUserVar
}
else //Should A_CheckLOF fail
{
}
}