I'm working on a script for something and I'm wondering if it's possible to call a function from within a function.
Something like:
NPC Code:
function test1(){
script stuff;
if(something happens){
test2();
}
return;
}
I'm not sure cause it isn't working to well with what I have. I'm actually testing for a position, and a keydown while at that position.