15 lines
266 B
Plaintext
15 lines
266 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if ((GetLevelByClass(CLASS_TYPE_DRAGONDISCIPLE, oPC)>0))
|
||
|
|
||
|
{
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
AssignCommand(oPC, ActionJumpToLocation(GetLocation(GetWaypointByTag("NW_DEATH_TEMPLE"))));
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|