Files
2018-06-07 00:32:29 +01:00

16 lines
327 B
Java
Executable File

package script.e3demo;
import script.obj_id;
public class e3_faceto extends script.base_script
{
public e3_faceto()
{
}
public int OnStartNpcConversation(obj_id self, obj_id conversant) throws InterruptedException
{
faceTo(self, conversant);
return SCRIPT_CONTINUE;
}
}