ScorpionOfWar Posted April 19, 2017 Report Posted April 19, 2017 (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 April 19, 2017 by ScorpionOfWar Quote
ScorpionOfWar Posted April 19, 2017 Author Report Posted April 19, 2017 (edited) Ok the error is back Edited April 20, 2017 by ScorpionOfWar Quote
ScorpionOfWar Posted April 20, 2017 Author Report Posted April 20, 2017 (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 April 20, 2017 by ScorpionOfWar Quote
Recommended Posts
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.