Battledale_PRC8/_module/nss/ah_jump_trig_ok.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

39 lines
1.2 KiB
Plaintext

void main()
{
object oidUser;
object oidDest;
object oidDestFailed;
//int nIdx;
object oAssociate;
//object oRender=GetObjectByTag("jw_hulk");
oidUser = GetPCSpeaker();
oidDest = GetObjectByTag("ah_jump_wp");
oidDestFailed = GetObjectByTag("ah_jumpfailed_wp");
// for (nIdx=1;nIdx<=5;nIdx++)
/* {
oAssociate=GetAssociate(nIdx,oidUser);
if (GetIsObjectValid(oAssociate))
{
AssignCommand(oAssociate, JumpToObject(oidDest,FALSE));
}
} */
if (ReflexSave(oidUser,16,SAVING_THROW_ALL)==0)
{
SendMessageToPC(oidUser, "You missed the ledge and fall into the darkness..");
FloatingTextStringOnCreature("Missed the ledge..",oidUser);
AssignCommand(oidUser, JumpToObject(oidDestFailed,FALSE));
// AssignCommand(oidUser,PlaySound("as_na_splash1"));
//ApplyEffectToObject(EffectKnockdown,oidUser,130.0);
//ApplyEffectToObject(DURATION_TYPE_INSTANT,
//EffectVisualEffect(VFX_IMP_POISON_S), oidUser);
}
else
{
FloatingTextStringOnCreature("Made it",oidUser);
AssignCommand(oidUser, ActionJumpToObject(oidDest,FALSE));
}
}