From 04f6400ae2c4f8c7c991083346f80acdd8ab1c1c Mon Sep 17 00:00:00 2001 From: ChocoTaco1 Date: Sun, 16 Aug 2020 18:36:37 -0400 Subject: [PATCH] 100 points sound (Lak) --- Classic/scripts/LakRabbitGame.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Classic/scripts/LakRabbitGame.cs b/Classic/scripts/LakRabbitGame.cs index 815cd78..5d9d1a4 100644 --- a/Classic/scripts/LakRabbitGame.cs +++ b/Classic/scripts/LakRabbitGame.cs @@ -700,13 +700,17 @@ function Armor::damageObject(%data, %targetObject, %sourceObject, %position, %am %special !$= "" ? %special : "", %distance, %vel, - %accuracy ); + %accuracy); if(%sourceObject.holdingFlag && %points >= 75) { missileEveryone(%sourceObject); %sound = '~wfx/Bonuses/horz_straipass2_heist.wav'; } + else if(%points >= 100) + { + %sound = '~wfx/Misc/MA1.wav'; + } Game.recalcScore(%sourceObject.client); }