VasVadum

Steam Random Add Requests process!

Nov 7th, 2015
1,097
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // I get a lot of random add requests on steam.  :P  So here's essentially what my process is!
  2.  
  3. if (randomAddRequestAge < 18) {
  4.     rejectAdd();
  5. } else {
  6.     if (theyCommentedOnAndReadProfile == True) {
  7.         compareFriendsListAndGroups();
  8.         if ((groupsInCommon > 3) || (friendsInCommon > 3)) {
  9.             considerAddingFriend();
  10.             warnUserAboutTalkativity();
  11.                 if (theyCheatedRecently) {
  12.                     rejectAdd();
  13.                 }
  14.         } else {
  15.             considerRejectAdd();
  16.         }
  17.     } else {
  18.         rejectAdd();
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment