Guest User

Untitled

a guest
Oct 20th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. stock OrgNome(orgid, Nome[], len)
  2. {
  3. if(orgid == 0) return format(Nome, len, "Ninguem", 0);
  4. if(orgid == 1) return format(Nome, len, "Policia Militar (LS)");
  5. if(orgid == 2) return format(Nome, len, "ROTA");
  6. if(orgid == 3) return format(Nome, len, "Policia Militar (LV)");
  7. if(orgid == 4) return format(Nome, len, "Policia Civil");
  8. if(orgid == 5) return format(Nome, len, "Exercito");
  9. if(orgid == 6) return format(Nome, len, "Alqaeda");
  10. if(orgid == 7) return format(Nome, len, "F.A.R.C");
  11. if(orgid == 8) return format(Nome, len, "Los Aztecas");
  12. if(orgid == 9) return format(Nome, len, "Groove Street");
  13. if(orgid == 10) return format(Nome, len, "Los Vagos");
  14. if(orgid == 11) return format(Nome, len, "Ballas");
  15. if(orgid == 12) return format(Nome, len, "Os Maiorais");
  16. if(orgid == 13) return format(Nome, len, "S.A.M.U (LS)");
  17. if(orgid == 14) return format(Nome, len, "Sons Of Anarchy");
  18. if(orgid == 15) return format(Nome, len, "Los Santos News");
  19. if(orgid == 16) return format(Nome, len, "Angels Of Death");
  20. if(orgid == 17) return format(Nome, len, "San Andreas News");
  21. if(orgid == 18) return format(Nome, len, "Agencia dos Assassinos");
  22. if(orgid == 19) return format(Nome, len, "Policia Federal");
  23. if(orgid == 20) return format(Nome, len, "Instrutor");
  24. if(orgid == 21) return format(Nome, len, "Taxista (LS)");
  25. if(orgid == 22) return format(Nome, len, "Taxista (LV)");
  26. if(orgid == 23) return format(Nome, len, "Familia Stracci");
  27. if(orgid == 24) return format(Nome, len, "Familia Barzini");
  28. if(orgid == 25) return format(Nome, len, "Familia Tattaglias");
  29. if(orgid == 26) return format(Nome, len, "Familia Cuneo");
  30. if(orgid == 27) return format(Nome, len, "Familia Corleone");
  31. if(orgid == 28) return format(Nome, len, "Camara Municipal (LS)");
  32. if(orgid == 29) return format(Nome, len, "Camara Municipal (LV)");
  33. if(orgid == 30) return format(Nome, len, "Governo San Andreas");
  34. return format(Nome, len, "Ninguem", 0);
  35. }
Add Comment
Please, Sign In to add comment