(09-24-2016, 01:18 PM)hunk Wrote: Does it mean you have been able to implement if conditions in the subs? e.g.
PHP Code:if ( healing_required ) {
execute_healing_scripting();
}
else {
execute_goal_scripting();
}
Also, does it mean that until the healing is complete, the effects of the sub may not be visible? Which also makes me think... if someone is able to see the effects of sub, would that mean they do not need any more healing?
As Shannon stated elsewhere it is more like:
Code:
try
{
execute_healing();
}
catch (Exception e)
{
//nothing to heal found
}
In theory, theory and practice are the same. In practice, they are not.