PWE_PRC8/_module/nss/portaltochance.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

23 lines
593 B
Plaintext

#include "NW_I0_GENERIC"
void main()
{
object user=GetLastUsedBy();
if(!GetIsObjectValid(user)||!GetIsPC(user))
return;
int nMyLevels = GetCharacterLevel(user);
if ((nMyLevels >= 16) && (nMyLevels <= 40))
{
effect eff=EffectVisualEffect(VFX_FNF_SUNBEAM);
object target=GetObjectByTag("WP_sarlo_chance");
AssignCommand(user,ClearAllActions());
ApplyEffectToObject(DURATION_TYPE_INSTANT,eff,OBJECT_SELF);
AssignCommand(user,ActionJumpToObject(target));
}
else
{
SpeakString( "You do not meet level requirements to access this portal " + "." );
}
}