2014-08-04 12:12:15 +00:00
|
|
|
// vim: set ts=4 sw=4 tw=99 noet:
|
|
|
|
//
|
|
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
|
|
//
|
|
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
|
|
|
|
//
|
|
|
|
// Rank Calculation
|
|
|
|
//
|
2004-02-21 20:55:47 +00:00
|
|
|
|
2005-07-07 18:41:29 +00:00
|
|
|
/* File location: $moddir/addons/amxmodx/data/csstats.amxx */
|
2004-02-21 20:55:47 +00:00
|
|
|
|
2004-03-05 19:35:38 +00:00
|
|
|
#include <amxmodx>
|
2004-02-21 20:55:47 +00:00
|
|
|
|
|
|
|
/* Function calculates position in rank.
|
2004-02-01 18:40:11 +00:00
|
|
|
*
|
|
|
|
* Stats:
|
|
|
|
* 0 - kills
|
|
|
|
* 1 - deaths
|
|
|
|
* 2 - headshots
|
2004-08-03 20:33:17 +00:00
|
|
|
* 3 - teamkills
|
2004-02-01 18:40:11 +00:00
|
|
|
* 4 - shots
|
|
|
|
* 5 - hits
|
|
|
|
* 6 - damage
|
2008-04-10 05:48:36 +00:00
|
|
|
* 7 - defusions
|
|
|
|
* 8 - defused
|
|
|
|
* 9 - plants
|
|
|
|
* 10 - explosions
|
2004-02-01 18:40:11 +00:00
|
|
|
*
|
|
|
|
* Returning cellmin as value in get_score function
|
2004-02-21 20:55:47 +00:00
|
|
|
* makes that rank won't be saved. */
|
2004-02-11 19:32:28 +00:00
|
|
|
|
2018-08-30 16:41:49 +00:00
|
|
|
public get_score(stats[11], body[MAX_BODYHITS])
|
|
|
|
return stats[STATSX_KILLS] - stats[STATSX_DEATHS] - stats[STATSX_TEAMKILLS] // kills - deaths - teamkills
|