Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

K4-System v4.1.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@K4ryuu K4ryuu released this 11 Apr 17:35
· 58 commits to dev since this release
  • feat: Add Reset option for all module
  • feat: Add 25 new statistics
  • feat: Add new API endpoints
  • fix: Rank name not updating in MySQL
  • fix: Admin shows a user multiple times
  • fix: Toplist and Rank command lag spikes
  • fix: Rank resets sets 0 instead of starting points
  • fix: AutoPurge delete freshly moved database
  • fix: Add loading message to commands where needed
  • optimise: The full plugins code
  • upgrade: Changed support from NET7 to NET8

Update MySQL tables:

ALTER TABLE `k4stats`
ADD `chest_hits` INT NOT NULL DEFAULT 0,
ADD `stomach_hits` INT NOT NULL DEFAULT 0,
ADD `left_arm_hits` INT NOT NULL DEFAULT 0,
ADD `right_arm_hits` INT NOT NULL DEFAULT 0,
ADD `left_leg_hits` INT NOT NULL DEFAULT 0,
ADD `right_leg_hits` INT NOT NULL DEFAULT 0,
ADD `neck_hits` INT NOT NULL DEFAULT 0,
ADD `unused_hits` INT NOT NULL DEFAULT 0,
ADD `gear_hits` INT NOT NULL DEFAULT 0,
ADD `special_hits` INT NOT NULL DEFAULT 0,
ADD `rounds_overall` INT NOT NULL DEFAULT 0,
ADD `rounds_ct` INT NOT NULL DEFAULT 0,
ADD `rounds_t` INT NOT NULL DEFAULT 0,
ADD `bomb_planted` INT NOT NULL DEFAULT 0,
ADD `bomb_defused` INT NOT NULL DEFAULT 0,
ADD `hostage_rescued` INT NOT NULL DEFAULT 0,
ADD `hostage_killed` INT NOT NULL DEFAULT 0,
ADD `noscope_kill` INT NOT NULL DEFAULT 0,
ADD `penetrated_kill` INT NOT NULL DEFAULT 0,
ADD `thrusmoke_kill` INT NOT NULL DEFAULT 0,
ADD `flashed_kill` INT NOT NULL DEFAULT 0,
ADD `dominated_kill` INT NOT NULL DEFAULT 0,
ADD `revenge_kill` INT NOT NULL DEFAULT 0,
ADD `assist_flash` INT NOT NULL DEFAULT 0;

Full Changelog: v4.0.4h...v4.1.0