Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. var AutoCreate = {
  2. // all the info that applies to every account here
  3. charName: this.RandomString(),
  4. charClass: "sorceress",
  5. expansion: true,
  6. ladder: true,
  7. hardcore: false,
  8. password: "password", // maybe even the psw is the same, if so don't need it below
  9.  
  10. "profilename1": {
  11. account: "blah",
  12. password: "password",
  13. realm: "uswest"
  14. },
  15.  
  16. "profilename2": {
  17. account: "blah",
  18. password: "password",
  19. realm: "uswest"
  20. },
  21.  
  22. "profilename3": {
  23. account: "blah",
  24. password: "password",
  25. realm: "uswest"
  26. }.
  27.  
  28. randomString: function () {
  29. //function that makes the string
  30. },
  31.  
  32. getInfo: function () {
  33. //function that matches the info with the profilename
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement