Results 1 to 3 of 3
  1. #1
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy

    Muledump Mass Creator List

    Code:
    package muledumpmasscreator;
    
    import java****.FileInputStream;
    import java****.FileNotFoundException;
    import java********Exception;
    import java****.InputStream;
    import java.util.Properties;
    import java.util.Scanner;
    
    public class MDCreator {
    	
    	public static String emailPrefix = "";
    	public static String emailBody = "";
    	public static String emailPassword = "";
    	public static double numberOfMules;
    	public static double currentMule = 0;
    	
    	public static void main(String[] args) {
    		
    		Scanner in = new Scanner(System.in);
    		
    		System.out.print("Welcome. Enter Y.");
    		if (in.nextLine().equals("Y")) {
    			System.out.println("Making from account.properties.");
    			
    			System.out.print("Number of mules to make :");
    			
    			currentMule = in.nextDouble();
    			
    			fromAccountProperties();
    		} else {
    			System.out.println("Making from input.");
    			
    			fromValue();
    		}
    		
    	}
    	
    	private static void fromAccountProperties() {
    		Properties p = new Properties();
    		
    		InputStream in;
    		try {
    			in = new FileInputStream("account.properties");
    			p.load(in);
    			in.close();
    			
    			emailPrefix = p.getProperty("emailPrefix");
    			emailBody = p.getProperty("emailBody");
    			emailPassword = p.getProperty("emailPassword");
    			
    			makeMD();
    		} catch (FileNotFoundException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		} catch (IOException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		}
    		
    		for (int i = 0; i < numberOfMules; i++) {
    			currentMule++;
    			System.out.println("'" + emailPrefix + currentMule + emailBody + "', '" + emailPassword + "',");
    		}
    		
    	}
    	
    	private static void fromValue() {
    		
    		Scanner in = new Scanner(System.in);
    		
    		System.out.print("Enter email prefix. ");
    		emailPrefix = in.nextLine();
    
    		System.out.print("Enter the rest. ");
    		emailBody = in.nextLine();
    
    		System.out.print("Number of emails : ");
    		numberOfMules = in.nextDouble();
    		
    		System.out.print("Enter the password. ");
    		emailPassword = in.nextLine();
    		
    		in.nextLine();
    		
    		in.close();
    		
    		makeMD();
    		
    	}
    	
    	private static void makeMD() {
    		
    		for (int i = 0; i < numberOfMules; i++) {
    			currentMule++;
    			System.out.println("'" + emailPrefix + (int) currentMule + emailBody + "': '" + emailPassword + "',");
    		}
    		
    	}
    	
    }
    It creates a list of emails with set prefix#@domain.com
    Alde is Alde is

  2. The Following 2 Users Say Thank You to Alde. For This Useful Post:

    eegs (11-30-2014),marceliino (11-27-2014)

  3. #2
    kola95's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    128
    Reputation
    10
    Thanks
    13
    Mmm. Lol. Explain the purpose of this "thing", if it cant make a mule its useless.
    10-15 chars Multibox-squad, custom sync.

  4. #3
    Threadstarter
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy
    Quote Originally Posted by kola95 View Post
    Mmm. Lol. Explain the purpose of this "thing", if it cant make a mule its useless.
    Mmm. Lol. You see, it's aimed at people who can read code.

    If you really wanted to know, it's a software to make a list of account for Muledump, as said in the title.
    Alde is Alde is

Similar Threads

  1. Mass account creator
    By PhillipMe in forum Combat Arms Mod Help
    Replies: 11
    Last Post: 09-21-2014, 04:14 PM
  2. [Help Request] Mass mule creator?
    By harsh1412 in forum Realm of the Mad God Help & Requests
    Replies: 2
    Last Post: 05-10-2014, 04:29 PM
  3. Replies: 40
    Last Post: 02-18-2014, 05:37 PM
  4. [WTB] Instagram Mass Account Creator Program
    By Astro. in forum Buying Accounts/Keys/Items
    Replies: 7
    Last Post: 05-28-2013, 05:41 PM
  5. Replies: 23
    Last Post: 01-07-2013, 06:51 AM