Battledale_PRC8/_module/nss/jw_tran_traptrig.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

28 lines
576 B
Plaintext

void replacetrap(object oObject)
{
string sResref=GetTag(oObject);
int nRandom=d3();
string sRandom=IntToString(nRandom);
string sWP=sResref+"_wp"+sRandom;
location lLoc=GetLocation(GetWaypointByTag(sWP));
DestroyObject(oObject);
CreateObject(OBJECT_TYPE_PLACEABLE,sResref,lLoc);
}
void main()
{
object oPC=GetEnteringObject();
int nRandom=Random(5);
int nVFX=194+nRandom;
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(nVFX),oPC);
FloatingTextStringOnCreature("*Trap triggered!*",oPC);
object oChest=OBJECT_SELF;
DelayCommand(5.0,replacetrap(oChest));
}