From a073c4ae3c8b07b27d1a0b50efbf15dd17c47fcc Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Tue, 3 Aug 2004 20:33:17 +0000 Subject: [PATCH] changed calculation --- plugins/csstats.sma | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/csstats.sma b/plugins/csstats.sma index 82f3aecf..dbfa81c4 100755 --- a/plugins/csstats.sma +++ b/plugins/csstats.sma @@ -42,7 +42,7 @@ * 0 - kills * 1 - deaths * 2 - headshots -* 3 - teamkilling +* 3 - teamkills * 4 - shots * 5 - hits * 6 - damage @@ -51,4 +51,4 @@ * makes that rank won't be saved. */ public get_score( stats[8] , body[8] ) - return stats[0] - stats[1] // kills - deaths \ No newline at end of file + return stats[0] - stats[1] - stats[3] // kills - deaths - teamkills \ No newline at end of file