This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "api develop", | |
"type": "coreclr", | |
"request": "launch", | |
"preLaunchTask": "build-api", | |
"program": "${workspaceFolder}/server/web/Nexp.Web.Api/bin/Debug/netcoreapp3.1/Nexp.Web.Api.dll", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. Install Oh-my-zsh running: | |
# sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# 2. Run the following command: | |
# open -a TextEdit ~/.zshrc | |
# 3. Paste and replace this whole file in it, including comments. | |
# 4. Run: | |
# source ~/.zshrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--put this along a __resource.lua file | |
Citizen.CreateThread(function() | |
while true do | |
local playerArmour = GetPedArmour(GetPlayerPed(-1)) --get player armor level (0-100) | |
--x, y, width, height | |
--Color must be passed as parameter as: {R, G, B, ALPHA} | |
--percent must be passed from 0 to 100 | |
drawProgressBar(0.120, 0.975, 0.0690, 0.0085, {33, 78, 106, 255}, playerArmour) --armour progressbar | |
Citizen.Wait(0) -- at every frame |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "none", | |
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe", | |
"extensions.ignoreRecommendations": false, | |
"editor.renderWhitespace": "all", | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"profiles": { | |
"defaults": { | |
"colorScheme" : "Dracula", | |
"fontFace": "JetBrains Mono", | |
"fontSize": 10, |
NewerOlder