Skip to content

Simple addon for MSMC that inboxes valid mails for emails like Steam, Roblox, Discord and more.

Notifications You must be signed in to change notification settings

PgerTools/MSMC-Inboxer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MSMC-Inboxer

Simple addon for MSMC that inboxes valid mails for emails like Steam, Roblox, Discord and more.

https://github.com/MachineKillin/MSMC

msmc is a minecraft account checker that checks through microsoft xbox login instead of the older mojang login. it supports http(s), socks4, socks5 proxies but they must be pretty decent because microsofts authentication is very protective. it also uses tor proxies. it auto installs tor for you if selected.

Current Checks

  • Roblox
  • Steam
  • Discord (Estimated Year)
  • Reddit (Estimated Year)
  • Epic Games
  • Riot Games
  • Rockstar Games

More Checks can be added by checking out Custom Checks.md!

Installation (READ THIS)

Adding this to MSMC is very simple.

Video:

msrdc_WPls2z6DtA.mp4

Step By Step:

  1. Go to the root of MSMC and create a new folder called addons then download and place inbox.py there.

    Make sure to also download and place the Inbox folder.

  2. Now edit MSMC.py and add the following import.

    from addons.inbox import inboxmail
  3. Search for the validmail function. (You can do this using Ctrl+F)

  4. Add the end of this function add the following code.

    inboxmail(email, password)
  5. Now all you have to do is edit Inbox/config.json!

    You can pick to enable/disable each check and edit the discord webhook there.

Adding Custom Checks

I made adding your own checks extremely easy!

Simply edit Inbox/custom_checks.json and create a new check.

Note: Each check } must end in an ,. EXCEPT: the last one must end with just the }.

Here is an example custom check for PayPal, CashApp and Venmo:

{
    "PayPal": {
        "email": "service@paypal.com"
    },
    "CashApp": {
        "email": "no-reply@cash.app"
    },
    "Venmo": {
        "email": "venmo@venmo.com"
    }
}

A lot more custom configs can be found in Custom Configs.md!