Files
dsrc/sku.0/sys.server/compiled/game/script/npe/npe_station_player.script
T

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;
}