24 lines
476 B
Plaintext
24 lines
476 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
if (GetLocalInt(GetModule(), "SeingGuns") == 3)
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oTarget1;
|
||
|
|
||
|
oTarget1 = GetObjectByTag("DustElfFaction");
|
||
|
AdjustReputation(oPC, oTarget1, 200);
|
||
|
|
||
|
object oTarget = GetWaypointByTag("RowDest3");
|
||
|
AssignCommand(oPC, JumpToObject(oTarget));
|
||
|
}
|
||
|
|
||
|
else
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oTarget = GetWaypointByTag("SeingGuns_WP");
|
||
|
AssignCommand(oPC, JumpToObject(oTarget));
|
||
|
}
|
||
|
}
|
||
|
|