Jump to content
McKay Development

Can we send trading card with specific appID?


Recommended Posts

I want to create bot with automatic sending spesific trading card with spesific input

//the conversation
A: !badges 570 2
BOT: Sending 2sets of Dota 2
A: !badges 440 5
BOT: Sending 5sets of Team Fortress 2
//my spesific input
...
client.on("friendMessage", function(steamID, message) {
	var msg;
	if (steamID == account.owner){
		...
		else if (msg = message.match(/^!badges(\d+) (\d+))) {
			var appID = msg[1];
			var count = msg[2];
			client.chatMessage(steamID, "...");
		}
	}
	else{
		...
	}
...

Can anyone help me to get the code?

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...