Files
dsrc/sku.0/sys.server/compiled/game/script/npe/npe_station_player.java
T
2018-06-07 00:32:29 +01:00

23 lines
688 B
Java
Executable File

package script.npe;
import script.library.groundquests;
import script.obj_id;
public class npe_station_player extends script.base_script
{
public npe_station_player()
{
}
public int OnNewbieTutorialResponse(obj_id self, String strAction) throws InterruptedException
{
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;
}
}