From b6530ece4f6002f667ab94422865ecc30443ea08 Mon Sep 17 00:00:00 2001 From: Djonathan de Souza Date: Fri, 21 Jun 2024 14:27:08 -0300 Subject: [PATCH] chore: first commit --- .gitignore | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 20 ++++++++++ main.sp | 24 ++++++++++++ 3 files changed, 152 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 main.sp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83da937 --- /dev/null +++ b/.gitignore @@ -0,0 +1,108 @@ +# Created by https://www.toptal.com/developers/gitignore/api/sourcepawn,macos,windows,linux,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=sourcepawn,macos,windows,linux,visualstudiocode + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +### SourcePawn ### +# SourcePawn +*.dll # extensions +*.so # extensions +*.smx # plugins + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# Custom +.compiler/ +output/ +.vscode/ + +# End of https://www.toptal.com/developers/gitignore/api/sourcepawn,macos,windows,linux,visualstudiocode \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..5115a51 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Kaiden's Mix Mod +This will definitely be another mix mod. + +Core functionality: +[] .ready and .unready commands +[] lock players on 10 ready +[] knife round +[] winner choose side +[] start game +[] .cancel and .rr for admins +[] report team money on round start +[] report damage of last round +[] .pause for technical timeout +[] half-time, swap teams, keep score + +Extra funcionality: +[] Make extra "picking" mode +[] Choose captains randomly +[] "Want to play with or agaisnt your friend" system +[] Detect if it's clan fight diff --git a/main.sp b/main.sp new file mode 100644 index 0000000..0cf05cf --- /dev/null +++ b/main.sp @@ -0,0 +1,24 @@ +#include + +public Plugin:myPlugin; + +public void OnPluginStart() +{ + PrintToServer("Hello World"); +} + +public void OnPluginEnd() +{ +} + +public void OnAllLoaded() +{ +} + +public void OnMapStart() +{ +} + +public void OnMapEnd() +{ +} \ No newline at end of file