Advertisement
Guest User

Leans Adminsystem

a guest
Jan 9th, 2013
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. // Leans Adminsystem.
  2.  
  3. #include <a_samp>
  4. #include <sscanf>
  5. #include <zcmd>
  6.  
  7.  
  8. #define LIGHTBLUE 0x33CCFFAA
  9. #define ORANGE 0xFF9900AA
  10. #define COLOR_BLUEPD 0x2641FEAA
  11. #define COLOR_GREEN 0x33AA33AA
  12. #define TEAM_LSPD 1
  13. #define COLOR_GREY 0xAFAFAFAA
  14. //#define TEAM_CIVILIAN 2
  15. #define TEAM_LSPD_COLOR 0x2641FEAA
  16. #define COLOR_CIVILIAN 0xFFFFFFAA
  17. #define COLOR_RED 0xFF0000FF
  18.  
  19.  
  20. new LeanDuty[MAX_PLAYERS];
  21. new LeanAdmin[MAX_PLAYERS];
  22.  
  23. #if defined FILTERSCRIPT
  24.  
  25.  
  26.  
  27. public OnFilterScriptInit()
  28. {
  29. print("\n--------------------------------------");
  30. print(" Blank Filterscript by your name here");
  31. print("--------------------------------------\n");
  32. return 1;
  33. }
  34.  
  35. public OnFilterScriptExit()
  36. {
  37. return 1;
  38. }
  39.  
  40. #else
  41.  
  42. main()
  43. {
  44. print("\n----------------------------------");
  45. print(" Blank Gamemode by your name here");
  46. print("----------------------------------\n");
  47. }
  48.  
  49. #endif
  50.  
  51. public OnGameModeInit()
  52. {
  53. // Don't use these lines if it's a filterscript
  54. SetGameModeText("Blank Script");
  55. AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
  56. return 1;
  57. }
  58.  
  59. public OnGameModeExit()
  60. {
  61. return 1;
  62. }
  63.  
  64.  
  65.  
  66.  
  67. CMD:gmx(playerid, params[])
  68. {
  69. GameModeExit();
  70. SendClientMessageToAll(COLOR_RED, "----SERVER RESTART----");
  71. return 1;
  72. }
  73.  
  74. CMD:setadmin(playerid, params[])
  75. {
  76. if (IsPlayerAdmin(playerid))
  77. {
  78. LeanAdmin[playerid] = 1; //Sets your adminlevel to 1
  79. SendClientMessage(playerid, COLOR_BLUEPD, "You have set your adminlevel to 1");
  80. }
  81. else
  82. {
  83. SendClientMessage(playerid, COLOR_RED, "You are not authorized to use that command!");
  84. }
  85. }
  86.  
  87. CMD:admins(playerid, params[])
  88. {
  89. SendClientMessage(playerid, COLOR_GREY, "Admins Online:");
  90. new name[MAX_PLAYER_NAME+1], string[24+MAX_PLAYER_NAME+1];
  91. GetPlayerName(playerid, name, sizeof(name));
  92. for(new i=0;i<MAX_PLAYERS;i++)
  93. {
  94. if(LeanDuty[playerid] == 0 && LeanAdmin[playerid] && IsPlayerConnected(i))
  95. {
  96. format(string, sizeof(string), "(level: 1) %s AdminDuty: No", name);
  97. SendClientMessageToAll(0xC4C4C4FF, string);
  98. //return 1;
  99. }
  100. else if(LeanDuty[playerid] == 1)
  101. {
  102. format(string, sizeof(string), "(level: %d) %s AdminDuty: yes",LeanAdmin[playerid], name);
  103. SendClientMessageToAll(COLOR_GREEN, string);
  104. return 1;
  105. }
  106.  
  107. }
  108. }
  109.  
  110. CMD:aduty(playerid, params[])
  111. {
  112. new name[MAX_PLAYER_NAME+1], string[24+MAX_PLAYER_NAME+1];
  113. GetPlayerName(playerid, name, sizeof(name));
  114. {
  115. if(LeanAdmin[playerid] && LeanDuty[playerid] == 0)
  116. {
  117. new name[MAX_PLAYER_NAME+1], string[24+MAX_PLAYER_NAME+1];
  118. GetPlayerName(playerid, name, sizeof(name));
  119. LeanDuty[playerid] = 1; // Sets the player on Aduty.
  120. SetPlayerHealth(playerid, 999999);//Makes the player god
  121. SetPlayerColor(playerid, COLOR_BLUEPD);// Sets the nametag to BLUE.
  122. format(string, sizeof(string), "%s Is now on Adminduty!", name);
  123. SendClientMessageToAll(ORANGE, string);
  124. }
  125. else if(LeanDuty[playerid] == 1) //Checks if the player is on Aduty
  126. {
  127. LeanDuty[playerid] = 0; // Sets the player off Aduty
  128. SetPlayerHealth(playerid, 100);
  129. SetPlayerColor(playerid, -1); //Sets the nametag back to white
  130. format(string, sizeof(string), "%s Is now off Adminduty!", name);
  131. SendClientMessageToAll(ORANGE, string);
  132. }
  133. else
  134. {
  135. SendClientMessage(playerid, COLOR_GREY, "No, you are not an admin");
  136. }
  137.  
  138.  
  139.  
  140.  
  141.  
  142. }
  143. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement