ГРУПА STEAM
好似喵! 好似喵!
ГРУПА STEAM
好似喵! 好似喵!
0
У ГРІ
8
У МЕРЕЖІ
Заснована
29 грудня 2022 р.
ПРО 好似喵!

Congrat Ur Death! Meow!

For more information, please visit our Tutorial .

Quick Start

Step 1

To use our dynamic clan tags in CS:GO, you need to join ALL 4 GROUPS listed below:


"似 (sì, similar to)" is a homophone to "死 (sǐ, death)", and "好似喵" means "congratulate (your / his / her, etc.) doom / bad end, meow", a phrase often seen in certain sub-cultural contexts within the Chinese internet community.

Step 2

Append the code snippet below to your `autoexec.cfg` file, or encapsulate it into a separate `.cfg` file if you know what you are doing.

bind w "+forward; cl_clanid 43407204" // 好似喵! bind a "+moveleft; cl_clanid 43407207" // 谢谢喵! bind s "+back; cl_clanid 43407210" // 逃跑喵! bind d "+moveright; cl_clanid 43407213" // 投降喵! alias "clear_clantag" "bind w +forward; bind a +moveleft; bind d +moveright; bind s +back; cl_clanid 0"

If you prefer, you can also input these commands directly into the console. Please remember to add a semicolon at the end of each command when entering multiple commands at once.
ПОПУЛЯРНІ ОБГОВОРЕННЯ
ОСТАННІ ОГОЛОШЕННЯ
Go check my repo meow! Go check my repo thanks meow!
autoexec.cfg

Do NOT copy directly and create your own `autoexec.cfg` instead, or your current settings will be overwritten!

This is the file in which I store all my settings. It is highly recommended to browse as a reference.

Link: https://github.com/Natsuawa-Keiko/csgo-configs/blob/main/configs/autoexec.cfg

env_practice.cfg

A set of environment settings for map practice. Click 'play with bots' and input

exec env_practice

to enable it.

Note that there is a dependency file [github.com] (You can download it as well). It can still work without the dependency but will not be able to use some interesting functions.

Link: https://github.com/Natsuawa-Keiko/csgo-configs/blob/main/config/env_practice.cfg

Tutorial
Quick Start

Step 1

To use dynamic clan tags in CS:GO, you need to join ALL 4 GROUPS mentioned below:


"似 (sì, similar)" is a homophone to "死 (sǐ, death)", and "好似喵" means "congratulate (your / his / her, etc.) doom / bad end, meow", which is commonly used in some sub-culture context of Chinese internet community.

Step 2

Append the snippet below to your `autoexec.cfg` file, or encapsulate it as an individual `.cfg` file if you know what you are doing.

bind "w" "+forward; cl_clanid 43407204" // 好似喵! bind "a" "+moveleft; cl_clanid 43407207" // 谢谢喵! bind "s" "+back; cl_clanid 43407210" // 逃跑喵! bind "d" "+moveright; cl_clanid 43407213" // 投降喵! alias "clear_clantag" "bind w +forward; bind a +moveleft; bind d +moveright; bind s +back; cl_clanid 0"

You may input them in the console as well, do remember that if you want to input multiple commands simultaneously, always add a semicolon at the end of each command.

Q & A

Source: https://github.com/Natsuawa-Keiko/csgo-configs

What are the path components?

Assume we have a file named `/foo/bar/example.txt`, then

  • parent: `/foo/bar/`
  • filename: `example.txt`
  • stem: `example`
  • suffix: `.txt`
  • extension: `txt`

Note that the path aforementioned is in Posix-style. Windows uses backslash \ as its path separator but slash / is also compatible. From now on we only talk about paths in Posix-style.

Make your file suffixes visible!

If not, when you create a file named `autoexec.cfg`, it may actually be like `autoexec.cfg.txt`, with its suffix `.txt` hidden.

Click here[support.microsoft.com] for more information.

How will a file be affected by its suffix?

A common misunderstanding is that we can change the type of a file by changing suffix, which is not true. Actually, suffixes are only for the operating system to infer which software/program should be called to open files, and has nothing to do with the data of the file.

CS:GO client chooses `.cfg` as its config files' suffix, and a `.cfg` file is literally OF NO DIFFERENCE from a `.txt` file. So don't be scared!

Where can I find my config directory?

For Windows

C:/Program Files (x86)/Steam/userdata/<your_steamID32>/730/local/cfg/

For Linux

~/.local/share/Steam/steamapps/common/Counter-Strike Global Offensive/csgo/cfg/

I have not tested the config path yet and it seems to affect the global settings, which means that the configs in the above directory will overwrite other accounts' default settings.

Path below may be the solution but is not guaranteed, because I deleted my Linux virtual machine long time ago.

~/.steam/steam/userdata/<your_steamID32>/730/local/cfg/

For macOS

Well, I wish I know, but I do not.

Is it considered as game hacking?

No.

Config files save you in-game settings like keybindings, crosshair style, jumpthrow, etc. There is no difference between writing commands in your config files and executing them directly in the CS:GO console. Commands like `sv_cheats 1` are server-side commands, your can input and execute them whatever you want: if your are not the host, they will just NOT WORK , and you will not considered as a hacker but a dumb player.

Can I just write them in the default `config.cfg`?

Yes, but not recommended.

CS:GO client loads and saves your configuration by reading and writing `config.cfg`. After batch I/O operation, your `config.cfg` will be no longer read-friendly and hard to manage.

A better implementation is that writing down you settings in a file named `autoexec.cfg`. This file is expected to execute automatically, if not, add `+autoexec` to your CS:GO launch option.

How can I remove thoes group tags?

Command `clear_clantag` will set your bindings to default and remove all the group tags you currently have. If you input the snippet directly in the console, the alias will be invalid once you quit the game process. You may need to input

bind w +forward; bind a +moveleft; bind d +moveright; bind s +back; cl_clanid 0

in the console next time.

Don't Want to Be Defined Forever? A Better Implementation

I understand the former implementation that writing the snippet down to your 'autoexec.cfg' cannot satisfy all the needs. Since an 'autoexec.cfg' file will be executed every time you start the game process, it will always overwrite the group tag you set before. I wish my script brings you joys not constraints, so here is an updated implemetation:

  1. Remove the snippet in your 'autoexec.cfg' file;
  2. Create an empty file under the config directory, name it as you wish. For example, 'meow.cfg';
  3. Copy and paste the snippet to the new file;
  4. To enable it, open the console (press `~`. If not working, go to the game settings and turn it on), input `exec meow` (the same as the aforementioned config filename, with or with no suffix, case-insensitive);
  5. To disable it, open the console, input `clear_clantag`.

You can define more aliases in order to quick switch to other group tags. Here is a template:

alias "foo" "cl_clanid 43407204" alias "bar" "cl_clanid 43407207" alias "baz" "cl_clanid 43407210"

Коментарів: 1
M1racle 13 січ. 2023 о 20:14 
ji ni tai miao
0
У ГРІ
8
У МЕРЕЖІ
6 У ЧАТІ
Увійти до чату
Заснована
29 грудня 2022 р.
ПОВ’ЯЗАНІ ІГРИ