Advertisement
Guest User

Untitled

a guest
Feb 19th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.77 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. #define MAX_FRAKTIONEN 2
  4. #define MAX_SKINFORFRAKTION 5
  5.  
  6. #define GRAU 0x969696FF
  7.  
  8. new Fraktion[MAX_PLAYERS];//Variable in der deine Fraktion gespeichert wird
  9. new FrakSkin[MAX_FRAKTIONEN/*Anzahl der Fraktionen]*/][MAX_SKINFORFRAKTION/*Anzahl der Maximalen Skins pro Fraktion*/]=
  10. {
  11.     {1,23,34,56,78},//Hier befinden sich die Skins für die Fraktionsid 0
  12.     {54,128,35,97,14}//und hier für ID 1
  13. };
  14.  
  15.  
  16. public OnGameModeInit()
  17. {
  18.     // Don't use these lines if it's a filterscript
  19.     SetGameModeText("Blank Script");
  20.     for(new i;i<MAX_FRAKTIONEN;i++)
  21.     {
  22.         for(new s;s<MAX_SKINFORFRAKTION;s++)
  23.         {
  24.             //Hier erstellen wir die Klassen, damit wir später dann die Fraktion zuteilen können.
  25.             AddPlayerClass(FrakSkin[i][s], 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);//Position anpassen!
  26.         }
  27.     }//Wir fügen die Skins dynamisch hinzu damit man sie auch auswählen kann
  28.     return 1;
  29. }
  30.  
  31.  
  32. public OnPlayerRequestClass(playerid, classid)
  33. {
  34.     SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
  35.     SetPlayerCameraPos(playerid, 1950.3783, 1343.1572, 15.3746);
  36.     SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
  37.     for(new i;i<MAX_FRAKTIONEN;i++)
  38.     {
  39.         if(classid>=i*MAX_SKINFORFRAKTION && classid<i*MAX_SKINFORFRAKTION+MAX_SKINFORFRAKTION)
  40.         {
  41.             Fraktion[playerid]=i;
  42.         }
  43.     }//Wir lesen aus welchen Skin von welcher Fraktion man gerade sieht und setzen die Variable
  44.     return 1;
  45. }
  46.  
  47. public OnPlayerDisconnect(playerid, reason)
  48. {
  49.     Fraktion[playerid]=0;//Variable wird resetet
  50.     return 1;
  51. }
  52.  
  53. public OnPlayerSpawn(playerid)
  54. {
  55.     new string[50];
  56.     format(string,sizeof(string),"Fraktion: %i",Fraktion[playerid]);
  57.     SendClientMessage(playerid,GRAU,string);
  58.     return 1;//Message zum beobachten Welche Fraktion man hat
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement