mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-05 18:36:33 +05:00
part 1
This commit is contained in:
parent
d8ac322ee3
commit
f5b81b7170
21 changed files with 582 additions and 154 deletions
23
BeatrunAnimInstaller_Source/README.md
Normal file
23
BeatrunAnimInstaller_Source/README.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# ENGLISH
|
||||
|
||||
# Animations Installer Source Code
|
||||
Here you can find source code of the animations installer.\
|
||||
I don't know why you will ever need that but we put it here so you can be sure we don't supply malware with our fork.
|
||||
|
||||
## How To Use
|
||||
Please refer to this [README](../beatrun/README.md).
|
||||
|
||||
## Credits
|
||||
* [YuRaNnNzZZ](https://github.com/YuRaNnNzZZ) - Creator of this installer.
|
||||
|
||||
# RUSSIAN
|
||||
|
||||
# Исходный код установщика анимаций
|
||||
Здесь находятся исходники нашего установщика анимаций.\
|
||||
Я не знаю зачем это вам, но мы оставили их здесь чтобы вы могли убедиться что мы не распространяем вирусы в нашем форке.
|
||||
|
||||
## Как использовать
|
||||
Прочитайте этот файл [README](../beatrun/README.md).
|
||||
|
||||
## Благодарность
|
||||
* [YuRaNnNzZZ](https://github.com/YuRaNnNzZZ) - Создатель установщика.
|
46
README.md
46
README.md
|
@ -1,11 +1,10 @@
|
|||
# Beatrun | Community version
|
||||
|
||||
# Beatrun | Community edition
|
||||
Infamous parkour addon for Garry's Mod, fully open sourced and maintained by the community.
|
||||
|
||||
This version does not include malicious modules, code or networking. What it does contain is:
|
||||
* Lua modules for Discord Rich Presence
|
||||
* Lua modules for Steam Presence
|
||||
* Network connectivity for courses (activates only when you load or upload courses, and by default `courses.beatrun.ru` is used)
|
||||
* Lua modules for Discord Rich Presence.
|
||||
* Lua modules for Steam Presence.
|
||||
* Network connectivity for courses (activates only when you load or upload courses, and by default `courses.beatrun.ru` is used).
|
||||
|
||||
**All of this is optional and you may remove all of it.**\
|
||||
Modules are located [here](/lua/bin/) and courses database functionality is [here](/beatrun/gamemodes/beatrun/gamemode/cl/CoursesDatabase.lua).<br><br>
|
||||
|
@ -13,6 +12,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)
|
||||
```powershell
|
||||
iex (iwr "beatrun.ru/install.ps1" -UseBasicParsing)
|
||||
|
@ -20,26 +20,24 @@ iex (iwr "beatrun.ru/install.ps1" -UseBasicParsing)
|
|||
|
||||
## Installation (Manual)
|
||||
1. Download this repository [here](https://github.com/JonnyBro/beatrun/archive/refs/heads/master.zip).
|
||||
2. Delete the `beatrun` folder in *addons* if you have one!
|
||||
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](https://github.com/JonnyBro/beatrun?tab=readme-ov-file#credits-3) section<br><br>
|
||||
* `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<br><br>
|
||||
|
||||
## Animations
|
||||
You can use "**BeatrunAnimInstaller**" (located in `beatrun` [here](https://github.com/JonnyBro/beatrun/tree/master/beatrun)) for custom animations. Currently there's:
|
||||
* Beatrun Reanimated project
|
||||
* Original but fixed animations<br><br>
|
||||
|
||||
Start the executable and press a key on your keyboard with the number of the animation you want to install (if nothing's changed, close the game and run the program as admin).<br>
|
||||
Installer's source can be found [here](/BeatrunAnimInstaller).
|
||||
Please refer to this [README](/beatrun/README.md).
|
||||
|
||||
## Changes and fixes done by the community
|
||||
* 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/) 🤯!
|
||||
* Added a new gamemode - *Deathmatch*, it's like Data Theft, but you collect kills not cubes! (it's way more fun I promise)
|
||||
* Added an in-game config menu - You can find it in the tool menu, in the *Beatrun* Category!\
|
||||
* 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.\
|
||||
**All** of the Beatrun settings can be changed in the configuration menu.
|
||||
* Settings on the map selection screen.
|
||||
* Localization support.\
|
||||
For now Russian and English are supported.
|
||||
* Added the ability to get off of ladders.
|
||||
* Allowed jumping while slowwalking (🤷).
|
||||
* Allowed jumping while walking (🤷).
|
||||
* 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`.
|
||||
|
@ -48,31 +46,31 @@ Installer's source can be found [here](/BeatrunAnimInstaller).
|
|||
* Added a ConVar to allow players to spawn props without admin rights - `Beatrun_AllowPropSpawn`.
|
||||
* Added a ConVar to disable grapple ability - `Beatrun_DisableGrapple`.
|
||||
* Added a ConVar to allow QuickTurn with any weapon or only with *Runner Hands* - `Beatrun_QuickturnHandsOnly`.
|
||||
* Implemented Discord Rich Presence using open source tools (See [credits](https://github.com/JonnyBro/beatrun?tab=readme-ov-file#credits-3)).
|
||||
* Added small camera punch when diving.
|
||||
* Added the ability to remove ziplines that created with *Zipline Gun* - `RMB`.
|
||||
* Fixed some playermodels show up as ERROR.
|
||||
* Implemented Discord Rich Presence using open source module (See [credits](#credits)).
|
||||
* SteamID in the right corner is no longer present.
|
||||
|
||||
## Notable changes and fixes done by the community
|
||||
* Added Proper Kick Glitch just like in [original ME](https://www.youtube.com/watch?v=zK5y3NBUStc). (cry about prediction errors l0l)
|
||||
* Fixed leaderboard sorting in gamemodes.
|
||||
* Fixed grapple usage in courses and gamemodes.
|
||||
* Fixed a crash in DataTheft when touching data bank.
|
||||
* Fixed an error on course load.
|
||||
* Fixed a crash in Data Theft when touching data bank.
|
||||
* Fixed an error on course loading.
|
||||
* Fixed collisions issues. (PvP damage not going through in gamemodes other than DataTheft)
|
||||
* Added Proper Kick Glitch ([Like in original ME](https://www.youtube.com/watch?v=zK5y3NBUStc)). (cry about prediction errors l0l)
|
||||
* Tweaked safety roll, now you can roll under things.
|
||||
* Tweaked some grapple related stuff. Now it moves with the entity it was attached to and other players can see the rope.
|
||||
* Made it possible to dive to your death =).
|
||||
* Added some grapple related stuff. Now it moves with the entity it was attached to and other players can see the rope.
|
||||
|
||||
## TODO
|
||||
- [ ] Gamemodes menu. (idk how to properly implement this for know)
|
||||
- [ ] Gamemodes menu. (idk how to properly implement this for know).
|
||||
|
||||
# Related
|
||||
* [beatrun-anims](https://github.com/JonnyBro/beatrun-anims) - Decompiled and reworked Beatrun animations.
|
||||
|
||||
# Credits <3
|
||||
* All contributors.
|
||||
# Credits
|
||||
* [All contributors](https://github.com/JonnyBro/beatrun/graphs/contributors) - <3.
|
||||
* [EarthyKiller127](https://www.youtube.com/channel/UCiFqPwGo4x0J65xafIaECDQ) - He made that piece of shit.
|
||||
* [relaxtakenotes](https://github.com/relaxtakenotes) - Made all of this possible.
|
||||
* [MTB](https://www.youtube.com/@MTB396) - Beatrun Reanimated project.
|
||||
|
|
29
beatrun/README.md
Normal file
29
beatrun/README.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# ENGLISH
|
||||
|
||||
# Animations Installer
|
||||
You can use **BeatrunAnimInstaller** (located literally here) to change animations. Currently we have:
|
||||
1. `Beatrun Reanimated Project` animations.
|
||||
2. Original but fixed animations.
|
||||
|
||||
## How To Use
|
||||
1. Start the executable.
|
||||
2. Press a key on your keyboard with the number of the animation you want to install.\
|
||||
If nothing is changed, close the game and/or try run the program with admin priveleges.
|
||||
|
||||
## Source Code
|
||||
Please refer to this [README](../BeatrunAnimInstaller_Source/README.md).
|
||||
|
||||
# RUSSIAN
|
||||
|
||||
# Установщик анимаций
|
||||
Используйте **BeatrunAnimInstaller** (который расположен прямо тут) чтобы менять анимации. На данный момент у нас имеются:
|
||||
1. Анимации из `Beatrun Reanimated Project`.
|
||||
2. Оригинальные анимации с правками и фиксами.
|
||||
|
||||
## Как использовать
|
||||
1. Запустите исполняемый файл.
|
||||
2. Нажмите цифру желаемых анимаций на клавиатуре.\
|
||||
Если ничего не изменилось, закройте игру и/или запустите файл от имени администратора.
|
||||
|
||||
## Исходный код
|
||||
Прочитайте этот файл [README](../BeatrunAnimInstaller_Source/README.md).
|
|
@ -3,5 +3,270 @@
|
|||
"base" "base"
|
||||
"title" "Beatrun"
|
||||
"maps" "^br_"
|
||||
"category" "other"
|
||||
"menusystem" "1"
|
||||
|
||||
"settings"
|
||||
{
|
||||
1
|
||||
{
|
||||
"name" "physgun_limited"
|
||||
"text" "limit_physgun"
|
||||
"help" "If enabled, the Physics Gun will not be able to pick up certain map entities"
|
||||
"type" "CheckBox"
|
||||
"default" "0"
|
||||
}
|
||||
|
||||
2
|
||||
{
|
||||
"name" "sbox_weapons"
|
||||
"text" "enable_weapons"
|
||||
"help" "If enabled, each player will receive default Half-Life 2 weapons on each spawn"
|
||||
"type" "CheckBox"
|
||||
"default" "1"
|
||||
"singleplayer" "1"
|
||||
}
|
||||
|
||||
3
|
||||
{
|
||||
"name" "sbox_godmode"
|
||||
"text" "allow_god_mode"
|
||||
"help" "If enabled, all players will be invincible"
|
||||
"type" "CheckBox"
|
||||
"default" "0"
|
||||
"singleplayer" "1"
|
||||
}
|
||||
|
||||
4
|
||||
{
|
||||
"name" "sbox_playershurtplayers"
|
||||
"text" "players_damage_players"
|
||||
"help" "If enabled, players will be able to hurt each other"
|
||||
"type" "CheckBox"
|
||||
"default" "1"
|
||||
}
|
||||
|
||||
5
|
||||
{
|
||||
"name" "sbox_maxprops"
|
||||
"text" "max_props"
|
||||
"help" "Maximum props a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "200"
|
||||
}
|
||||
|
||||
6
|
||||
{
|
||||
"name" "sbox_maxragdolls"
|
||||
"text" "max_ragdolls"
|
||||
"help" "Maximum ragdolls a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "10"
|
||||
}
|
||||
|
||||
7
|
||||
{
|
||||
"name" "sbox_maxvehicles"
|
||||
"text" "max_vehicles"
|
||||
"help" "Maximum vehicles a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "4"
|
||||
}
|
||||
|
||||
8
|
||||
{
|
||||
"name" "sbox_maxeffects"
|
||||
"text" "max_effects"
|
||||
"help" "Maximum effect props a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "200"
|
||||
}
|
||||
|
||||
9
|
||||
{
|
||||
"name" "sbox_maxballoons"
|
||||
"text" "max_balloons"
|
||||
"help" "Maximum balloons a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "100"
|
||||
}
|
||||
|
||||
10
|
||||
{
|
||||
"name" "sbox_maxcameras"
|
||||
"text" "max_cameras"
|
||||
"help" "Maximum cameras a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "10"
|
||||
}
|
||||
|
||||
11
|
||||
{
|
||||
"name" "sbox_maxnpcs"
|
||||
"text" "max_npcs"
|
||||
"help" "Maximum NPCs a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "10"
|
||||
}
|
||||
|
||||
12
|
||||
{
|
||||
"name" "sbox_maxsents"
|
||||
"text" "max_entities"
|
||||
"help" "Maximum entities a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "100"
|
||||
}
|
||||
|
||||
13
|
||||
{
|
||||
"name" "sbox_maxdynamite"
|
||||
"text" "max_dynamite"
|
||||
"help" "Maximum dynamites a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "10"
|
||||
}
|
||||
|
||||
14
|
||||
{
|
||||
"name" "sbox_maxlamps"
|
||||
"text" "max_lamps"
|
||||
"help" "Maximum lamps a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "3"
|
||||
}
|
||||
|
||||
15
|
||||
{
|
||||
"name" "sbox_maxlights"
|
||||
"text" "max_lights"
|
||||
"help" "Maximum lights a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "5"
|
||||
}
|
||||
|
||||
16
|
||||
{
|
||||
"name" "sbox_maxwheels"
|
||||
"text" "max_wheels"
|
||||
"help" "Maximum wheels a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "50"
|
||||
}
|
||||
|
||||
17
|
||||
{
|
||||
"name" "sbox_maxthrusters"
|
||||
"text" "max_thrusters"
|
||||
"help" "Maximum thrusters a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "50"
|
||||
}
|
||||
|
||||
18
|
||||
{
|
||||
"name" "sbox_maxhoverballs"
|
||||
"text" "max_hoverballs"
|
||||
"help" "Maximum hoverballs a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "50"
|
||||
}
|
||||
|
||||
19
|
||||
{
|
||||
"name" "sbox_maxbuttons"
|
||||
"text" "max_buttons"
|
||||
"help" "Maximum buttons a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "50"
|
||||
}
|
||||
|
||||
20
|
||||
{
|
||||
"name" "sbox_maxemitters"
|
||||
"text" "max_emitters"
|
||||
"help" "Maximum emitters a single player can create"
|
||||
"type" "Numeric"
|
||||
"default" "20"
|
||||
}
|
||||
|
||||
21
|
||||
{
|
||||
"name" "gmod_maxammo"
|
||||
"text" "gmod_maxammo"
|
||||
"help" "Forces amount of maximum ammo reserves for all weapons of each player. Values 0 and below mean use weapon's ammo type maximum ammo setting instead."
|
||||
"type" "Numeric"
|
||||
"default" "9999"
|
||||
"singleplayer" "1"
|
||||
"dontcreate" "1"
|
||||
}
|
||||
|
||||
22
|
||||
{
|
||||
"name" "gmod_suit"
|
||||
"text" "gmod_suit"
|
||||
"help" "Set to non zero to enable Half-Life 2 aux suit power stuff."
|
||||
"type" "CheckBox"
|
||||
"default" "0"
|
||||
"singleplayer" "1"
|
||||
"dontcreate" "1"
|
||||
}
|
||||
|
||||
23
|
||||
{
|
||||
"name" "sbox_noclip"
|
||||
"text" "allow_noclip"
|
||||
"help" "If enabled, players will be able to use noclip"
|
||||
"type" "CheckBox"
|
||||
"default" "1"
|
||||
}
|
||||
|
||||
24
|
||||
{
|
||||
"name" "mp_falldamage"
|
||||
"text" "realistic_falldamage"
|
||||
"help" "Enable realistic fall damage"
|
||||
"type" "CheckBox"
|
||||
"default" "0"
|
||||
"singleplayer" "1"
|
||||
"dontcreate" "1"
|
||||
}
|
||||
|
||||
25
|
||||
{
|
||||
"name" "sbox_bonemanip_npc"
|
||||
"text" "bone_manipulate_npcs"
|
||||
"help" "If enabled then manipulating NPC bones will be allowed"
|
||||
"type" "CheckBox"
|
||||
"default" "1"
|
||||
}
|
||||
|
||||
26
|
||||
{
|
||||
"name" "sbox_bonemanip_player"
|
||||
"text" "bone_manipulate_players"
|
||||
"help" "If enabled then manipulating Player bones will be allowed"
|
||||
"type" "CheckBox"
|
||||
"default" "0"
|
||||
}
|
||||
|
||||
27
|
||||
{
|
||||
"name" "sbox_bonemanip_misc"
|
||||
"text" "bone_manipulate_others"
|
||||
"help" "If enabled then manipulating the bones of other entities will be allowed"
|
||||
"type" "CheckBox"
|
||||
"default" "0"
|
||||
}
|
||||
|
||||
28
|
||||
{
|
||||
"name" "sbox_persist"
|
||||
"text" "persistent_mode_menu"
|
||||
"help" "If not empty, enables 'Make Persistent' option when you right click on props while holding C, allowing you to save them across sessions. Changing this convar will save existing persistent props, cleanup the whole map and load props from given file."
|
||||
"type" "Text"
|
||||
"default" ""
|
||||
"singleplayer" "1"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,114 @@
|
|||
# Misc
|
||||
beatrun.misc.ok=OK
|
||||
|
||||
# AddonWarning
|
||||
beatrun.addonwarning.warntext=NOTICE\nPlease disable the following addons before playing\nor submitting any issues to GitHub:
|
||||
beatrun.addonwarning.quitbutton=Quit to Main Menu
|
||||
beatrun.addonwarning.play=Play
|
||||
beatrun.addonwarning.conflictfound=CONFLICTING ADDONS FOUND
|
||||
|
||||
# BuildModeHUD
|
||||
beatrun.buildmodehud.info=Index: %s\nSelected: %s\nAngle: %s
|
||||
beatrun.buildmodehud.props=Menu / Props
|
||||
beatrun.buildmodehud.entities=Menu / Entities
|
||||
beatrun.buildmodehud.drag=Drag (G)
|
||||
beatrun.buildmodehud.copy=Copy (SHIFT+D)
|
||||
beatrun.buildmodehud.delete=Delete (DEL/BCKSPC)
|
||||
beatrun.buildmodehud.highlight=Highlight (T)
|
||||
beatrun.buildmodehud.select=Select
|
||||
beatrun.buildmodehud.zipline=Zipline (SHIFT = 2-Way)
|
||||
|
||||
# All ConVars
|
||||
beatrun.convars.hudxp=Show total XP near nickname
|
||||
beatrun.convars.hudsway=Display HUD swaying
|
||||
beatrun.convars.huddynamic=Hide HUD when moving
|
||||
beatrun.convars.hudhidden=Hides most of the XP HUD
|
||||
beatrun.convars.hudreticle=Display a reticle
|
||||
beatrun.convars.hudtextcolor=HUD Text Color\nDefault: 255 255 255 255
|
||||
beatrun.convars.hudcornercolor=HUD Left Corner Color\nDefault: 20 20 20 100
|
||||
beatrun.convars.hudfloatxpcolor=HUD Floating XP Color\nDefault: 255 255 255 255
|
||||
beatrun.convars.nametags=Toggles nametags above players
|
||||
beatrun.convars.apikey=API key
|
||||
beatrun.convars.domain=Domain of the courses database
|
||||
|
||||
# HUD
|
||||
beatrun.hud.course=Course: %s
|
||||
beatrun.hud.freeplay=Freeplay
|
||||
beatrun.hud.lvl=Lvl: %s
|
||||
beatrun.hud.infector=Infector
|
||||
|
||||
# Menu_Course
|
||||
beatrun.coursemenu.trials=Time Trials - %s
|
||||
beatrun.coursemenu.buildmode=Toggle Build Mode
|
||||
beatrun.coursemenu.freeplay=Return to Freeplay
|
||||
|
||||
# CoursesDatabase
|
||||
beatrun.coursesdatabase.cantuploadfreeplay=Can't upload in Freeplay
|
||||
beatrun.coursesdatabase.upload1=You're trying to upload a course with the name %s and on map %s.
|
||||
beatrun.coursesdatabase.upload2=Use Beatrun_Confirm to continue, or Beatrun_Cancel to cancel.
|
||||
beatrun.coursesdatabase.update1=You are trying to update a course with this code: %s, with a course on map %s and name %s.
|
||||
|
||||
# Tools Menu
|
||||
beatrun.toolsmenu.client=Client
|
||||
beatrun.toolsmenu.server=Server
|
||||
|
||||
# Tools Menu Courses Section
|
||||
beatrun.toolsmenu.courses.name=Courses
|
||||
beatrun.toolsmenu.courses.desc=Courses Settings
|
||||
|
||||
beatrun.toolsmenu.courses.faststart=Fast Start
|
||||
beatrun.toolsmenu.courses.faststartdesc=Faster countdown at the start of the course
|
||||
|
||||
beatrun.toolsmenu.courses.checkpointsave=Save at Checkpoint
|
||||
beatrun.toolsmenu.courses.checkpointsavedesc=Respawn at last hit checkpoint in courses
|
||||
|
||||
beatrun.toolsmenu.courses.database=Database domain
|
||||
beatrun.toolsmenu.courses.databasedesc=Domain/IP of the database\nDefault: courses.beatrun.ru
|
||||
|
||||
beatrun.toolsmenu.courses.changeapikey=Change API Key
|
||||
beatrun.toolsmenu.courses.enterapikey=Enter your API Key
|
||||
|
||||
beatrun.toolsmenu.courses.savecourse=Save currently running course to a file
|
||||
beatrun.toolsmenu.courses.namesavecourse=Enter a name for your course
|
||||
|
||||
beatrun.toolsmenu.courses.loadcourse=Load a course from the online database
|
||||
beatrun.toolsmenu.courses.enterloadcourse=Enter course code
|
||||
|
||||
beatrun.toolsmenu.courses.uploadcourse=Upload currently running course to the database
|
||||
beatrun.toolsmenu.courses.uploadcoursehelp=Check the console for the code!
|
||||
|
||||
beatrun.toolsmenu.courses.updatecourse=Update a course on the database
|
||||
beatrun.toolsmenu.courses.updatecourseconsole=Check the console for the response from the server!
|
||||
beatrun.toolsmenu.courses.updatecoursehelp=Updates a course on the database with the currently running one
|
||||
|
||||
# Tools Menu HUD Section
|
||||
beatrun.toolsmenu.hud.name=HUD
|
||||
beatrun.toolsmenu.hud.desc=HUD Settings
|
||||
|
||||
beatrun.toolsmenu.hud.dynamic=Dynamic HUD
|
||||
beatrun.toolsmenu.hud.dynamicdesc=Hides HUD when moving
|
||||
|
||||
beatrun.toolsmenu.hud.sway=HUD Sway
|
||||
beatrun.toolsmenu.hud.swaydesc=Toggles HUD swaying
|
||||
|
||||
beatrun.toolsmenu.hud.reticle=Show Reticle
|
||||
beatrun.toolsmenu.hud.reticledesc=Shows a dot in the center of the screen
|
||||
|
||||
beatrun.toolsmenu.hud.nametags=Show Nametags
|
||||
beatrun.toolsmenu.hud.nametagsdesc=Toggles nametags above players
|
||||
|
||||
beatrun.toolsmenu.hud.hudxp=Show HUD XP
|
||||
beatrun.toolsmenu.hud.hudxpdesc=Show total XP near your nickname
|
||||
|
||||
beatrun.toolsmenu.hud.wind=Wind Effect
|
||||
beatrun.toolsmenu.hud.winddesc=Wind noises when running
|
||||
|
||||
beatrun.toolsmenu.hud.fov=FOV
|
||||
beatrun.toolsmenu.hud.fovdesc=You need to respawn after changing your FOV!
|
||||
|
||||
beatrun.toolsmenu.hud.hidden=Hide HUD
|
||||
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
|
|
@ -203,13 +203,13 @@ end
|
|||
local function AEUIDraw()
|
||||
if AEUI.NoDraw then return end
|
||||
|
||||
for k, v in ipairs(AEUI.Panels) do
|
||||
for _, v in ipairs(AEUI.Panels) do
|
||||
surface.SetAlphaMultiplier(v.alpha or 1)
|
||||
AEUI:DrawPanel(v)
|
||||
surface.SetAlphaMultiplier(1)
|
||||
|
||||
if v.elements then
|
||||
for l, b in ipairs(v.elements) do
|
||||
for _, b in ipairs(v.elements) do
|
||||
AEUI:DrawElement(v, b)
|
||||
end
|
||||
end
|
||||
|
@ -288,7 +288,7 @@ hook.Add("StartCommand", "AEUI_StartCommand", function(ply, cmd)
|
|||
local click = input.WasMousePressed(MOUSE_LEFT)
|
||||
|
||||
if hoveredpanel then
|
||||
for k, v in ipairs(hoveredpanel.elements) do
|
||||
for _, v in ipairs(hoveredpanel.elements) do
|
||||
if (v.onclick or v.hover) and (not v.greyed or not v.greyed()) and v.w and v.h then
|
||||
local x = SScaleX(hoveredpanel.x) + SScaleX(v.x)
|
||||
local y = SScaleY(hoveredpanel.y) + SScaleY(v.y) + (hoveredpanel.scroll or 0)
|
||||
|
|
|
@ -46,7 +46,7 @@ local incompatible = {
|
|||
["2635378860"] = true, -- MW/WZ Skydive/Parachute + Infil
|
||||
["2919957168"] = true, -- Modern Warfare II - Takedowns & Revive System
|
||||
["2600234804"] = true, -- ASTW2 - Base Weapons
|
||||
["2824714462"] = true, -- TFA Camera Shake
|
||||
["2824714462"] = true, -- [TFA] Screen Shake
|
||||
["3037375111"] = true -- Quick Slide With Legs
|
||||
}
|
||||
|
||||
|
@ -80,7 +80,7 @@ local warntext = {
|
|||
y = warnpanel.h * 0.125,
|
||||
centered = true,
|
||||
color = color_white,
|
||||
string = "NOTICE\nPlease disable the following addons before playing\nor submitting any issues to GitHub:"
|
||||
string = language.GetPhrase("beatrun.addonwarning.warntext")
|
||||
}
|
||||
|
||||
table.insert(warnpanel.elements, warntext)
|
||||
|
@ -92,21 +92,18 @@ local quitbutton = {
|
|||
y = warnpanel.h * 0.85,
|
||||
centered = true,
|
||||
color = color_white,
|
||||
string = "Return to Main Menu",
|
||||
string = "#beatrun.addonwarning.quitbutton",
|
||||
onclick = function(self)
|
||||
surface.PlaySound("garrysmod/ui_click.wav")
|
||||
MsgC(Color(255, 100, 100), "Quitting Beatrun due to conflicting addons!")
|
||||
|
||||
timer.Simple(0.5, function()
|
||||
RunConsoleCommand("killserver")
|
||||
timer.Simple(0.2, function()
|
||||
RunConsoleCommand("disconnect")
|
||||
end)
|
||||
|
||||
self.onclick = nil
|
||||
end
|
||||
}
|
||||
|
||||
table.insert(warnpanel.elements, quitbutton)
|
||||
AEUI:AddButton(warnpanel, "Play", warnclosebutton, "AEUIDefault", warnpanel.w * 0.5, warnpanel.h * 0.93, true)
|
||||
AEUI:AddButton(warnpanel, "#beatrun.addonwarning.play", warnclosebutton, "AEUIDefault", warnpanel.w * 0.5, warnpanel.h * 0.93, true)
|
||||
|
||||
local conflictlist = {
|
||||
type = "Text",
|
||||
|
@ -133,8 +130,6 @@ local function CheckAddons()
|
|||
end
|
||||
end
|
||||
|
||||
print(conflictlist.string)
|
||||
|
||||
return addons
|
||||
end
|
||||
|
||||
|
@ -143,7 +138,7 @@ local function WarningIcon()
|
|||
surface.SetFont("BeatrunHUD")
|
||||
surface.SetTextPos(2, 0)
|
||||
surface.SetTextColor(220, 20, 20, math.abs(math.sin(CurTime() * 2) * 255))
|
||||
surface.DrawText("CONFLICTING ADDONS FOUND")
|
||||
surface.DrawText("#beatrun.addonwarning.conflictfound")
|
||||
|
||||
return
|
||||
else
|
||||
|
|
|
@ -57,9 +57,10 @@ local function infostring()
|
|||
y = math.Round(y)
|
||||
p = math.Round(p)
|
||||
|
||||
local a = "Index: " .. BuildModeIndex .. "\nSelected: " .. table.Count(buildmode_selected) .. "\nAngle: " .. p .. ", " .. y .. ", " .. r
|
||||
local angle = p .. ", " .. y .. ", " .. r
|
||||
local str = language.GetPhrase("beatrun.buildmodehud.info"):format(BuildModeIndex, table.Count(buildmode_selected), angle)
|
||||
|
||||
return a
|
||||
return str
|
||||
end
|
||||
|
||||
AEUI:AddText(bminfo, infostring, "AEUIDefault", bminfo.w / 2, bminfo.h / 2 - 20, true)
|
||||
|
@ -75,25 +76,27 @@ end
|
|||
local function PanelElementsToggle(e)
|
||||
local showingents = propspanel.elements == EntitiesElements
|
||||
propspanel.elements = showingents and propspanel_elements or EntitiesElements
|
||||
e.string = showingents and "Menu / Props" or "Menu / Entities"
|
||||
|
||||
e.string = showingents and "#beatrun.buildmodehud.props" or "#beatrun.buildmodehud.entities"
|
||||
|
||||
propspanel.maxscroll = nil
|
||||
propspanel.scroll = nil
|
||||
end
|
||||
|
||||
local b = AEUI:AddButton(bmbuttons, "Drag (G)", BuildModeHUDButton, "AEUIDefault", 2, 0, false)
|
||||
local b = AEUI:AddButton(bmbuttons, "#beatrun.buildmodehud.drag", BuildModeHUDButton, "AEUIDefault", 2, 0, false)
|
||||
b.key = KEY_G
|
||||
b.greyed = GreyButtons
|
||||
local b = AEUI:AddButton(bmbuttons, "Copy (SHIFT+D)", BuildModeHUDButton, "AEUIDefault", 2, 25, false)
|
||||
local b = AEUI:AddButton(bmbuttons, "#beatrun.buildmodehud.copy", BuildModeHUDButton, "AEUIDefault", 2, 25, false)
|
||||
b.key = KEY_D
|
||||
b.greyed = GreyButtons
|
||||
local b = AEUI:AddButton(bmbuttons, "Delete (DEL/BCKSPC)", BuildModeHUDButton, "AEUIDefault", 2, 50, false)
|
||||
local b = AEUI:AddButton(bmbuttons, "#beatrun.buildmodehud.delete", BuildModeHUDButton, "AEUIDefault", 2, 50, false)
|
||||
b.key = KEY_DELETE
|
||||
b.greyed = GreyButtons
|
||||
local b = AEUI:AddButton(bmbuttons, "Highlight (T)", BuildModeHUDButton, "AEUIDefault", 2, 75, false)
|
||||
local b = AEUI:AddButton(bmbuttons, "#beatrun.buildmodehud.highlight", BuildModeHUDButton, "AEUIDefault", 2, 75, false)
|
||||
b.key = KEY_T
|
||||
b.greyed = GreyButtons
|
||||
|
||||
AEUI:AddButton(elementstogglepanel, "Menu / Props", PanelElementsToggle, "AEUILarge", 192, 20, true)
|
||||
AEUI:AddButton(elementstogglepanel, "#beatrun.buildmodehud.props", PanelElementsToggle, "AEUILarge", 192, 20, true)
|
||||
|
||||
local dummy = ClientsideModel("models/hunter/blocks/cube025x025x025.mdl")
|
||||
|
||||
|
@ -150,7 +153,6 @@ end
|
|||
local function BMPropClick(e)
|
||||
BuildModeIndex = e.prop or 0
|
||||
|
||||
print(e.prop)
|
||||
LocalPlayer():EmitSound("buttonclick.wav")
|
||||
|
||||
if BuildModeIndex == 0 then
|
||||
|
@ -168,7 +170,7 @@ end
|
|||
|
||||
local img = AEUI:AddImage(propspanel, Material("vgui/empty.png"), BMPropClick, 0, 0, 64, 64)
|
||||
img.prop = 0
|
||||
img.hover = "Select"
|
||||
img.hover = "#beatrun.buildmodehud.select"
|
||||
local row = 1
|
||||
local col = 0
|
||||
|
||||
|
@ -194,7 +196,7 @@ end
|
|||
|
||||
local img = AEUI:AddImage(propspanel, Material("vgui/empty.png"), BMPropClick, 64 * row, 64 * col, 64, 64)
|
||||
img.prop = 0
|
||||
img.hover = "Select"
|
||||
img.hover = "#beatrun.buildmodehud.select"
|
||||
|
||||
local function BuildModeElements()
|
||||
propspanel.elements = EntitiesElements
|
||||
|
@ -206,7 +208,7 @@ local function BuildModeElements()
|
|||
|
||||
local img = AEUI:AddImage(propspanel, Material("vgui/empty.png"), BMPropClick, 0, 0, 64, 64)
|
||||
img.prop = 0
|
||||
img.hover = "Select"
|
||||
img.hover = "#beatrun.buildmodehud.select"
|
||||
|
||||
local buildmode_enticons = {
|
||||
br_swingbar = Material("vgui/editor/swingbar.png"),
|
||||
|
@ -221,7 +223,7 @@ local function BuildModeElements()
|
|||
}
|
||||
|
||||
local buildmode_entnames = {
|
||||
br_zipline = "Zipline (SHIFT = 2-Way)"
|
||||
br_zipline = "#beatrun.buildmodehud.zipline"
|
||||
}
|
||||
|
||||
local obsolete = Material("editor/obsolete")
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
local apikey = CreateClientConVar("Beatrun_Apikey", "0", true, false, "API key")
|
||||
local domain = CreateClientConVar("Beatrun_Domain", "courses.beatrun.ru", true, false, "Online courses domain")
|
||||
local apikey = CreateClientConVar("Beatrun_Apikey", "0", true, false, language.GetPhrase("beatrun.convars.apikey"))
|
||||
local domain = CreateClientConVar("Beatrun_Domain", "courses.beatrun.ru", true, false, language.GetPhrase("beatrun.convars.domain"))
|
||||
|
||||
local QueuedArgs = NULL
|
||||
local QueuedFunction = NULL
|
||||
local currentMap = game.GetMap()
|
||||
|
||||
concommand.Add("Beatrun_Confirm", function()
|
||||
if QueuedArgs and QueuedFunction then
|
||||
|
@ -29,22 +30,22 @@ local function GetCurrentMapWorkshopID()
|
|||
|
||||
_, addon_folders = file.Find("*", addon.title)
|
||||
|
||||
if file.Exists("maps/" .. game.GetMap() .. ".bsp", addon.title) then return addon.wsid end
|
||||
if file.Exists("maps/" .. currentMap .. ".bsp", addon.title) then return addon.wsid end
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
function UploadCourse()
|
||||
if Course_Name == "" or Course_ID == "" then return print("Can't upload in Freeplay") end
|
||||
if Course_Name == "" or Course_ID == "" then return print(language.GetPhrase("beatrun.coursesdatabase.cantuploadfreeplay")) end
|
||||
|
||||
local url = domain:GetString() .. "/upload.php"
|
||||
local data = file.Open("beatrun/courses/" .. game.GetMap() .. "/" .. Course_ID .. ".txt", "rb", "DATA")
|
||||
local data = file.Open("beatrun/courses/" .. currentMap .. "/" .. Course_ID .. ".txt", "rb", "DATA")
|
||||
local filedata = util.Decompress(data:Read(data:Size()))
|
||||
|
||||
http.Post(url, {
|
||||
key = apikey:GetString(),
|
||||
map = string.Replace(game.GetMap(), " ", "-"),
|
||||
map = string.Replace(currentMap, " ", "-"),
|
||||
course_data = util.Base64Encode(filedata, true),
|
||||
mapid = GetCurrentMapWorkshopID()
|
||||
}, function(body, length, headers, code) -- onSuccess function
|
||||
|
@ -61,24 +62,23 @@ end
|
|||
concommand.Add("Beatrun_UploadCourse", function()
|
||||
QueuedFunction = UploadCourse
|
||||
|
||||
print("You're trying to upload a course with the name " .. Course_Name .. " and on map " .. game.GetMap() .. ".")
|
||||
print("Write Beatrun_Confirm to continue, or Beatrun_Cancel to cancel.")
|
||||
print(language.GetPhrase("beatrun.coursesdatabase.upload1"):format(Course_Name, currentMap))
|
||||
print(language.GetPhrase("beatrun.coursesdatabase.upload2"))
|
||||
end)
|
||||
|
||||
function GetCourse(sharecode)
|
||||
local url = domain:GetString() .. "/getcourse.php"
|
||||
.. "?sharecode=" .. sharecode
|
||||
.. "&map=" .. string.gsub(game.GetMap(), " ", "-")
|
||||
.. "&map=" .. string.Replace(currentMap, " ", "-")
|
||||
.. "&key=" .. apikey:GetString()
|
||||
|
||||
http.Fetch(url, function(body, length, headers, code)
|
||||
if code == 200 then
|
||||
print("Success! | Response: " .. code .. " | Length: " .. length)
|
||||
print("Loading course...")
|
||||
print("Success! | Response: " .. code .. " | Length: " .. length .. "\nLoading course...")
|
||||
|
||||
PrintTable(headers)
|
||||
|
||||
local dir = "beatrun/courses/" .. game.GetMap() .. "/"
|
||||
local dir = "beatrun/courses/" .. currentMap .. "/"
|
||||
file.CreateDir(dir)
|
||||
local coursedata = util.Compress(body)
|
||||
|
||||
|
@ -110,15 +110,15 @@ concommand.Add("Beatrun_LoadCode", function(ply, cmd, args, argstr)
|
|||
end)
|
||||
|
||||
function UpdateCourse(course_code)
|
||||
if Course_Name == "" or Course_ID == "" then return print("Can't upload in Freeplay") end
|
||||
if Course_Name == "" or Course_ID == "" then return print(language.GetPhrase("beatrun.coursesdatabase.cantuploadfreeplay")) end
|
||||
|
||||
local url = domain:GetString() .. "/updatecourse.php"
|
||||
local data = file.Open("beatrun/courses/" .. game.GetMap() .. "/" .. Course_ID .. ".txt", "rb", "DATA")
|
||||
local data = file.Open("beatrun/courses/" .. currentMap .. "/" .. Course_ID .. ".txt", "rb", "DATA")
|
||||
local filedata = util.Decompress(data:Read(data:Size()))
|
||||
|
||||
http.Post(url, {
|
||||
key = apikey:GetString(),
|
||||
map = string.Replace(game.GetMap(), " ", "-"),
|
||||
map = string.Replace(currentMap, " ", "-"),
|
||||
course_data = util.Base64Encode(filedata, true),
|
||||
code = course_code
|
||||
}, function(body, length, headers, code) -- onSuccess function
|
||||
|
@ -136,6 +136,6 @@ concommand.Add("Beatrun_UpdateCode", function(ply, cmd, args, argstr)
|
|||
QueuedFunction = UpdateCourse
|
||||
QueuedArgs = args[1]
|
||||
|
||||
print("You're trying to update a course with this code: " .. args[1] .. ", with a course on map " .. game.GetMap() .. " and name " .. Course_Name .. ".")
|
||||
print("Write Beatrun_Confirm to continue, or Beatrun_Cancel to cancel.")
|
||||
print(language.GetPhrase("beatrun.coursesdatabase.update1"):format(QueuedArgs, currentMap, Course_Name))
|
||||
print(language.GetPhrase("beatrun.coursesdatabase.upload2"))
|
||||
end)
|
|
@ -1,16 +1,17 @@
|
|||
local showtotalXP = CreateClientConVar("Beatrun_HUDXP", "1", true, false, "Show total XP near nickname", 0, 1)
|
||||
local sway = CreateClientConVar("Beatrun_HUDSway", "1", true, false, "Display HUD swaying", 0, 1)
|
||||
local dynamic = CreateClientConVar("Beatrun_HUDDynamic", "0", true, false, "Hide HUD when moving", 0, 1)
|
||||
local hidden = CreateClientConVar("Beatrun_HUDHidden", "0", true, false, "Hides most of the XP HUD", 0, 2)
|
||||
local reticle = CreateClientConVar("Beatrun_HUDReticle", "1", true, false, "Display a reticle", 0, 1)
|
||||
local showtotalXP = CreateClientConVar("Beatrun_HUDXP", "1", true, false, language.GetPhrase("beatrun.convars.hudxp"), 0, 1)
|
||||
local sway = CreateClientConVar("Beatrun_HUDSway", "1", true, false, language.GetPhrase("beatrun.convars.hudsway"), 0, 1)
|
||||
local dynamic = CreateClientConVar("Beatrun_HUDDynamic", "0", true, false, language.GetPhrase("beatrun.convars.huddynamic"), 0, 1)
|
||||
local hidden = CreateClientConVar("Beatrun_HUDHidden", "0", true, false, language.GetPhrase("beatrun.convars.hudhidden"), 0, 2)
|
||||
local reticle = CreateClientConVar("Beatrun_HUDReticle", "1", true, false, language.GetPhrase("beatrun.convars.hudreticle"), 0, 1)
|
||||
|
||||
CreateClientConVar("Beatrun_HUDTextColor", "255 255 255 255", true, true, language.GetPhrase("beatrun.convars.hudtextcolor"))
|
||||
CreateClientConVar("Beatrun_HUDCornerColor", "20 20 20 100", true, true, language.GetPhrase("beatrun.convars.hudcornercolor"))
|
||||
CreateClientConVar("Beatrun_HUDFloatingXPColor", "255 255 255 255", true, true, language.GetPhrase("beatrun.convars.hudfloatxpcolor"))
|
||||
|
||||
local packetloss = Material("vgui/packetloss.png")
|
||||
local lastloss = 0
|
||||
local MELogo = Material("vgui/MELogo.png", "mips smooth")
|
||||
|
||||
CreateClientConVar("Beatrun_HUDTextColor", "255 255 255 255", true, true, "HUD Text Color\nDefault: 255 255 255 255")
|
||||
CreateClientConVar("Beatrun_HUDCornerColor", "20 20 20 100", true, true, "HUD Left Corner Color\nDefault: 20 20 20 100")
|
||||
CreateClientConVar("Beatrun_HUDFloatingXPColor", "255 255 255 255", true, true, "HUD Floating XP Color\nDefault: 255 255 255 255")
|
||||
|
||||
local hide = {
|
||||
CHudBattery = true,
|
||||
CHudHealth = true,
|
||||
|
@ -129,12 +130,12 @@ local function BeatrunHUD()
|
|||
|
||||
surface.SetFont("DebugFixedSmall")
|
||||
|
||||
-- local vtext = (ply:SteamID() or "?") .. " | " .. VERSIONGLOBAL
|
||||
-- local tw, th = surface.GetTextSize(vtext)
|
||||
-- surface.SetTextColor(255, 255, 255, 15)
|
||||
-- surface.SetTextPos(scrw - tw, 0)
|
||||
-- surface.DrawText(vtext)
|
||||
-- surface.SetFont("BeatrunHUD")
|
||||
local vtext = VERSIONGLOBAL
|
||||
local tw, _ = surface.GetTextSize(vtext)
|
||||
surface.SetTextColor(255, 255, 255, 15)
|
||||
surface.SetTextPos(scrw - tw, 0)
|
||||
surface.DrawText(vtext)
|
||||
surface.SetFont("BeatrunHUD")
|
||||
|
||||
local pl = ply:GetNW2Int("PLoss")
|
||||
local CT = CurTime()
|
||||
|
@ -170,7 +171,7 @@ local function BeatrunHUD()
|
|||
|
||||
local coursename = nil
|
||||
local customname = hook.Run("BeatrunHUDCourse")
|
||||
coursename = customname and customname or Course_Name ~= "" and "Course: " .. Course_Name or "Freeplay"
|
||||
coursename = customname and customname or Course_Name ~= "" and language.GetPhrase("beatrun.hud.course"):format(Course_Name) or "#beatrun.hud.freeplay"
|
||||
-- local lastxp = ply.LastXP or 0
|
||||
local nicktext = nil
|
||||
|
||||
|
@ -223,7 +224,7 @@ local function BeatrunHUD()
|
|||
surface.SetFont("BeatrunHUD")
|
||||
surface.SetTextColor(text_color)
|
||||
surface.SetTextPos(scrw * 0.015 + vp.z, scrh * 0.9 + vp.x)
|
||||
surface.DrawText("Lv." .. ply:GetLevel())
|
||||
surface.DrawText(language.GetPhrase("beatrun.hud.lvl"):format(ply:GetLevel()))
|
||||
|
||||
if tobool(LocalPlayer():GetInfo("Beatrun_PuristMode")) then
|
||||
surface.SetDrawColor(230, 230, 230)
|
||||
|
@ -396,7 +397,7 @@ function BeatrunLeaderboard(forced)
|
|||
|
||||
if isinfection and pbtimenum == 0 and v:GetNW2Bool("Infected") then
|
||||
surface.SetTextColor(infectorcolor)
|
||||
surface.DrawText(" | Infector")
|
||||
surface.DrawText(" | " .. language.GetPhrase("beatrun.hud.infector"))
|
||||
else
|
||||
surface.DrawText(" | " .. pbtime)
|
||||
end
|
||||
|
|
|
@ -25,12 +25,12 @@ local function buildmodebutton()
|
|||
LocalPlayer():ConCommand("buildmode")
|
||||
end
|
||||
|
||||
AEUI:AddText(coursepanel, "Time Trials - " .. game.GetMap(), "AEUIVeryLarge", 20, 30)
|
||||
AEUI:AddText(coursepanel, language.GetPhrase("beatrun.coursemenu.trials"):format(game.GetMap()), "AEUIVeryLarge", 20, 30)
|
||||
|
||||
local buildmodebutton = AEUI:AddButton(coursepanel, "Build Mode Toggle", buildmodebutton, "AEUILarge", coursepanel.w - 400, coursepanel.h - 50)
|
||||
local buildmodebutton = AEUI:AddButton(coursepanel, "#beatrun.coursemenu.buildmode", buildmodebutton, "AEUILarge", coursepanel.w - 400, coursepanel.h - 50)
|
||||
buildmodebutton.greyed = sacheck
|
||||
|
||||
local stopbutton = AEUI:AddButton(coursepanel, "Return to Freeplay", stopbutton, "AEUILarge", coursepanel.w - 750, coursepanel.h - 50)
|
||||
local stopbutton = AEUI:AddButton(coursepanel, "#beatrun.coursemenu.freeplay", stopbutton, "AEUILarge", coursepanel.w - 750, coursepanel.h - 50)
|
||||
stopbutton.greyed = sacheck
|
||||
|
||||
local courselist = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
local NametagsEnable = CreateClientConVar("Beatrun_Nametags", "1", true, false, "Toggles nametags above players", 0, 1)
|
||||
local NametagsEnable = CreateClientConVar("Beatrun_Nametags", "1", true, false, language.GetPhrase("beatrun.convars.nametags"), 0, 1)
|
||||
|
||||
local enemy = Color(255, 0, 0)
|
||||
|
||||
|
|
|
@ -5,33 +5,33 @@ local function ToggleGamemode(gm)
|
|||
end
|
||||
|
||||
hook.Add("AddToolMenuCategories", "Beatrun_Category", function()
|
||||
spawnmenu.AddToolCategory("Beatrun", "Client", "Client")
|
||||
spawnmenu.AddToolCategory("Beatrun", "Server", "Server")
|
||||
spawnmenu.AddToolCategory("Beatrun", "Client", language.GetPhrase("beatrun.toolsmenu.client"))
|
||||
spawnmenu.AddToolCategory("Beatrun", "Server", language.GetPhrase("beatrun.toolsmenu.server"))
|
||||
end)
|
||||
|
||||
hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
||||
spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_courses", "Courses", "", "", function(panel)
|
||||
spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_courses", language.GetPhrase("beatrun.toolsmenu.courses.name"), "", "", function(panel)
|
||||
panel:ClearControls()
|
||||
panel:SetName("Courses Setttings")
|
||||
panel:SetName("#beatrun.toolsmenu.courses.desc")
|
||||
|
||||
panel:CheckBox("Fast Start", "Beatrun_FastStart")
|
||||
panel:ControlHelp("Faster countdown in courses")
|
||||
panel:CheckBox("#beatrun.toolsmenu.courses.faststart", "Beatrun_FastStart")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.courses.faststartdesc")
|
||||
|
||||
panel:CheckBox("Save at Checkpoint", "Beatrun_CPSave")
|
||||
panel:ControlHelp("Respawn at last hit checkpoint in courses")
|
||||
panel:CheckBox("#beatrun.toolsmenu.courses.checkpointsave", "Beatrun_CPSave")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.courses.checkpointsavedesc")
|
||||
|
||||
local divider = vgui.Create("DHorizontalDivider")
|
||||
panel:AddItem(divider)
|
||||
|
||||
panel:TextEntry("Courses server", "Beatrun_Domain")
|
||||
panel:ControlHelp("Database domain\nDefault: courses.beatrun.ru")
|
||||
panel:TextEntry("#beatrun.toolsmenu.courses.database", "Beatrun_Domain")
|
||||
panel:ControlHelp(language.GetPhrase("beatrun.toolsmenu.courses.databasedesc"))
|
||||
|
||||
local apiKeyButton = vgui.Create("DButton", panel)
|
||||
apiKeyButton:SetText("Change API Key")
|
||||
apiKeyButton:SetText("#beatrun.toolsmenu.courses.changeapikey")
|
||||
apiKeyButton:SetSize(0, 20)
|
||||
apiKeyButton.DoClick = function()
|
||||
local frame = vgui.Create("DFrame")
|
||||
frame:SetTitle("Enter your API Key")
|
||||
frame:SetTitle("#beatrun.toolsmenu.courses.enterapikey")
|
||||
frame:SetSize(300, 100)
|
||||
frame:SetDeleteOnClose(true)
|
||||
frame:Center()
|
||||
|
@ -41,11 +41,13 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
TextEntry:Dock(TOP)
|
||||
|
||||
local okButton = vgui.Create("DButton", frame)
|
||||
okButton:SetText("OK")
|
||||
okButton:SetText("#beatrun.misc.ok")
|
||||
okButton:SetPos(25, 60)
|
||||
okButton:SetSize(250, 30)
|
||||
okButton.DoClick = function()
|
||||
RunConsoleCommand("Beatrun_Apikey", TextEntry:GetValue())
|
||||
local key = string.Replace(TextEntry:GetValue(), " ", "")
|
||||
|
||||
RunConsoleCommand("Beatrun_Apikey", key)
|
||||
frame:Close()
|
||||
end
|
||||
end
|
||||
|
@ -55,11 +57,11 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
panel:AddItem(divider)
|
||||
|
||||
local saveCourseButton = vgui.Create("DButton", panel)
|
||||
saveCourseButton:SetText("Save current course to a file")
|
||||
saveCourseButton:SetText("#beatrun.toolsmenu.courses.savecourse")
|
||||
saveCourseButton:SetSize(0, 20)
|
||||
saveCourseButton.DoClick = function()
|
||||
local frame = vgui.Create("DFrame")
|
||||
frame:SetTitle("Enter a name for your course")
|
||||
frame:SetTitle("#beatrun.toolsmenu.courses.namesavecourse")
|
||||
frame:SetSize(300, 100)
|
||||
frame:SetDeleteOnClose(true)
|
||||
frame:Center()
|
||||
|
@ -69,22 +71,24 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
TextEntry:Dock(TOP)
|
||||
|
||||
local okButton = vgui.Create("DButton", frame)
|
||||
okButton:SetText("OK")
|
||||
okButton:SetText("#beatrun.misc.ok")
|
||||
okButton:SetPos(25, 60)
|
||||
okButton:SetSize(250, 30)
|
||||
okButton.DoClick = function()
|
||||
RunConsoleCommand("Beatrun_SaveCourse", TextEntry:GetValue())
|
||||
local name = string.Replace(TextEntry:GetValue(), " ", "_")
|
||||
|
||||
RunConsoleCommand("Beatrun_SaveCourse", name)
|
||||
frame:Close()
|
||||
end
|
||||
end
|
||||
panel:AddItem(saveCourseButton)
|
||||
|
||||
local loadCodeButton = vgui.Create("DButton", panel)
|
||||
loadCodeButton:SetText("Load a course from the database")
|
||||
loadCodeButton:SetSize(0, 20)
|
||||
loadCodeButton.DoClick = function()
|
||||
local loadCourseButton = vgui.Create("DButton", panel)
|
||||
loadCourseButton:SetText("#beatrun.toolsmenu.courses.loadcourse")
|
||||
loadCourseButton:SetSize(0, 20)
|
||||
loadCourseButton.DoClick = function()
|
||||
local frame = vgui.Create("DFrame")
|
||||
frame:SetTitle("Enter course code")
|
||||
frame:SetTitle("#beatrun.toolsmenu.courses.enterloadcourse")
|
||||
frame:SetSize(300, 100)
|
||||
frame:SetDeleteOnClose(true)
|
||||
frame:Center()
|
||||
|
@ -94,31 +98,33 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
TextEntry:Dock(TOP)
|
||||
|
||||
local okButton = vgui.Create("DButton", frame)
|
||||
okButton:SetText("OK")
|
||||
okButton:SetText("#beatrun.misc.ok")
|
||||
okButton:SetPos(25, 60)
|
||||
okButton:SetSize(250, 30)
|
||||
okButton.DoClick = function()
|
||||
RunConsoleCommand("Beatrun_LoadCode", TextEntry:GetValue())
|
||||
local code = string.Replace(TextEntry:GetValue(), " ", "")
|
||||
|
||||
RunConsoleCommand("Beatrun_LoadCode", code)
|
||||
frame:Close()
|
||||
end
|
||||
end
|
||||
panel:AddItem(loadCodeButton)
|
||||
panel:AddItem(loadCourseButton)
|
||||
|
||||
local uploadCourseButton = vgui.Create("DButton", panel)
|
||||
uploadCourseButton:SetText("Upload current course to the database")
|
||||
uploadCourseButton:SetText("#beatrun.toolsmenu.courses.uploadcourse")
|
||||
uploadCourseButton:SetSize(0, 20)
|
||||
uploadCourseButton.DoClick = function()
|
||||
RunConsoleCommand("Beatrun_UploadCourse")
|
||||
notification.AddLegacy("Open your console for the code!", NOTIFY_HINT, 5)
|
||||
notification.AddLegacy("#beatrun.toolsmenu.courses.uploadcoursehelp", NOTIFY_HINT, 5)
|
||||
end
|
||||
panel:AddItem(uploadCourseButton)
|
||||
|
||||
local updateCodeButton = vgui.Create("DButton", panel)
|
||||
updateCodeButton:SetText("Update a course on the database")
|
||||
updateCodeButton:SetSize(0, 20)
|
||||
updateCodeButton.DoClick = function()
|
||||
local updateCourseButton = vgui.Create("DButton", panel)
|
||||
updateCourseButton:SetText("#beatrun.toolsmenu.courses.updatecourse")
|
||||
updateCourseButton:SetSize(0, 20)
|
||||
updateCourseButton.DoClick = function()
|
||||
local frame = vgui.Create("DFrame")
|
||||
frame:SetTitle("Enter course code")
|
||||
frame:SetTitle("#beatrun.toolsmenu.courses.enterloadcourse")
|
||||
frame:SetSize(300, 100)
|
||||
frame:SetDeleteOnClose(true)
|
||||
frame:Center()
|
||||
|
@ -128,50 +134,51 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
TextEntry:Dock(TOP)
|
||||
|
||||
local okButton = vgui.Create("DButton", frame)
|
||||
okButton:SetText("OK")
|
||||
okButton:SetText("#beatrun.misc.ok")
|
||||
okButton:SetPos(25, 60)
|
||||
okButton:SetSize(250, 30)
|
||||
okButton.DoClick = function()
|
||||
RunConsoleCommand("Beatrun_UpdateCode", TextEntry:GetValue())
|
||||
notification.AddLegacy("Open your console for server's response!", NOTIFY_HINT, 5)
|
||||
notification.AddLegacy("#beatrun.toolsmenu.courses.updatecourseconsole", NOTIFY_HINT, 5)
|
||||
frame:Close()
|
||||
end
|
||||
end
|
||||
panel:AddItem(updateCodeButton)
|
||||
panel:AddItem(updateCourseButton)
|
||||
panel:Help("#beatrun.toolsmenu.courses.updatecoursehelp")
|
||||
end)
|
||||
|
||||
spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_hud", "HUD", "", "", function(panel)
|
||||
spawnmenu.AddToolMenuOption("Beatrun", "Client", "beatrun_hud", "#beatrun.toolsmenu.hud.name", "", "", function(panel)
|
||||
panel:ClearControls()
|
||||
panel:SetName("HUD Setttings")
|
||||
panel:SetName("#beatrun.toolsmenu.hud.desc")
|
||||
|
||||
panel:CheckBox("Dynamic HUD", "Beatrun_HUDDynamic")
|
||||
panel:ControlHelp("Hides HUD when moving")
|
||||
panel:CheckBox("#beatrun.toolsmenu.hud.dynamic", "Beatrun_HUDDynamic")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.hud.dynamicdesc")
|
||||
|
||||
panel:CheckBox("HUD Sway", "Beatrun_HUDSway")
|
||||
panel:ControlHelp("Toggles HUD swaying")
|
||||
panel:CheckBox("#beatrun.toolsmenu.hud.sway", "Beatrun_HUDSway")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.hud.swaydesc")
|
||||
|
||||
panel:CheckBox("Dot", "Beatrun_HUDReticle")
|
||||
panel:ControlHelp("Shows a dot in the center of the screen")
|
||||
panel:CheckBox("#beatrun.toolsmenu.hud.reticle", "Beatrun_HUDReticle")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.hud.reticledesc")
|
||||
|
||||
panel:CheckBox("Nametags", "Beatrun_Nametags")
|
||||
panel:ControlHelp("Toggles nametags above players")
|
||||
panel:CheckBox("#beatrun.toolsmenu.hud.nametags", "Beatrun_Nametags")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.hud.nametagsdesc")
|
||||
|
||||
panel:CheckBox("Floating XP", "Beatrun_HUDXP")
|
||||
panel:ControlHelp("Show total XP near your nickname")
|
||||
panel:CheckBox("#beatrun.toolsmenu.hud.hudxp", "Beatrun_HUDXP")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.hud.hudxpdesc")
|
||||
|
||||
panel:CheckBox("Wind", "Beatrun_Wind")
|
||||
panel:ControlHelp("Wind noises when running")
|
||||
panel:CheckBox("#beatrun.toolsmenu.hud.wind", "Beatrun_Wind")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.hud.winddesc")
|
||||
|
||||
panel:NumSlider("FOV", "Beatrun_FOV", 90, 120, 0)
|
||||
panel:ControlHelp("You need to respawn after changing the FOV!")
|
||||
panel:NumSlider("#beatrun.toolsmenu.hud.fov", "Beatrun_FOV", 90, 120, 0)
|
||||
panel:Help("#beatrun.toolsmenu.hud.fovdesc")
|
||||
|
||||
panel:NumSlider("Hide HUD", "Beatrun_HUDHidden", 0, 2, 0)
|
||||
panel:ControlHelp("0 - Shown\n1 - Gamemode only\n2 - Hidden")
|
||||
panel:NumSlider("#beatrun.toolsmenu.hud.hidden", "Beatrun_HUDHidden", 0, 2, 0)
|
||||
panel:ControlHelp(language.GetPhrase("beatrun.toolsmenu.hud.hiddendesc"))
|
||||
|
||||
local divider = vgui.Create("DHorizontalDivider")
|
||||
panel:AddItem(divider)
|
||||
|
||||
panel:Help("HUD Text Color")
|
||||
panel:Help("#beatrun.toolsmenu.hud.textcolor")
|
||||
local HudTextColor = vgui.Create("DColorMixer", panel)
|
||||
HudTextColor:Dock(FILL)
|
||||
HudTextColor:SetPalette(true)
|
||||
|
@ -183,7 +190,7 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
end
|
||||
panel:AddItem(HudTextColor)
|
||||
|
||||
panel:Help("HUD Corners Color")
|
||||
panel:Help("#beatrun.toolsmenu.hud.cornercolor")
|
||||
local HudCornerColor = vgui.Create("DColorMixer", panel)
|
||||
HudCornerColor:Dock(FILL)
|
||||
HudCornerColor:SetPalette(true)
|
||||
|
@ -195,7 +202,7 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
end
|
||||
panel:AddItem(HudCornerColor)
|
||||
|
||||
panel:Help("HUD Floating XP Color")
|
||||
panel:Help("#beatrun.toolsmenu.hud.floatxpcolor")
|
||||
local HudFXPColor = vgui.Create("DColorMixer", panel)
|
||||
HudFXPColor:Dock(FILL)
|
||||
HudFXPColor:SetPalette(true)
|
||||
|
|
|
@ -111,12 +111,6 @@ hook.Add("CanDrive", "BlockDrive", function(ply)
|
|||
if not ply:IsAdmin() then return false end
|
||||
end)
|
||||
|
||||
hook.Add("SetupMove", "idkhowitworksbutitworks_DiveAnimsFix", function(ply, mv)
|
||||
local weapon = ply:GetActiveWeapon()
|
||||
|
||||
if not IsValid(weapon) then return end
|
||||
end)
|
||||
|
||||
if CLIENT and game.SinglePlayer() then
|
||||
net.Receive("SPParkourEvent", function()
|
||||
local event = net.ReadString()
|
||||
|
|
Loading…
Add table
Reference in a new issue