CSGO Game State Integration builder

CSGO Game State Integration configuration file builder and installer.

Docs

Documentation is available here.

Exemples

You can use one of the ready made components:

```rust use csgogsibuilder::{config::Config, Builder, Components};

fn main() { let mut configbuilder = Builder::withconfig(Config { name: String::from("mygsiconfigfile"), data: Components::ALL.into(), ..Default::default() }); configbuilder .build() .install("C:\Counter-Strike Global Offensive\csgo\cfg") .unwrap(); } ```

Or create your own set of components:

```rust use csgogsibuilder::{ config::{Config, Data}, Builder, Components, };

fn main() { let components: &[Components] = &[Components::Provider, Components::PlayerId]; let mut configbuilder = Builder::withconfig(Config { name: String::from("mygsiconfigfile"), data: Data::from(components), ..Default::default() }); configbuilder .build() .install("C:\Counter-Strike Global Offensive\csgo\cfg") .unwrap(); } ```

auto-install support

You can enable the auto_install feature to install automatically the config into CSGO's cfg folder:

```rust use csgogsibuilder::{config::Config, Builder, Components};

fn main() { let mut configbuilder = Builder::withconfig(Config { name: String::from("mygsiconfigfile"), data: Components::ALL.into(), ..Default::default() }); configbuilder.build().auto_install().unwrap(); } ```

Server and Payload

Check out csgo-gsi-payload if you want an example of how to create and use a rust server to get payloads with auto-completion.