mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
15 lines
292 B
Plaintext
15 lines
292 B
Plaintext
include library.space_utils;
|
|
include library.space_transition;
|
|
|
|
trigger OnNewbieTutorialResponse(string strAction)
|
|
{
|
|
if(strAction.equals("clientReady"))
|
|
{
|
|
obj_id objShip = getTopMostContainer(self);
|
|
messageTo(objShip, "doEvents", null, 1, false);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
|