Skip to content

Releases: Sharpyku/Sharpyku-SSJ

SSJ Plugin v2.1.1

09 Apr 23:21

Choose a tag to compare

Bugfix: Fixed config path — config.json was being created in the wrong directory (�ddons/configs/ instead of �ddons/counterstrikesharp/configs/). If you had the config in the wrong place, delete it and restart to auto-generate in the correct location.

SSJ Plugin v2.1.0

07 Apr 11:48

Choose a tag to compare

v2.1.0 — Unified Config System

What's New

  • Single config.json — All settings are now in one auto-generated file at configs/plugins/SSJ-Plugin/config.json
  • Customizable chat tag — Change ChatTag to anything ([BHOP], [EG], etc.) and pick any color via ChatTagColor
  • Default player settings — Configure DefaultEnabled, DefaultRepeat, DefaultMaxJumps for new players
  • Startzone toggle — Set StartzoneOnly to false to track all jumps anywhere on the map
  • Tuning options — Adjust GroundSettleTicksAir, ChainResetGroundTicks, MinAirTicksToReport, PrintThrottleTicks
  • Database toggle — Set Database.Enabled to true/false, custom table name via Database.TableName

Config Example

{
  "ChatTag": "[SSJ]",
  "ChatTagColor": "DarkBlue",
  "StartzoneOnly": true,
  "DefaultMaxJumps": 6,
  "DefaultEnabled": true,
  "DefaultRepeat": true,
  "Database": {
    "Enabled": false,
    "Host": "localhost",
    "Port": 3306,
    "Database": "BhopServer",
    "User": "root",
    "Password": "",
    "TableName": "ssj_settings"
  }
}

Installation

  1. Extract SSJ-Plugin folder to csgo/addons/counterstrikesharp/plugins/
  2. Start server — config.json is auto-created at configs/plugins/SSJ-Plugin/
  3. Edit the config, restart server

SSJ Plugin v2.0.0

07 Apr 11:34

Choose a tag to compare

SSJ Plugin v2.0.0 - Initial Release

Features

  • Per-jump strafe stats in chat (Pre, Speed, Gain%, Sync%, Strafes)
  • Velocity cross/dot product sync algorithm (FL-StrafeMaster inspired)
  • Autobhop re-jump detection
  • SharpTimer startzone integration (only tracks after leaving start)
  • Per-player settings via T3Menu (!ssj command)
  • MySQL/MariaDB persistence for player settings

Installation

  1. Extract the \SSJ-Plugin\ folder to \csgo/addons/counterstrikesharp/plugins/\
  2. Restart server - a \database.json\ config will be auto-created
  3. Edit \csgo/addons/counterstrikesharp/configs/plugins/SSJ-Plugin/database.json\ with your DB credentials

Requirements

  • CounterStrikeSharp v1.0.364+
  • T3Menu-API (for settings menu)
  • SharpTimer (for startzone detection, optional)
  • MySQL/MariaDB (for saving settings, optional)