Guest User

Untitled

a guest
Feb 1st, 2016
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 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 = 4 #16 is the item id of Arctic White(color is optional)
  12. save_file = "New Text Document.txt" #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("CP IS UNDER ATTACK")
  23. Penguin.rest(4)
  24. Penguin.chat("WE NEED YOUR HELP")
  25. Penguin.rest(4)
  26. Penguin.chat("TO PROTECT CP")
  27. Penguin.rest(4)
  28. Penguin.chat("LOOK FOR THE")
  29. Penguin.rest(4)
  30. Penguin.chat("NIGHT REBELLION CP")
  31. Penguin.rest(4)
  32. Penguin.chat("USE THE FINDING APP")
  33. Penguin.rest(4)
  34. Penguin.chat("Become a Rebel and Fight The evil")
  35. Penguin.rest(4)
  36. Penguin.chat("click on the first thing")
  37. Penguin.rest(4)
  38. Penguin.chat("FIND FRIENDS")
  39. Penguin.rest(4)
  40. Penguin.chat("AND INVITE FRIENDS TOO")
  41. Penguin.rest(4)
  42. Penguin.chat("SEE YOU THERE!")
  43. Penguin.rest(4)
  44. Penguin.chat("NR GIVES MEMBER SHIPS")
  45. Penguin.rest(4)
  46. end
Add Comment
Please, Sign In to add comment