├── .gitignore ├── LICENSE ├── README.md ├── SharpTimer-main.sln ├── SharpTimer.csproj ├── cfg └── SharpTimer │ ├── MapData │ ├── MapExecs │ │ ├── bhop_.cfg │ │ ├── kz_.cfg │ │ ├── kz_example.cfg │ │ ├── surf_.cfg │ │ └── vnl_.cfg │ ├── bhop_1derland.json │ ├── bhop_aso_wood.json │ ├── bhop_beginnerfriendly.json │ ├── bhop_blankbody.json │ ├── bhop_blue_abstract.json │ ├── bhop_blue_shade.json │ ├── bhop_bobop.json │ ├── bhop_cherryblossom.json │ ├── bhop_cobblestone.json │ ├── bhop_coma.json │ ├── bhop_dreamworld.json │ ├── bhop_eazy.json │ ├── bhop_emevaelx3.json │ ├── bhop_fur.json │ ├── bhop_hilton.json │ ├── bhop_icecapades.json │ ├── bhop_inch.json │ ├── bhop_internetclub.json │ ├── bhop_messup.json │ ├── bhop_minimal.json │ ├── bhop_nira.json │ ├── bhop_ragnarok.json │ ├── bhop_whiteshit.json │ ├── bhop_zentic.json │ ├── bhop_zunron.json │ ├── de_nuke.json │ ├── surf_boomer.json │ ├── surf_kitsune.json │ └── surf_nyx.json │ ├── PlayerRecords │ └── placeholder │ ├── PlayerStageData │ └── placeholder │ ├── admessages.txt │ ├── config.cfg │ ├── custom_exec.cfg │ ├── discordConfig.json │ ├── mysqlConfig.json │ ├── postgresConfig.json │ ├── ranks.json │ └── stgamedata.json ├── lang ├── en.json ├── fi.json ├── fr.json ├── lv.json ├── nb.json ├── pl.json ├── sk.json └── sv.json ├── remote_data ├── bhop_.json ├── kz_.json ├── rank_icons │ ├── bronze.png │ ├── dia1.png │ ├── dia2.png │ ├── dia3.png │ ├── god.gif │ ├── gold1.png │ ├── gold2.png │ ├── gold3.png │ ├── legend1.png │ ├── legend2.png │ ├── legend3.png │ ├── master1.png │ ├── master2.png │ ├── master3.png │ ├── plat1.png │ ├── plat2.png │ ├── plat3.png │ ├── royal1.png │ ├── royal2.png │ ├── royal3.png │ ├── silver1.png │ ├── silver2.png │ ├── silver3.png │ └── unranked.png ├── surf_.json └── tester_bling.json └── src ├── Commands ├── ChatCommands.cs └── ConfigConvars.cs ├── DB ├── DatabaseUtils.cs ├── DbCommandExtensions.cs ├── Migration.cs └── Migrations │ ├── MySQL │ ├── 001_AddStyleConstraints.sql │ └── 002_AddPlayerStageTimesTable.sql │ ├── PostgreSQL │ ├── 001_AddStyleConstraints.sql │ └── 002_AddPlayerStageTimesTable.sql │ └── SQLite │ ├── 001_AddStyleConstraints.sql │ └── 002_AddPlayerStageTimesTable.sql ├── Extensions ├── CBaseUserCmd.cs ├── CUserCmd.cs └── RunCommand.cs ├── Features ├── DiscordWebhook.cs ├── FakeZoneTool.cs ├── JumpStats.cs ├── ReplayUtils.cs └── Styles.cs ├── Hooks ├── Damage.cs └── TriggerHooks.cs ├── Player ├── PlayerChecks.cs ├── PlayerEvents.cs ├── PlayerOnTick.cs ├── PlayerTimers.cs └── PlayerUtils.cs ├── Plugin ├── Classes.cs ├── Globals.cs └── Utils.cs ├── SharpTimer.cs └── Triggers └── TriggerUtils.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/README.md -------------------------------------------------------------------------------- /SharpTimer-main.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/SharpTimer-main.sln -------------------------------------------------------------------------------- /SharpTimer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/SharpTimer.csproj -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/MapExecs/bhop_.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/MapExecs/bhop_.cfg -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/MapExecs/kz_.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/MapExecs/kz_.cfg -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/MapExecs/kz_example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/MapExecs/kz_example.cfg -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/MapExecs/surf_.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/MapExecs/surf_.cfg -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/MapExecs/vnl_.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/MapExecs/vnl_.cfg -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_1derland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_1derland.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_aso_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_aso_wood.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_beginnerfriendly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_beginnerfriendly.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_blankbody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_blankbody.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_blue_abstract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_blue_abstract.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_blue_shade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_blue_shade.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_bobop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_bobop.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_cherryblossom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_cherryblossom.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_cobblestone.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_coma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_coma.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_dreamworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_dreamworld.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_eazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_eazy.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_emevaelx3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_emevaelx3.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_fur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_fur.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_hilton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_hilton.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_icecapades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_icecapades.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_inch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_inch.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_internetclub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_internetclub.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_messup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_messup.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_minimal.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_nira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_nira.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_ragnarok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_ragnarok.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_whiteshit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_whiteshit.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_zentic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_zentic.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/bhop_zunron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/bhop_zunron.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/de_nuke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/de_nuke.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/surf_boomer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/surf_boomer.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/surf_kitsune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/MapData/surf_kitsune.json -------------------------------------------------------------------------------- /cfg/SharpTimer/MapData/surf_nyx.json: -------------------------------------------------------------------------------- 1 | { 2 | "OverrideMaxSpeedLimit": "b1_start" 3 | } -------------------------------------------------------------------------------- /cfg/SharpTimer/PlayerRecords/placeholder: -------------------------------------------------------------------------------- 1 | buh -------------------------------------------------------------------------------- /cfg/SharpTimer/PlayerStageData/placeholder: -------------------------------------------------------------------------------- 1 | buh -------------------------------------------------------------------------------- /cfg/SharpTimer/admessages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/admessages.txt -------------------------------------------------------------------------------- /cfg/SharpTimer/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/config.cfg -------------------------------------------------------------------------------- /cfg/SharpTimer/custom_exec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/custom_exec.cfg -------------------------------------------------------------------------------- /cfg/SharpTimer/discordConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/discordConfig.json -------------------------------------------------------------------------------- /cfg/SharpTimer/mysqlConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/mysqlConfig.json -------------------------------------------------------------------------------- /cfg/SharpTimer/postgresConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/postgresConfig.json -------------------------------------------------------------------------------- /cfg/SharpTimer/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/ranks.json -------------------------------------------------------------------------------- /cfg/SharpTimer/stgamedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/cfg/SharpTimer/stgamedata.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/fi.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/lv.json -------------------------------------------------------------------------------- /lang/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/nb.json -------------------------------------------------------------------------------- /lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/pl.json -------------------------------------------------------------------------------- /lang/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/sk.json -------------------------------------------------------------------------------- /lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/lang/sv.json -------------------------------------------------------------------------------- /remote_data/bhop_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/bhop_.json -------------------------------------------------------------------------------- /remote_data/kz_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/kz_.json -------------------------------------------------------------------------------- /remote_data/rank_icons/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/bronze.png -------------------------------------------------------------------------------- /remote_data/rank_icons/dia1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/dia1.png -------------------------------------------------------------------------------- /remote_data/rank_icons/dia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/dia2.png -------------------------------------------------------------------------------- /remote_data/rank_icons/dia3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/dia3.png -------------------------------------------------------------------------------- /remote_data/rank_icons/god.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/god.gif -------------------------------------------------------------------------------- /remote_data/rank_icons/gold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/gold1.png -------------------------------------------------------------------------------- /remote_data/rank_icons/gold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/gold2.png -------------------------------------------------------------------------------- /remote_data/rank_icons/gold3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/gold3.png -------------------------------------------------------------------------------- /remote_data/rank_icons/legend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/legend1.png -------------------------------------------------------------------------------- /remote_data/rank_icons/legend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/legend2.png -------------------------------------------------------------------------------- /remote_data/rank_icons/legend3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/legend3.png -------------------------------------------------------------------------------- /remote_data/rank_icons/master1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/master1.png -------------------------------------------------------------------------------- /remote_data/rank_icons/master2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/master2.png -------------------------------------------------------------------------------- /remote_data/rank_icons/master3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/master3.png -------------------------------------------------------------------------------- /remote_data/rank_icons/plat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/plat1.png -------------------------------------------------------------------------------- /remote_data/rank_icons/plat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/plat2.png -------------------------------------------------------------------------------- /remote_data/rank_icons/plat3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/plat3.png -------------------------------------------------------------------------------- /remote_data/rank_icons/royal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/royal1.png -------------------------------------------------------------------------------- /remote_data/rank_icons/royal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/royal2.png -------------------------------------------------------------------------------- /remote_data/rank_icons/royal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/royal3.png -------------------------------------------------------------------------------- /remote_data/rank_icons/silver1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/silver1.png -------------------------------------------------------------------------------- /remote_data/rank_icons/silver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/silver2.png -------------------------------------------------------------------------------- /remote_data/rank_icons/silver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/silver3.png -------------------------------------------------------------------------------- /remote_data/rank_icons/unranked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/rank_icons/unranked.png -------------------------------------------------------------------------------- /remote_data/surf_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/surf_.json -------------------------------------------------------------------------------- /remote_data/tester_bling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/remote_data/tester_bling.json -------------------------------------------------------------------------------- /src/Commands/ChatCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Commands/ChatCommands.cs -------------------------------------------------------------------------------- /src/Commands/ConfigConvars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Commands/ConfigConvars.cs -------------------------------------------------------------------------------- /src/DB/DatabaseUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/DB/DatabaseUtils.cs -------------------------------------------------------------------------------- /src/DB/DbCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/DB/DbCommandExtensions.cs -------------------------------------------------------------------------------- /src/DB/Migration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/DB/Migration.cs -------------------------------------------------------------------------------- /src/DB/Migrations/MySQL/001_AddStyleConstraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/DB/Migrations/MySQL/001_AddStyleConstraints.sql -------------------------------------------------------------------------------- /src/DB/Migrations/MySQL/002_AddPlayerStageTimesTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/DB/Migrations/MySQL/002_AddPlayerStageTimesTable.sql -------------------------------------------------------------------------------- /src/DB/Migrations/PostgreSQL/001_AddStyleConstraints.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DB/Migrations/PostgreSQL/002_AddPlayerStageTimesTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/DB/Migrations/PostgreSQL/002_AddPlayerStageTimesTable.sql -------------------------------------------------------------------------------- /src/DB/Migrations/SQLite/001_AddStyleConstraints.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DB/Migrations/SQLite/002_AddPlayerStageTimesTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/DB/Migrations/SQLite/002_AddPlayerStageTimesTable.sql -------------------------------------------------------------------------------- /src/Extensions/CBaseUserCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Extensions/CBaseUserCmd.cs -------------------------------------------------------------------------------- /src/Extensions/CUserCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Extensions/CUserCmd.cs -------------------------------------------------------------------------------- /src/Extensions/RunCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Extensions/RunCommand.cs -------------------------------------------------------------------------------- /src/Features/DiscordWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Features/DiscordWebhook.cs -------------------------------------------------------------------------------- /src/Features/FakeZoneTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Features/FakeZoneTool.cs -------------------------------------------------------------------------------- /src/Features/JumpStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Features/JumpStats.cs -------------------------------------------------------------------------------- /src/Features/ReplayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Features/ReplayUtils.cs -------------------------------------------------------------------------------- /src/Features/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Features/Styles.cs -------------------------------------------------------------------------------- /src/Hooks/Damage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Hooks/Damage.cs -------------------------------------------------------------------------------- /src/Hooks/TriggerHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Hooks/TriggerHooks.cs -------------------------------------------------------------------------------- /src/Player/PlayerChecks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Player/PlayerChecks.cs -------------------------------------------------------------------------------- /src/Player/PlayerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Player/PlayerEvents.cs -------------------------------------------------------------------------------- /src/Player/PlayerOnTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Player/PlayerOnTick.cs -------------------------------------------------------------------------------- /src/Player/PlayerTimers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Player/PlayerTimers.cs -------------------------------------------------------------------------------- /src/Player/PlayerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Player/PlayerUtils.cs -------------------------------------------------------------------------------- /src/Plugin/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Plugin/Classes.cs -------------------------------------------------------------------------------- /src/Plugin/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Plugin/Globals.cs -------------------------------------------------------------------------------- /src/Plugin/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Plugin/Utils.cs -------------------------------------------------------------------------------- /src/SharpTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/SharpTimer.cs -------------------------------------------------------------------------------- /src/Triggers/TriggerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letaryat/poor-sharptimer/HEAD/src/Triggers/TriggerUtils.cs --------------------------------------------------------------------------------