Advertisement
Guest User

sfeDAWEW

a guest
Mar 23rd, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 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 = "245675876" # 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 = 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'],"Blizzard")
  21. while true
  22. Penguin.chat("hello")
  23. Penguin.rest(5)
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement