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:
89
_module/nss/jw_aishatrap_usd.nss
Normal file
89
_module/nss/jw_aishatrap_usd.nss
Normal file
@@ -0,0 +1,89 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: Custom User Defined Event
|
||||
//:: FileName
|
||||
//:: Copyright (c) 2001 Bioware Corp.
|
||||
//:://////////////////////////////////////////////
|
||||
/*
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By:
|
||||
//:: Created On:
|
||||
//:://////////////////////////////////////////////
|
||||
|
||||
void main()
|
||||
{ object oObject;
|
||||
int nCounter;
|
||||
int nUser = GetUserDefinedEventNumber();
|
||||
|
||||
|
||||
if(nUser == 500) //OPEN from other side
|
||||
{
|
||||
SetLocked(OBJECT_SELF,FALSE);
|
||||
DelayCommand(0.5,PlayAnimation(ANIMATION_PLACEABLE_OPEN));
|
||||
|
||||
DelayCommand(10.0,PlayAnimation(ANIMATION_PLACEABLE_CLOSE));
|
||||
DelayCommand(10.0,SetLocked(OBJECT_SELF,TRUE));
|
||||
}
|
||||
|
||||
if(nUser == 600) //OPEN from other side by Wilberforce
|
||||
{
|
||||
SetLocked(OBJECT_SELF,FALSE);
|
||||
DelayCommand(0.5,PlayAnimation(ANIMATION_PLACEABLE_OPEN));
|
||||
|
||||
DelayCommand(10.0,PlayAnimation(ANIMATION_PLACEABLE_CLOSE));
|
||||
DelayCommand(10.0,SetLocked(OBJECT_SELF,TRUE));
|
||||
|
||||
oObject=GetFirstObjectInArea();
|
||||
while (GetIsObjectValid(oObject))
|
||||
{
|
||||
if (GetTag(oObject)=="jw_wilberforce")
|
||||
{
|
||||
nCounter=1;
|
||||
}
|
||||
oObject=GetNextObjectInArea();
|
||||
|
||||
}
|
||||
if (nCounter==0)
|
||||
{
|
||||
oObject= GetObjectByTag("jw_wilberforce");
|
||||
AssignCommand(oObject,JumpToLocation(GetLocation(GetObjectByTag("WP_jw_aisha_fromabove"))));
|
||||
}
|
||||
}
|
||||
|
||||
if(nUser == 1001) //HEARTBEAT
|
||||
{
|
||||
|
||||
}
|
||||
else if(nUser == 1002) // PERCEIVE
|
||||
{
|
||||
|
||||
}
|
||||
else if(nUser == 1003) // END OF COMBAT
|
||||
{
|
||||
|
||||
}
|
||||
else if(nUser == 1004) // ON DIALOGUE
|
||||
{
|
||||
|
||||
}
|
||||
else if(nUser == 1005) // ATTACKED
|
||||
{
|
||||
|
||||
}
|
||||
else if(nUser == 1006) // DAMAGED
|
||||
{
|
||||
|
||||
}
|
||||
else if(nUser == 1007) // DEATH
|
||||
{
|
||||
|
||||
}
|
||||
else if(nUser == 1008) // DISTURBED
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user