Advertisement
arabtion

Untitled

Dec 9th, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function proRanking($user, $type){
  2. if(isBot($user)){
  3. return proRank($type, botRankTitle(), botRankIcon());
  4. }
  5. else {
  6. switch($user['user_rank']){
  7. case 0:
  8. case 1:
  9. case 2:
  10. case 7:
  11. case 8:
  12. case 9:
  13. case 10:
  14. case 11:
  15.  
  16.  
  17. return proRank($type, rankTitle($user['user_rank']), rankIcon($user['user_rank']));
  18. default:
  19. return '';
  20. }
  21. }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement