Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2022-10-07 14:20:31 -04:00
parent 0bbbd2678a
commit 128e7e59a4
7060 changed files with 4955665 additions and 0 deletions

10
module/nss/smack2.nss Normal file
View File

@@ -0,0 +1,10 @@
void main()
{
object oPC = GetPCSpeaker();
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectDamage(50, DAMAGE_TYPE_BLUDGEONING,DAMAGE_POWER_PLUS_FIVE), oPC);
SendMessageToPC(oPC, "You hit the solid ground with a loud thud.");
object oDrop = GetWaypointByTag("pitentrance3");
//jump the PC to the destination
AssignCommand (oPC,JumpToObject(oDrop));
}