Jump to content
McKay Development

Search the Community

Showing results for tags 'csgo'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • Releases & Updates
  • Help & Support
    • General
    • Guides
    • node-steam-user
    • node-steamcommunity
    • node-steam-tradeoffer-manager
    • node-steam-session

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Location


Interests

Found 9 results

  1. Is there a way to get information about score for each team and account side in the current competitive match? Or maybe there are some other tools for this?
  2. import { CDataGCCStrike15_v2_MatchInfo, CMsgGCCStrike15_v2_MatchList, CMsgGCCStrike15_v2_MatchListRequestFullGameInfo, CMsgGCCStrike15_v2_MatchListRequestRecentUserGames, } from "csgo-protobuf"; import SteamUser from "steam-user"; const payload = new CMsgGCCStrike15_v2_MatchListRequestFullGameInfo({ matchid: 3679454899302563903n, outcomeid: 3679460199292207251n, token: 16014, }); const user = new SteamUser(); user.logOn({ accountName: "forum_win", password: "" }); user.on("debug", msg => { console.log("DEBUG", msg); }); user.on("error", msg => { console.log("error", msg); }); user.on("disconnected", (e, m) => console.log("DISCONNECTED", e, m)); user.on("loggedOn", () => { //https://github.com/SteamDatabase/Protobufs/blob/master/csgo/cstrike15_gcmessages.proto#L41 //https://steamdb.info/app/730/info/ user.sendToGC(730, 9147, {}, Buffer.from(payload.toBinary())); }); user.on("receivedFromGC", (appid, msgType, payload) => { console.log(`Received message ${msgType} from GC ${appid} with ${payload.length} bytes`); }); user.on("appQuit", () => { console.log(`quit!!!`); }); Following logic found: https://github.com/akiver/boiler-writter/blob/main/boiler-writter/main.cpp https://github.com/akiver/boiler-writter/blob/main/boiler-writter/CSGOMatchList.cpp https://github.com/akiver/boiler-writter/blob/main/boiler-writter/CSGOClient.cpp Trying to leverage steam-user to call protobuf GC, but never receinving receivedFromGC event. Using the @types as well. Tried stepping through and have had no luck. Wondering if there's just a miss in the implementation. Tried encoding the protobuf payload using a few different npm libs such as protobufjs and copying proto from: https://github.com/SteamDatabase/Protobufs/blob/master/csgo/cstrike15_gcmessages.proto#L41 Any direction would be greatly appreciated. Thanks!pre widget
  3. Hey, im pretty new to JS and i don't know on how to get the accountData from a specific user. i know that this works, but it just gets me the accountData of my logged in account. csgo.on('accountData', (accountData) => { console.log(accountData); console.log(accountData.player_level); }); How would i make a function to call the accountData of a specific player? Like if someone writes the bot stats it gets the accountData from the player that requested it.
  4. hey i want to send commend spesific user with protobufs how can i do that can i get some help
  5. I am despairing right now. I dont know how to use the inspectItem() function. I made a small programm which gets an ingame-inspect-url but I dont want to use this, because its hard for me to get it. I got a market listing id, but dont know how to use it with the inspectItem() function. Or is there another way to get the float of a skin Btw how many Steam Api Calls can I make in one minute? I dont want to get a (temp) ban. Thanks in advance!
  6. I want to enter the account in any cs server and I want to get the ids of the people on the server or something. i have'nt idea about that how can i do it.
  7. I've been researching for the past 2-3 hours about generating in-game screenshots/images of CSGO items. (The type where you inspect them) The *only* thing I've found is a little paragraph under the title 'Console Commands' here: https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Economy_Items I'm looking to add an in-game screenshot feature to my website coming out soon. Services that offer this screenshotting feature that is generated in the website: - metjm.net - csgro.com - csgo.gallery - cs.money (They also offer a pretty sweet 3D option as well as shown here: https://3d.cs.money/?t=5&link=4pzIYq3) - opskins.com (Used to when they were still around) It seems very hush-hush online. I cannot find anything - no libraries - nothing about this sort of thing. Does doctormckay's library offer the ability to do this? Can I be pointed in the right direction to build my own? Thanks for taking the time to consider my question
  8. Hello i need for my project the Ticketcrc and the h_steampipe, i looked into the documentation, i thought i can do it with AuthTicketstatus but that does not seem to work at all. I get a ticket and thats it. I cant get any information about the encryptionKeyeither. For the next question, does anyone know where i get more informations to h_steam_pipe? Cause i cant find any. Thanks for your help guys. Have a great day!
  9. if i want make bot for csgo. do i have to have games on my steam account? or only my inventory? or what are the requirements of my account so that could be a bot?
×
×
  • Create New...