Skip to content

Commit 35262ce

Browse files
committed
Update README.md
1 parent 8f23bf7 commit 35262ce

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
# Timer
2-
Core MetaMod addon for CS2 Surf Servers. This project is aimed to be fully open-source with the goal of uniting all of CS2 surf towards building the game mode.
2+
Core plugin for CS2 Surf Servers. This project is aimed to be fully open-source with the goal of uniting all of CS2 surf towards building the game mode.
33

4-
# Roadmap
5-
*Note: This is not definitive/complete and simply serves as a reference for what we should try to achieve*
4+
# Goals
5+
*Note: This is not definitive/complete and simply serves as a reference for what we should try to achieve. Subject to change.*
66

7-
- [ ] Command Listener
87
- [ ] Data storage
9-
- [ ] MySQL database schema (design diagram TBA)
8+
- [ ] MySQL database schema ([W.I.P Design Diagram](https://dbdiagram.io/d/CS2Surf-Timer-DB-Schema-6560b76b3be1495787ace4d2))
9+
- [ ] Plugin auto-create tables for easier install?
1010
- [ ] Zoning
1111
- [ ] Hook zones from map triggers
1212
- [ ] Support for stages/checkpoints
1313
- [ ] Support for bonuses
14-
- [ ] Support for custom zoning (save to/load from DB? Draw in-game similar to CSGO Surftimer?)
14+
- [ ] Load zone information for official maps from CS2 Surf upstream? (Probably make this optional)
15+
- [ ] Support for custom zoning (Draw in-game similar to CSGO Surftimer?)
1516
- [ ] Timing
1617
- [ ] Implement timer HUD (similar to WST)
1718
- [ ] Save/load times from the database
18-
- [ ] Announce records to Discord
1919
- [ ] Practice Mode
20+
- [ ] Announce records to Discord
2021
- [ ] Player Data
2122
- [ ] Profiles
2223
- [ ] Points/Skill Groups
24+
- [ ] Replays
2325
- [ ] Angle style implementation
24-
- [ ] Record Replays
2526
- [ ] Paint

src/SurfTimer.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<Reference Include="CounterStrikeSharp.API">
11+
<HintPath>INSERT_CSSHARP_DLL_PATH_HERE</HintPath>
12+
</Reference>
13+
</ItemGroup>
14+
15+
</Project>

0 commit comments

Comments
 (0)