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
| set min_distance 7 | |
| set vision_angle 45 | |
| set first_unit null | |
| ubind @dagger | |
| jump 68 equal first_unit @unit | |
| jump 7 notEqual first_unit null | |
| set first_unit @unit | |
| radar player any any distance @unit 1 p_unit | |
| set a p_unit | |
| set b @this |
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
| radar player any any distance @this 1 p_unit | |
| set a @this | |
| set b p_unit | |
| sensor a_x a @x | |
| sensor a_y a @y | |
| sensor b_x b @x | |
| sensor b_y b @y | |
| op sub a_distance_x b_x a_x | |
| op sub a_distance_y b_y a_y | |
| op pow a_distance_x_power a_distance_x 2 |
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
| [Appearance] | |
| ColorScheme=IndustryScheme | |
| Font=DEC Terminal,11,-1,5,400,0,0,0,0,0,0,0,0,0,0,1 | |
| [Cursor Options] | |
| CursorShape=0 | |
| [General] | |
| Name=Industry | |
| Parent=FALLBACK/ |
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
| # | |
| # ~/.bashrc | |
| # | |
| # If not running interactively, don't do anything | |
| [[ $- != *i* ]] && return | |
| alias ls='ls --color=auto' | |
| alias grep='grep --color=auto' | |
| alias batery='cat /sys/class/power_supply/BAT0/capacity' |
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
| set nocompatible | |
| filetype on | |
| filetype plugin on | |
| filetype indent on | |
| syntax on | |
| " | |
| set cursorline | |
| set cursorcolumn | |
| " | |
| set nu |