Advertisement
Guest User

Sand wants to buy a donut next week.

a guest
Jan 22nd, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.76 KB | None | 0 0
  1. require_relative 'Mercury/Core'
  2.  
  3. Penguin = Mercury.new()
  4.  
  5. name = "rand"           # SETTING the name to 'rand' or '' will
  6.                 ### make Mercury generate a random name for the account
  7. password = "complexpassword10"  # Make sure you have a secure password
  8. email = "activator"     # SETTING the email to activator makes MERCURY(email is optional)
  9.                 ### automatically activate your penguin using activator
  10.                 ### as an email will make generating noticeably slow
  11. color = 16          #16 is the item id of Arctic White(color is optional)
  12. save_file = "my_penguin_file"   #Save file is optional, it will log username:password to the file(this is optional)
  13.  
  14.  
  15.  
  16. # Now it loops while generating accounts.
  17. while true
  18.     new_penguin = Penguin.generatePenguin(name,password,email,color,save_file)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement