diff --git a/README.md b/README.md index 7c7b842..7a11c3b 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Modules are located [here](/lua/bin/) and courses database functionality is [her # (Prefered) Installation (Automatic | Windows only) Run the command below in Powershell. > [!NOTE] -> (Win + R > `powershell` > command in question) +> Win + R > `powershell` > command in question ```powershell iex (iwr "beatrun.ru/install.ps1" -UseBasicParsing) ``` @@ -23,12 +23,15 @@ iex (iwr "beatrun.ru/install.ps1" -UseBasicParsing) 2. **Delete the `beatrun` folder in *your_game_folder/garrysmod/addons* if you have one.** 3. Extract the `beatrun` folder to *your_game_folder/garrysmod/addons*. 4. Extract the `lua` folder to *your_game_folder/garrysmod*. - * `lua` folder contains modules for Discord Rich Presense and Steam Presence. They are optional. You can find their source code in the [credits](#credits) section

+ * `lua` folder contains modules for Discord Rich Presense and Steam Presence. They are optional. You can find their source code in the [credits](#credits) section.

## Animations Please refer to this [README](/beatrun/README.md). ## Changes and fixes done by the community +> [!IMPORTANT] +> There are many undocumented changes and fixes in this version, you better look at the commits if you want to see something specific + * Jonny_Bro is hosting [custom online courses database](https://courses.beatrun.ru), which is also free and [open source](https://github.com/relaxtakenotes/beatrun-courses-server/) 🤯! * Implemented a new gamemode - **Deathmatch** (it's way more fun than Data Theft I promise). * Added an in-game config menu - You can find it in the tool menu, in the *Beatrun* Category.\ @@ -41,7 +44,7 @@ For now Russian and English are supported. * Done various tweaks to the Time Trials Menu (F4). * Added an arrow that shows the next checkpoint. * Added a ConVar to allow Overdrive usage on the server - `Beatrun_AllowOverdriveInMultiplayer`. -* Added a ConVar to toggle between old and new (like in ME) Kick-Glitch - `Beatrun_OldKickGlitch`. +* Added a ConVar to toggle between old and new Kick-Glitch - `Beatrun_OldKickGlitch`. * Added some ConVars to change HUD colors - `Beatrun_HUDTextColor`, `Beatrun_HUDCornerColor`, `Beatrun_HUDFloatingXPColor`. * Added a ConVar to allow players to spawn props without admin rights - `Beatrun_AllowPropSpawn`. * Added a ConVar to disable grapple ability - `Beatrun_DisableGrapple`. @@ -67,7 +70,7 @@ For now Russian and English are supported. - [ ] Gamemodes menu. (idk how to properly implement this for know). # Related -* [beatrun-anims](https://github.com/JonnyBro/beatrun-anims) - Decompiled and reworked Beatrun animations. +* [Beatrun Reanimated Project](https://github.com/JonnyBro/beatrun-anims). # Credits * [All contributors](https://github.com/JonnyBro/beatrun/graphs/contributors) - <3. diff --git a/beatrun/gamemodes/beatrun/content/resource/localization/en/beatrun.properties b/beatrun/gamemodes/beatrun/content/resource/localization/en/beatrun.properties index d7c4d27..e744804 100644 --- a/beatrun/gamemodes/beatrun/content/resource/localization/en/beatrun.properties +++ b/beatrun/gamemodes/beatrun/content/resource/localization/en/beatrun.properties @@ -112,3 +112,18 @@ beatrun.toolsmenu.hud.hiddendesc=0 - Shown\n1 - Gamemode only\n2 - Hidden beatrun.toolsmenu.hud.textcolor=HUD Text Color beatrun.toolsmenu.hud.cornercolor=HUD Corner Color beatrun.toolsmenu.hud.floatxpcolor=HUD Floating XP Color + +# Tools Menu Viewbob Section +beatrun.toolsmenu.viewbob.name=Viewbob +beatrun.toolsmenu.viewbob.desc=Viewbob Settings + +beatrun.toolsmenu.viewbob.stabilization=Viewbob Stabilization +beatrun.toolsmenu.viewbob.stabilizationdesc=Turn on to reduce motion sickness by making viewbobbing keep the player's look position centered +beatrun.toolsmenu.viewbob.intensity=Viewbob Intensity + +# Tools Menu Gameplay Section +beatrun.toolsmenu.gameplay.name=Gameplay +beatrun.toolsmenu.gameplay.desc=Gameplay Settings + +beatrun.toolsmenu.gameplay.quickturnground=Quickturn Ground +beatrun.toolsmenu.gameplay.quickturngrounddesc=Enables quickturning with secondary attack while on the ground \ No newline at end of file diff --git a/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua b/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua index 0e8b5cc..39ce35b 100644 --- a/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua +++ b/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua @@ -215,21 +215,22 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function() panel:AddItem(HudFXPColor) end) - spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_viewbob", "Viewbob", "", "", function(panel) + spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_viewbob", "#beatrun.toolsmenu.viewbob.name", "", "", function(panel) panel:ClearControls() - panel:SetName("Viewbob Settings") + panel:SetName("#beatrun.toolsmenu.viewbob.desc") - panel:CheckBox("Viewbob Stabilization", "Beatrun_ViewbobStabilized") - panel:ControlHelp("Turn on to reduce motion sickness by making viewbobbing keep the player's look position centered") - panel:NumSlider("Viewbob Intensity", "Beatrun_ViewbobIntensity", -100, 100, 0) + panel:CheckBox("#beatrun.toolsmenu.viewbob.stabilization", "Beatrun_ViewbobStabilized") + panel:ControlHelp("#beatrun.toolsmenu.viewbob.stabilizationdesc") + + panel:NumSlider("#beatrun.toolsmenu.viewbob.intensity", "Beatrun_ViewbobIntensity", -100, 100, 0) end) - spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_gameplay", "Gameplay", "", "", function(panel) + spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_gameplay", "#beatrun.toolsmenu.gameplay.name", "", "", function(panel) panel:ClearControls() - panel:SetName("Gameplay Settings") + panel:SetName("#beatrun.toolsmenu.gameplay.desc") - panel:CheckBox("Quickturn", "Beatrun_QuickturnGround") - panel:ControlHelp("Enables quickturning with secondary attack while on the ground") + panel:CheckBox("#beatrun.toolsmenu.gameplay.quickturnground", "Beatrun_QuickturnGround") + panel:ControlHelp("#beatrun.toolsmenu.gameplay.quickturngrounddesc") panel:CheckBox("Quickturn Hands Only", "Beatrun_QuickturnHandsOnly") panel:ControlHelp("Enables quickturning with \"Runner Hands\" only")