Advertisement
Guest User

daaaasd

a guest
Feb 29th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 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 = "oooooo" # Make sure you have a secure password
  8. email = "nma52188@euaqa.com"# 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 = 5 #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. # The data is put into this function
  17. new_penguin = Penguin.generatePenguin(name,password,email,color,save_file)
  18.  
  19. # Logging into the new Penguin
  20. Penguin.login(new_penguin['name'],new_penguin['pass'],"Beanie")
  21. while true
  22. Penguin.rest(5)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement