Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.

CSGO-Analysis/csgo-data

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSGO Data

Data for Counter Strike: Global Offensive

For teams:

  • Logo
  • Steam "id"
  • CSGOLounge "id"
  • GosuGamers name and id
  • An unique identifier

How do I add a team?

There are three different ways to help out and add a missing team.

#1 Create a pull request

This is the best way because it's by far the fastest. If you can, please do this.

#2 Create an issue and link to the resources needed

If you don't know how to create a pull request, please open an issue and attach the files need.

Generally this is the information about the team and a version of the logo in as high a resolution as possible.

#3 Create an issue

If you can't find any resources on the team, just open an issue and we'll look into adding it ASAP.

How do I get team logos in a different size?

Glad you asked!

There is a supersimple node app that does that for you.

  1. If you haven't used NodeJS before you need to install that first
  2. Go to the directory where you have cloned the repository and run npm install from the command line
  3. Run node teamlogos.js and it should generate what you need.

Who are using this?

CSGO Bettingstats

A site that consolidates betting stats for upcoming matches

CSGO Bettingstats

Team Logo Manager

A SourceMod plugin that let's you select both logo and team-name easily on your own server.

Team Logo Manager

Miscellaneous

I want to host this and force downloads the same way you are doing!

Of course you want! This is the config we use on csgo-data.com on nginx

location ~* ^/teams/(.*\.)(cfg|zip|png)$ {
    add_header Content-Disposition "attachment; filename=$1$2";
    default_type application/octet-stream;
}

If you use apache, this is a .htaccess file that goes in the '/teams/' directory

<FilesMatch ".(cfg|zip|png)$">
    ForceType application/octet-stream
    Header set Content-Disposition attachment
</FilesMatch>

Legal

All logos and trademarks are the property of their respective owners!

If you represent the entity that has the rights over a logo and you want, for whatever reason, that logo removed from this project, open an issue requesting its takedown and we will remove it as soon as possible.

Everything else is licensed under MIT.

About

Data for Counter Strike: Global Offensive

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 33.2%
  • CSS 29.4%
  • HTML 26.8%
  • PHP 10.6%