mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
20 lines
459 B
Plaintext
20 lines
459 B
Plaintext
include library.space_utils;
|
|
include library.space_transition;
|
|
include library.groundquests;
|
|
|
|
trigger OnNewbieTutorialResponse(string strAction)
|
|
{
|
|
if(strAction.equals("clientReady"))
|
|
{
|
|
|
|
newbieTutorialEnableHudElement(self, "chatbox", true, 0);
|
|
newbieTutorialEnableHudElement(self, "radar", false, 0);
|
|
groundquests.grantQuest(self, "quest/npe_solo_profession_2");
|
|
detachScript(self, "npe.npe_station_player");
|
|
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
|