Advertisement
rrixh

bypass xulari

Oct 5th, 2023 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.41 KB | None | 0 0
  1. import pyperclip
  2. # UNICODE IS ⁥
  3.  
  4. method = input("select method: ")
  5.  
  6. unicode = "⁥⁥⁥⁥"
  7.  
  8. if method == "1":
  9.     tab = {
  10.         "a": "а",
  11.         "c": "с",
  12.         "e": "е",
  13.         "j": "ј",
  14.         "l": "ӏ",
  15.         "s": "ѕ",
  16.         "h": "һ",
  17.         "v": "ν",
  18.         "o": "о",
  19.         "p": "р",
  20.         "x": "х",
  21.         "y": "у",
  22.         "A": "Α",
  23.         "B": "Β",
  24.         "C": "С",
  25.         "E": "Е",
  26.         "N": "Ν",
  27.         "I": "І",
  28.         "M": "М",
  29.         "O": "О",
  30.         "H": "Н",
  31.         "J": "Ј",
  32.         "K": "Κ",
  33.         "M": "Μ",
  34.         "N": "Ν",
  35.         "S": "Ѕ",
  36.         "T": "Τ",
  37.         "P": "Р",
  38.         "X": "Χ",
  39.         "Y": "Υ",
  40.         "Z": "Ζ"
  41.     }
  42. else:
  43.     tab = {
  44.         "a": "а" + "𐌑𝖔 ͜ ͣ ",
  45.         "c": "с" + "𐌑𝖔 ͜ ͣ ",
  46.         "e": "е" + "𐌑𝖔 ͜ ͣ ",
  47.         "j": "ј" + "𐌑𝖔 ͜ ͣ ",
  48.         "l": "ӏ" + "𐌑𝖔 ͜ ͣ ",
  49.         "h": "һ" + "𐌑𝖔 ͜ ͣ ",
  50.         "i": "і" + "𐌑𝖔 ͜ ͣ ",
  51.         "v": "ν" + "𐌑𝖔 ͜ ͣ ",
  52.         "o": "о" + "𐌑𝖔 ͜ ͣ ",
  53.         "p": "р" + "𐌑𝖔 ͜ ͣ ",
  54.         "x": "х" + "𐌑𝖔 ͜ ͣ ",
  55.         "y": "у" + "𐌑𝖔 ͜ ͣ ",
  56.         "s": "ѕ" + "𐌑𝖔 ͜ ͣ ",
  57.         "A": "Α" + "𐌑𝖔 ͜ ͣ ",
  58.         "B": "Β" + "𐌑𝖔 ͜ ͣ ",
  59.         "C": "С" + "𐌑𝖔 ͜ ͣ ",
  60.         "E": "Е" + "𐌑𝖔 ͜ ͣ ",
  61.         "N": "Ν" + "𐌑𝖔 ͜ ͣ ",
  62.         "I": "І" + "𐌑𝖔 ͜ ͣ ",
  63.         "M": "М" + "𐌑𝖔 ͜ ͣ ",
  64.         "O": "О" + "𐌑𝖔 ͜ ͣ ",
  65.         "H": "Н" + "𐌑𝖔 ͜ ͣ ",
  66.         "J": "Ј" + "𐌑𝖔 ͜ ͣ ",
  67.         "K": "Κ" + "𐌑𝖔 ͜ ͣ ",
  68.         "M": "Μ" + "𐌑𝖔 ͜ ͣ ",
  69.         "N": "Ν" + "𐌑𝖔 ͜ ͣ ",
  70.         "S": "Ѕ" + "𐌑𝖔 ͜ ͣ ",
  71.         "T": "Τ" + "𐌑𝖔 ͜ ͣ ",
  72.         "P": "Р" + "𐌑𝖔 ͜ ͣ ",
  73.         "X": "Χ" + "𐌑𝖔 ͜ ͣ ",
  74.         "Y": "Υ" + "𐌑𝖔 ͜ ͣ ",
  75.         "Z": "Ζ" + "𐌑𝖔 ͜ ͣ ",
  76.         " ": "  ",
  77.     }
  78.  
  79. while True:
  80.     string = list(input("enter to conv: "))
  81.  
  82.     convertedstring = ""
  83.  
  84.     for char in string:
  85.         convertedchar = tab.get(char, char)
  86.         convertedstring += convertedchar
  87.  
  88.     if method == "1":
  89.         endr = unicode + unicode.join(convertedstring)
  90.     else:
  91.         endr = "".join(convertedstring)
  92.  
  93.     print(endr)
  94.  
  95.     pyperclip.copy(endr)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement