mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
16 lines
327 B
Java
Executable File
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;
|
|
}
|
|
}
|