All Projects â†’ balthazar â†’ Csgo Float

balthazar / Csgo Float

💎 Retrieve CS:GO float values in JavaScript

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Csgo Float

TeamGames
Sourcemod plugin providing team based games for prisoners and some useful things for wardens.
Stars: ✭ 16 (-56.76%)
Mutual labels:  games, counter-strike, csgo
Csgo Practice Mode
CS:GO Sourcemod plugin for private team/individual practice servers
Stars: ✭ 263 (+610.81%)
Mutual labels:  csgo, counter-strike
get5-web
An unsupported, proof-of-concept webpanel for servers using the get5 CS:GO server plugin. Please don't use it.
Stars: ✭ 97 (+162.16%)
Mutual labels:  counter-strike, csgo
Demofile
Node.js library for parsing Counter-Strike: Global Offensive demo files
Stars: ✭ 305 (+724.32%)
Mutual labels:  csgo, counter-strike
Java-Memory-Manipulation
User friendly, Garbage-free, and cross-platform process, module and memory interfacing via the power of Java
Stars: ✭ 51 (+37.84%)
Mutual labels:  counter-strike, csgo
SteamDepotDownloaderGUI
A simple GUI tool based on DepotDownloader for downloading Steam depots.
Stars: ✭ 26 (-29.73%)
Mutual labels:  games, csgo
Demoinfocs Golang
High performance CS:GO demo parser for Go (demoinfo)
Stars: ✭ 288 (+678.38%)
Mutual labels:  csgo, counter-strike
discord-10man
Discord bot for CS:GO Scrims and Pugs
Stars: ✭ 34 (-8.11%)
Mutual labels:  counter-strike, csgo
Deadcell Csgo
Full source to the CS:GO cheat
Stars: ✭ 339 (+816.22%)
Mutual labels:  csgo, counter-strike
Node Csgo
A node-steam plugin for Counter-Strike: Global Offensive.
Stars: ✭ 367 (+891.89%)
Mutual labels:  csgo, counter-strike
Get5
CS:GO Sourcemod plugin for competitive matches/scrims
Stars: ✭ 390 (+954.05%)
Mutual labels:  csgo, counter-strike
Charlatano
Proves JVM cheats are viable on native games, and demonstrates the longevity against anti-cheat signature detection systems
Stars: ✭ 599 (+1518.92%)
Mutual labels:  csgo, counter-strike
CSGO-Translator
Simple C# CSGO chat translator
Stars: ✭ 35 (-5.41%)
Mutual labels:  counter-strike, csgo
csgo richpresence
Discord Rich Presence support for Counter-Strike: Global Offensive!
Stars: ✭ 16 (-56.76%)
Mutual labels:  counter-strike, csgo
RatPoison
Latest Ver: 1.7; Default Menu Key is F1; Charlatano's Successor; dn
Stars: ✭ 302 (+716.22%)
Mutual labels:  counter-strike, csgo
Csgo Retakes
CS:GO Sourcemod plugin for a site-retake gamemode
Stars: ✭ 272 (+635.14%)
Mutual labels:  csgo, counter-strike
sourcepawn-navmesh
SourcePawn .NAV file reader.
Stars: ✭ 25 (-32.43%)
Mutual labels:  counter-strike, csgo
csgo-cli
CS:GO Console shows your user account, stats and latest matches. It also uploads demo sharecodes to csgostats.gg.
Stars: ✭ 31 (-16.22%)
Mutual labels:  counter-strike, csgo
Csgo Pug Setup
CS:GO Sourcemod plugin for setting up private pug/10man games
Stars: ✭ 330 (+791.89%)
Mutual labels:  csgo, counter-strike
Csgo Server Launcher
Counter-Strike Global Offensive Dedicated Server Launcher
Stars: ✭ 447 (+1108.11%)
Mutual labels:  csgo, counter-strike

csgo-float

Retrieve CS:GO float values in JavaScript

npm i -S csgo-float

Usage

Only one request can be done at a time by each client. You'll have to wait for the first request to be processed before sending another one.

Client
new FloatClient(clientAuth, debug)

clientAuth {Object} SteamUser credentials to login / SteamClient

debug {Boolean} Print some useful informations

// Init a client using a credentials object
const client = new FloatClient({
  account_name: 'yeah',
  password: 'this-is',
  auth_code: 'definitely',
  sha_sentryfile: 'right'
}, true)

// Or by passing an existing SteamClient instance
// that should be connected and logged.
const steamClient = new SteamClient()
const client = new FloatClient(steamClient)
Methods
client.requestFloat(url)

Returns a Promise.

Where url is a string formatted like S76561198190349706A4757476613D16467978012840927110.

client.requestFloat('S76561198190349706A4757476613D16467978012840927110')
  .then(floatValue => console.log(floatValue))
  .catch(err => console.log(err))
Events

ready Emitted once the client is ready to receive float requests

sentry The user is authenticated and the account sentry is sent, should be saved somewhere

error Once an error is triggered

Thanks

This would not exists without the help of @Twewki.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].