Coder Social home page Coder Social logo

node-csgo-gsi-hue's Introduction

node-csgo-gsi

npm npm

Counter-Strike: Global Offensive Game State Integration for node.js.

Usage

Install gamestate_integration_node.cfg into your CS:GO cfg directory.

Example: C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg\gamestate_integration_node.cfg

This file will automatically be executed on client start. Look into the console to check if it has executed successfully. As per the documentation, the file name should start with gamestate_integration_ and ends with .cfg.

gamestate_integration_yourservicenamehere.cfg

The console should have an output like this the moment you open CS:GO

Loading Game State Integration: gamestate_integration_node.cfg

Installation

npm install node-csgo-gsi --save

or

yarn add node-csgo-gsi

const CSGOGSI = require("node-csgo-gsi");
let gsi = new CSGOGSI({ options });
gsi.on("EVENT_NAME", function("optional data") {
    // EVENT_NAME is the individual event name below. Look into the example/index.js for more information
});

Example

A sample script is in the example folder.

Options

  • port - Set the server port (default: 3000)
  • authToken - An array of authentication token to accept from client. You can have multiple tokens (default: [] - no authentication needed)
    • Example: Team 1 can have "token1". Team 2 can have "token2". Team1's sub team can have "token1sub" etc.

Events

all

  • Returns the full posted data (use this if you do not want to use the given events provided below)

Game

gameMap (returns String)

  • Returns current map.

gamePhase (returns String)

  • Returns current game state.
    • live
    • warmup

gameRounds (returns Integer)

  • Returns the current round number.
    • eg: 10

gameCTscore (returns Object)

  • Returns the current Counter Terrorist team's score.
      "score": int,
      "consecutive_round_losses": int,
      "timeouts_remaining": int,
      "matches_won_this_series": int

gameTscore (returns Object)

  • Returns the current Terrorist team's score.
      "score": int,
      "consecutive_round_losses": int,
      "timeouts_remaining": int,
      "matches_won_this_series": int

Round

roundPhase (returns String)

  • Returns the current round state.
    • live
    • freezetime
    • over

roundWinTeam (returns String)

  • Returns the latest round's winner.
    • CT
    • T

roundWins (returns Object)

  • Returns a key-value object of round number and reason Example
{
      "1": "ct_win_elimination",
      "2": "ct_win_time",
      "3": "ct_win_elimination",
      "4": "ct_win_time",
      "5": "t_win_bomb"
}

C4

bombState (returns String)

  • Returns C4 state.
    • planted
    • exploded
    • defused

bombTimeStart (returns Float)

  • Returns when C4 is planted.

bombTimeLeft (returns Float)

  • Returns planted C4 time left.

WARNING ⚠️

C4 timer (bombTimeLeft event) is not accurate. CS:GO does not return a real time update when the bomb is planted. It's just an estimation on the library's side. Thus, do just look for the bombState event instead of relying on the timer.

Todo

  • None for now. Open an issue!

Credits

License

The MIT License (MIT)

Copyright (c) 2021 Shaun

node-csgo-gsi-hue's People

Contributors

atiernan avatar czdorothye avatar shaunidiot avatar shaunlwm avatar xinayder avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.