Alangara_PRC8/_module/nss/mn_alignmentwall.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

107 lines
3.4 KiB
Plaintext

// AlignmentWall
void accessDenied( object oPC, object companion, string jumplocation )
{
string besked = "Your companion is pushed back by the forcewall";
if (GetIsPC( companion ) )
{
besked = "You are pushed back by the forcewall";
}
FloatingTextStringOnCreature ( besked, oPC, FALSE );
location telepoint = GetLocation( GetObjectByTag( jumplocation ) );
// debugMessage( "Debug: Jumplocation: "+ jumplocation );
AssignCommand( companion, ClearAllActions() );
AssignCommand( companion, ActionJumpToLocation( telepoint ) );
}
void main()
{
object oPC = GetEnteringObject();
object companion = oPC;
int requiredRank = GetLocalInt( OBJECT_SELF, "req_id" );
string jumplocation = "MN_AIDBENTRANCE";
// find top in master-associate hierachy
while ( GetIsObjectValid( GetMaster( oPC ) ) )
{
oPC = GetMaster( oPC );
}
if ( GetIsPC( oPC ) )
{
int alignment = GetAlignmentGoodEvil( oPC );
if ( alignment == ALIGNMENT_EVIL )
{
accessDenied( oPC, companion, jumplocation );
return;
}
}
else
{
// Behaviour for NPCs entering the portal
/*
int npcRank = GetLocalInt( oPC, "mn_h_rank" );
switch ( alertStatus )
{
case MN_ALERT_NORMAL:
// Low threat - no mana drained, but forged passes are not discovered
if ( (npcRank < requiredRank) )
{
accessDenied( oPC, companion, jumplocation );
return;
}
break;
case MN_ALERT_HEIGHTENED:
// Intrusion suspected or expected - if a forged pass would allow
// entry (and an authentic wouldn't), pass is removed, person is
// confined, and alert status is scaled upwards to active.
if ( (npcRank < requiredRank) )
{
accessDenied( oPC, companion, jumplocation );
return;
}
case MN_ALERT_ACTIVE:
// Intrusion confirmed - all passage is heavily screened. Any
// forged pass is detected, the user is confined, and the pass
// is removed. Movement is restricted to those of the rank of
// allies and above( including guards ). Teleportation portals
// and exit door is closed, and the teleportation restrictor
// is activated, rendering all but local teleportation impossible.
// Local teleportation is not usable for anyone under the rank
// of ally.
if ( (npcRank < MN_RANK_ALLY ) ||
( npcRank < requiredRank) )
{
accessDenied( oPC, companion, jumplocation );
return;
}
break;
case MN_ALERT_INVASION:
// Stronghold under attack, or treason suspected or confirmed.
// Lockdown - only owner and personal friends can pass walls
// or use local teleportation. Global teleportation is made
// impossible by the activation of the teleportation restrictor.
// Civilians are confined to the safety area for the duration of
// this event. Exit door field blocks all passage. Any forged pass
// is detected, the user is confined, and the pass is removed.
if ( (npcRank < MN_RANK_FRIEND || npcRank < requiredRank) )
{
accessDenied( oPC, companion, jumplocation );
return;
}
break;
}
*/
}
}