GithubHelp home page GithubHelp logo

nieknijland / csgo-translator Goto Github PK

View Code? Open in Web Editor NEW
49.0 49.0 11.0 42.73 MB

Simple C# CSGO chat translator

C# 100.00%
counter-strike counter-strike-global-offensive counterstrike counterstrike-globaloffensive csgo csharp

csgo-translator's People

Contributors

kevvv avatar nieknijland avatar yawnston avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

csgo-translator's Issues

Other Src Games

I need help converting this to work with other source games, L4D2 to be exact.
This would help out greatly since theres no region lock on l4d2. I get a lot of spanish only speaking players and would love to understand / somewhat learn what theyre saying so it becomes memory to me when they say something common.

traditional Chinese 2-char abbreviation

I want to ask what is the 2-char abbreviation of traditional Chinese? Because it must be zh-tw or hk but it's not working and the language option only can type two letter.

users typing : will cause the text to be aligned incorrectly due to how you're splitting strings.

Users typing ":" would cause the string cleaning method you have to screw up the alignment. Replace the portion in your LogsController.cs at line 56 with this

foreach(string s in l.Split(new string[] { " : " }, 2, StringSplitOptions.None))
{
    if(name)
    {
        //removal of *DEAD* chat prefix
        if (s.Contains("*DEAD*"))
        {
            returnNames.Add(s.Substring(0, s.Length - 1).Substring(7));
        }
        else
        {
            returnNames.Add(s.Substring(0, s.Length - 1));
        }

        name = false;
    }
    else
    {
        returnMessages.Add(s);
    }
}

Principle of operation

Hello, i was searching ways to detect CS:GO chat messages and work with them like string. Finally, i got on the page. Can you explain deeply how does detection work in your code?

-netconport not working

If I set -netconport as parameter, the match search ingame does not work anymore. it says "matchmaking unavailable, because vac could not verify game files" or so.

is there another way? is the setting blacklisted maybe?

Timeout too fast

Hi, can u build a proxy switcher so we don't get timeout after 2 minutes of use? there are some really raging kids in cs that write too much and too fast.

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.