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
| net_graph 0 | |
| voice_enable 0 | |
| cl_righthand 1 | |
| cl_showfps 0 | |
| cl_drawhud 1 | |
| cl_draw_only_deathnotices 1 | |
| crosshair 1 | |
| cl_clockcorrection 0 | |
| tv_snapshotrate 128 |
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
| cl_crosshairscale "1" | |
| cl_crosshairstyle "4" | |
| cl_crosshairgap "-1.5" | |
| cl_crosshairsize "2" | |
| cl_crosshairthickness "1" | |
| cl_crosshair_drawoutline "1" | |
| cl_crosshair_outlinethickness "1" | |
| cl_crosshairdot "0" | |
| cl_crosshairalpha "255" | |
| cl_crosshaircolor "5" |
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
| cl_crosshairstyle "4" | |
| cl_crosshairgap "-1.5" | |
| cl_crosshairsize "3" | |
| cl_crosshairthickness "1" | |
| cl_crosshair_drawoutline "0" | |
| cl_crosshair_outlinethickness "1" | |
| cl_crosshairdot "0" | |
| cl_crosshairalpha "255" | |
| cl_crosshaircolor "1" | |
| cl_crosshaircolor_b "255" |
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
| cl_crosshairstyle 4; | |
| cl_crosshairgap -3; | |
| cl_crosshairsize 4; | |
| cl_crosshairthickness 0; | |
| cl_crosshair_drawoutline 0; | |
| cl_crosshair_outlinethickness 0; | |
| cl_crosshairdot 0; | |
| cl_crosshairalpha 255; | |
| cl_crosshaircolor 1; | |
| cl_crosshaircolor_b 0; |
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
| // Server config | |
| sv_cheats 1 | |
| mp_limitteams 0 | |
| mp_autoteambalance 0 | |
| mp_roundtime 60 | |
| mp_roundtime_defuse 60 | |
| mp_maxmoney 60000 | |
| mp_startmoney 60000 | |
| mp_freezetime 0 | |
| mp_buytime 9999 |
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
| // MOUSE 1600 DPI GPRO | |
| // -novid -tickrate 128 -w 1024 -h 768 -noborder -refresh 144 -freq 144 | |
| // -novid -tickrate 128 -w 1920 -h 1080 -noborder -refresh 144 -freq 144 | |
| unbindall | |
| bind "0" "slot10" | |
| bind "1" "slot1" | |
| bind "2" "slot2" | |
| bind "3" "slot3" | |
| bind "4" "slot4" | |
| bind "5" "slot5" |
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
| # https://blog.rocketseat.com.br/terminal-com-oh-my-zsh-spaceship-dracula-e-mais/ | |
| # Install Zsh and Oh My Zsh | |
| # Install spaceship https://github.com/denysdovhan/spaceship-prompt | |
| ZSH_THEME="spaceship" | |
| SPACESHIP_PROMPT_ORDER=( | |
| user # Username section | |
| dir # Current directory section | |
| host # Hostname section | |
| git # Git section (git_branch + git_status) |
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
| AFRAME.registerComponent('moura-listener', { | |
| init: function () { | |
| this.el.addEventListener('click', function (evt) { | |
| off(); | |
| moura(); | |
| }); | |
| } | |
| }); | |
| function moura() { |
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
| <a-scene> | |
| <a-assets> | |
| <!-- Menu return --> | |
| <img moura-listener id="thumb-return" crossorigin="anonymous" src="imgs/thumb-return.jpg"> | |
| <!-- BGs --> | |
| <img id="principal" crossorigin="anonymous" src="imgs/principal.jpg"> | |
| </a-assets> | |
| <a-entity id="tutorial" visible="false"> |
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
| <html> | |
| <body> | |
| <a-scene> | |
| <a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9"></a-box> | |
| </a-scene> | |
| <script src="https://aframe.io/releases/0.6.1/aframe.min.js"></script> | |
| </body> | |
| </html> |