Skip to content

Streams live CSGO scorebot data in a socket-io chat window.

Notifications You must be signed in to change notification settings

nobodhi/csgo-livescore

Repository files navigation

HLTV Livescore

Contents

Introduction

This is a wrapper for andrewda's hltv-scorebot, v. 1.0.0.

Real time logs from the CSGO server are returned to the browser via a scorebot.io-client.

Getting Started

Install with npm:

$ git clone path-to-this-repo
$ npm install

Usage

node index.js [listid]
node serverParent.js  

Methods

Constructor([options])

  • options - An optional object containing some of the following options
    • listid - The game's listid
    • url - The URL to listen on. Defaults to http://scorebot2.hltv.org
    • port - The port to listen on. Defaults to 10022

Constructs a new Livescore. You will be automatically connected to the HLTV scorebot server. The game with the specified listid will be automatically started if provided. If not provided, you must specify them using them using the start() method.

start([options][, callback])

  • options - An optional object containing some of the following options
    • listid - The game's listid
  • callback - An optional callback.

Start the game with the specified listid. If provided in the Constructor, the listid is not required. An error will be thrown if you are not connected to the HLTV scorebot server before calling this method.

getPlayers(callback)

  • callback - Required. Called with an object of players
    • players - An object containing all the players connected to the server, with their name as the key

Retrieve all players connected to the server.

getTeams(callback)

  • callback - Required. Called with an object of players
    • teams - An object containing both teams connected to the server

Retrieve both teams connected to the server.

setTime(time)

  • time - Required. The time to set the scoreboard to (in seconds)

Set the scoreboard to a new time.

getTime(callback)

  • callback - Required. Called with the remaining time
    • time - The time remaining in seconds as displayed on the scoreboard

Retrieve the time remaining.

Events

Events emit an object containing the parameters listed under each event.

raw

Uses socket.io-wildcard to emit everything coming from HLTV server.

connected

Emitted when we successfully connect to the HLTV Socket.io server.

started

Emitted immediately before the first scoreboard event is emitted.

log

  • log - The log given to us by HLTV since the last log was emitted

Emitted whenever HLTV feels like giving us logs (after kills, round events, etc).

time

  • seconds - The time displayed on the timer in seconds

Emitted every time the timer on the scoreboard is updated.

scoreboard

  • teams - An object containing the two teams' objects
  • map - The current map
  • bombPlanted - true if the bomb is planted
  • currentRound - The current round number

Emitted whenever HLTV sends us a scoreboard update. The scoreboard may not be any different from the last update.

kill

  • killer - The player object of the killer
  • victim - The player object of the victim
  • weapon - The weapon used
  • headshot - true if the kill was a headshot

Emitted after every kill.

suicide

  • player - The player object of the suicider

Emitted after a player commits suicide.

bombPlanted

  • player - The player object of the bomb planter

Emitted when the bomb is planted.

bombDefused

  • player - The player object of the bomb defuser

Emitted when the bomb is defused.

roundStart

  • round - The round number.

Emitted at the start of every round.

roundEnd

  • teams - The list of teams
  • winner - The team that won
  • winType - How the team won
  • knifeRound - If we think the round was a knife round (>=5 knife kills)

Emitted at the end of every round.

playerJoin

  • playerName - The player's name

Emitted when a player joins the server.

playerQuit

  • player - The player object of the player who quit

Emitted when a player leaves the server.

mapChange

  • map - The new map

Emitted when the map is changed.

restart

Emitted when the score is restarted

Classes

Player

  • steamid - A SteamID object
  • hltvid - The player's HLTV id
  • name - The player's username
  • alive - true if the player is alive
  • money - The player's in-game money
  • rating - The player's HLTV rating for this game
  • kills - The player's total kills
  • assists - The player's total assists
  • deaths - The player's total deaths
  • team - The player's Team class

Example:

Player {
    steamid: [Object],
    hltvid: 11654,
    name: 'almazer1',
    alive: true,
    money: 12300,
    rating: 1.16,
    kills: 19,
    assists: 4,
    deaths: 17,
    team: [Object]
}

Team

  • id - The team's HLTV id
  • name - The team's name
  • score - The team's score
  • side - The team's side (ESide)
  • players - An array of the team's Player classes
  • history - The team's round history

Example:

Team {
    id: 6921,
    name: 'Vesuvius',
    score: 16,
    side: 1,
    players: [Array],
    history: [Object]
}

Round

  • type - How the round ended for this team (ERoundType)
  • round - The round number

Example:

Round {
    type: 6
    round: 12
}

Enums

There are numerous enums available for your use. All enums are located in the /resources/ directory.

EOption

Primarily for internal use. Specifies options about the module.

ERoundType

Specifies how a team ended the round.

ESide

Specifies team constants.

About

Streams live CSGO scorebot data in a socket-io chat window.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published