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.
This commit is contained in:
39
_module/nss/ah_climb2.nss
Normal file
39
_module/nss/ah_climb2.nss
Normal file
@@ -0,0 +1,39 @@
|
||||
void main()
|
||||
{
|
||||
object oidUser;
|
||||
object oidDest;
|
||||
// object oidDestFailed;
|
||||
//int nIdx;
|
||||
object oAssociate;
|
||||
//object oRender=GetObjectByTag("jw_hulk");
|
||||
|
||||
oidUser = GetPCSpeaker();
|
||||
oidDest = GetObjectByTag("ah_climb2_wp");
|
||||
// oidDestFailed = GetObjectByTag("ah_climb3fail_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("Climbing..",oidUser);
|
||||
SendMessageToPC(oidUser, "You manage to climb back up the chain..");
|
||||
AssignCommand(oidUser, ActionJumpToObject(oidDest,FALSE));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user