Advertisement
Guest User

Untitled

a guest
Feb 10th, 2015
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.64 KB | None | 0 0
  1. stock GetFraktionName(frakidx)
  2. {
  3.     new string[50];
  4.     switch(frakidx)
  5.     {
  6.         case 0: string = "Zivilist";
  7.         case 1: string = "Los Santos Police Department";
  8.         case 2: string = "Russen Mafia";
  9.         case 3: string = "San Andreas Medic Department";
  10.         case 4: string = "Grove Street Families";
  11.     }
  12.     return string;
  13. }
  14.  
  15. stock GetPlayerFraktionName(playerid)
  16. {
  17.     new string[50];
  18.     switch(Spieler[playerid][pFraktion])
  19.     {
  20.         case 0: string = "Zivilist";
  21.         case 1: string = "Los Santos Police Department";
  22.         case 2: string = "Russen Mafia";
  23.         case 3: string = "San Andreas Medic Department";
  24.         case 4: string = "Grove Street Families";
  25.     }
  26.     return string;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement