Dang.
So, this would work though, right? (KOTOR1 still has locals, multiple of them, right? Which could be used to check?)
Code:
void main()
{
object oTarget = GetObjectByTag( "NPC_Talking" );
SetLocalBoolean(oTarget, 51, TRUE);
}
Code:
void main() {
object oTarget = GetObjectByTag( "NPC_Talking" );
If GettLocalBoolean(oTarget, 51, TRUE) {
return 1;
}
Else {
return 0;
}
}