/2443_tr_portal_cl.nss Secret
Created
January 12, 2016 13:13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2443_tr_portal_cl | |
// If we've completed illefarn ruins, transition to 2410 | |
// EPF 8/2/06 | |
#include "ginc_transition" | |
void main() | |
{ | |
object oPC = GetClickingObject(); | |
if(GetGlobalInt("00_bCompletedIllefarnRuins")) | |
{ | |
if ( GetGlobalInt( VAR_GLOBAL_GATHER_PARTY ) == 1 ) | |
{ | |
if ( IsPartyGathered( oPC ) == FALSE ) | |
{ | |
ReportPartyGather( oPC ); | |
return; | |
} | |
} | |
SetGlobalInt("nLastSongPortal",2443); | |
SinglePartyTransition(oPC, GetObjectByTag("2410_portal_exit")); | |
} | |
else | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment