Advertisement
Thelorgoreng

atankis

Oct 10th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. if cmd == "rank":
  2. if not args:
  3. if user.name in owner:
  4. room.message("ID : "+user.name+".<br/>You're rank 4 as <font color='#FF0000'><b>[OWNER]</b></font> ", True)
  5. elif user.name in admins:
  6. room.message("ID : "+user.name+".<br/>You'r rank 3 as <font color='#CC33CC'><b>[Admins]</b></font> ", True)
  7. elif user.name in mod:
  8. room.message("ID : "+user.name+".<br/>You're rank 2 as <font color='#00CCCC'><b>[Mods]</b></font> ",True)
  9. elif user.name in registered:
  10. room.message("ID : "+user.name+".<br/>You're rank 1 as <font color='#FF0000'><b>[Whitelist]</b></font> ",True)
  11. if args:
  12. if user.name in owners:
  13. room.message("ID : "+args.capitalize()+".<br/>You're rank 4 as <font color='#FF0000'><b>[OWNER]</b></font> ", True)
  14. elif user.name in admins:
  15. room.message("ID : "+args.capitalize()+".<br/>You're rank 3 as <font color='#CC33CC'><b>[Admins]</b></font> ", True)
  16. elif user.name in mod:
  17. room.message("ID : "+args.capitalize()+".<br/>You're rank 2 as <font color='#00CCCC'><b>[Mods]</b></font> ",True)
  18. elif user.name in registered:
  19. room.message("ID : "+args.capitalize()+".<br/>You're rank 1 as <font color='#FF0000'><b>[Whitelist]</b></font> ",True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement