Advertisement
Guest User

Untitled

a guest
Jan 5th, 2019
4,138
1
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 1 0
  1. Worldographer Crack 1.0
  2. https://worldographer.com/download/
  3.  
  4. How to use:
  5. go to Pyfiddle.io
  6. copy and paste everything below, starting at "import random".
  7. if your generated code doesnt work or throws an error, just run it again.
  8.  
  9.  
  10. import random
  11. half1=""
  12. half2=""
  13. while sum(c.isalpha() for c in half1[1:]) + sum(c.isalpha() for c in half2[1:]) < 2:
  14. seed = random.randint(11,35)
  15. b = random.randint(2, seed)
  16. a = random.randint(1, b - 1)
  17. c = random.randint(b + 1, seed)
  18. list = [a,b-a,c-b,seed-c]
  19. half1 = ""
  20. for x in list:
  21. if x < 10:
  22. half1+=str(x)
  23. else:
  24. half1+=chr(x+87)
  25. half1 = chr(seed+87)+half1
  26.  
  27. seed = random.randint(11,35)
  28. b = random.randint(2, seed)
  29. a = random.randint(1, b - 1)
  30. c = random.randint(b + 1, seed)
  31. list = [a,b-a,c-b,seed-c]
  32. half2 = ""
  33. for x in list:
  34. if x < 10:
  35. half2+=str(x)
  36. else:
  37. half2+=chr(x+87)
  38. half2 = chr(seed+87)+half2
  39.  
  40. print(half1+half2)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement