master77 Posted January 4, 2018 Report Posted January 4, 2018 Hello, I have a question, I don't know what is the event witch called when u send a invitation to a person, I would like just check if this person have been receive my invitation because Steam create a limitation of invitation and block the request when the MAX of invite per day when this MAX limite is reached. So, client.on('friendRelationship', function(steamID, relationship) { if(relationship == SteamUser.Steam.EFriendRelationship) { console.log(steamID + "Has receive my invitation"); } }); But, When I add a person, this event is not called. Thank's ! Quote
Dr. McKay Posted January 4, 2018 Report Posted January 4, 2018 You're comparing against the entire enum. You need to do SteamUser.EFriendRelationship.RequestInitiator. Quote
master77 Posted January 5, 2018 Author Report Posted January 5, 2018 (edited) Okay thank's, just another question. Imagine I can't send more invitation to people, Steam block the invitation How I can check if this "security" is disable ? Edited January 5, 2018 by master77 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.