Jump to content
McKay Development

Recommended Posts

Posted (edited)

sclient.on('groupRelationship', (steamid, relationship) => {
  groupSteamID = steamid;
  if(relationship === 2) {
    dbot.channels.get('302817074269519873').sendMessage('You have been invited to this group: "' + groupSteamID + '" \n If you want to accept the group request, reply with ``!accept group``. \n And if you want to decline it, reply with ``!decline group``.');
    console.log('New group invite to this group: "' + groupSteamID + '"');
  }
});
if (command === "accept-group") {
     sclient.accept(groupSteamID) = true;
    dbot.channels.get('302817074269519873').sendMessage("Accepted group invite: " + friendrqst);
    console.log("Accepted group invite: " + friendrqst);
  }

  if (command === "decline-group") {
    sclient.accept(groupSteamID) = false;
    dbot.channels.get('302817074269519873').sendMessage("Declined group invite: " + groupSteamID);
    console.log("Declined group invite: " + groupSteamID);
  }

I am using the node-steam module and the discord.js module just for you information.

 

 sclient.accept(groupSteamID) is not a function is my error when I try to accept/decline the invite

Edited by ScorpionOfWar
Posted (edited)

The error is back with the following code:

if (command === "accept") {
    if (argsresult === "group") {
      if (groupSteamID === "") {
        message.channel.sendMessage("No group invite to accept!");
        return;
      } else {
        sclient.respondToGroupInvite.accept(groupSteamID) = true;
        message.channel.sendMessage("Accepted group invite: " + friendrqst);
        console.log("Accepted group invite: " + friendrqst);
      }
    }
  }

  if (command === "decline") {
    if (argsresult === "group") {
      if (groupSteamID === "") {
        message.channel.sendMessage("No group invite to decline!");
        return; 
      } else {
        sclient.accept(groupSteamID) = false;
        message.channel.sendMessage("Declined group invite: " + groupSteamID);
        console.log("Declined group invite: " + groupSteamID);
      }
    }
  }

I tried the accept and decline command(sclient.accept and sclient.respondToGroupInvite.accept) Both give me the error that its no function

sclient.on('groupRelationship', (steamid, relationship) => {
  groupSteamID = steamid;
  
  if(relationship === 2) {
    dbot.channels.get('302817074269519873').sendMessage('You have been invited to this group: "' + groupSteamID + '" \n If you want to accept the group request, reply with ``!accept group``. \n And if you want to decline it, reply with ``!decline group``.');
    console.log('New group invite to this group: "' + groupSteamID + '"');

  }
});
Edited by ScorpionOfWar

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...