Jump to content

Photo

[CS16-REQUEST] Plugin amx_who


  • This topic is locked This topic is locked
1 reply to this topic

#1
IGiveyouHS ;x

IGiveyouHS ;x

    No Limit Member

  • Banned
  • 2106 posts
  • 213 topics
  • Joined 26-March 14
  • Country: Country Flag

Buna seara as dori si eu un plugin amx_who cu sma+amxx+user.ini.

 

 

As dori urmatoarele grade:

 

 

      ----- Online Admins -----
      ----- [1] Acces FTP -----
      ----- [2] ManageR -----
      ----- [3] OwneR -----
      ----- [4] Co-OwneR -----
      ----- [5] VeteraN -----
      ----- [6] MaresaL -----
      ----- [7] GeneraL -----
      ----- [8] ColoneL -----
      ----- [9] MaioR -----
      ----- [10] SergenT -----
      ----- [11] SloT -----
      ----- www.cs16.ro -----

 

 

Va multumesc frumos :)
 



#2
-ToTo-

-ToTo-

    Addicted Member

  • Membru
  • 206 posts
  • 12 topics
  • Joined 07-August 16
  • Country: Country Flag
  1. #include <amxmodx>
  2. #include <amxmisc>
  3.  
  4. #define CharsMax(%1) sizeof %1 - 1
  5. #define time_shower 1.0
  6.  
  7. #define GROUPS_NAME 11
  8. #define GROUPS_ACCESS 11
  9.  
  10. #define RRR 255
  11. #define GGG 255
  12. #define BBB 255
  13. #define time_hud 12.0
  14.  
  15. #define motd_msg "Admin's Online"
  16.  
  17. #define who_meniu_ad_group_msg "\y----- Online Admins -----^n"
  18. #define who_meniu_admin_msg "\y----- Online Admins -----^n^n"
  19.  
  20. #define who_meniu_ad_group_msg_bottom "^n\r0 \yExit"
  21. #define who_meniu_admin_msg_bottom "^n\r0 \yExit"
  22.  
  23. #define who_console_top "----- Online Admins -----"
  24. #define who_console_bottom " ----- www.cs16.ro -----"
  25.  
  26. new GroupNames[GROUPS_NAME][] = {
  27. "----- [1] Acces FTP -----",
  28. "----- [2] ManageR -----",
  29. "----- [3] OwneR -----",
  30. "----- [4] Co-OwneR -----",
  31. "----- [5] VeteraN -----",
  32. "----- [6] MaresaL -----",
  33. "----- [7] GeneraL -----",
  34. "----- [8] ColoneL -----",
  35. "----- [9] MaioR -----",
  36. "----- [10] SergenT -----",
  37. "----- [11] SloT -----"
  38. }
  39.  
  40. new GroupFlags[GROUPS_ACCESS][] = {
  41. "abcdefghijklmnopqrstu",
  42. "abcdefghijklmnopqstu",
  43. "bcdefghijlmnopqrstu",
  44. "bcdefhijklmnopqrs",
  45. "bcdefhijklmnopqrs",
  46. "bcdefhijklmnopq",
  47. "bcdefhijkmnopq",
  48. "bcdefhijkmnop",
  49. "bcdefhijmnop",
  50. "bcfijdemnop",
  51. "b"
  52. }
  53.  
  54. new GroupFlagsValue[GROUPS_NAME]
  55.  
  56. new who_type, who_typemeniu, who_typtable
  57.  
  58. public plugin_init()
  59. {
  60. for(new p_of_pw = 0 ; p_of_pw < GROUPS_NAME ; p_of_pw++)
  61. GroupFlagsValue[p_of_pw] = read_flags(GroupFlags[p_of_pw])
  62. register_clcmd("say /who", "cmdSay")
  63. register_clcmd("say_team /who", "cmdSay")
  64. who_type = register_cvar("cmd_who","1")
  65. who_typemeniu = register_cvar("who_typemeniu","1")
  66. who_typtable = register_cvar("who_typetable","2")
  67. }
  68.  
  69. public cmdSay(id)
  70. {
  71. new say[192]
  72. read_args(say,192)
  73. if(( containi(say, "who") != -1 || containi(say, "admin") != -1 || containi(say, "admins") != -1 || contain(say, "/who") != -1 || contain(say, "/admin") != -1 || contain(say, "/admins") != -1))
  74. set_task(time_shower,"cmdULTMWho",id)
  75. return PLUGIN_CONTINUE
  76. }
  77.  
  78. public cmdULTMWho(id)
  79. {
  80. switch(get_pcvar_num(who_type))
  81. {
  82. case 1: who_meniu(id)
  83. case 2: who_motd(id)
  84. case 3: who_table(id)
  85. case 4: who_hud(id)
  86. case 5: who_console(id)
  87. }
  88. return 0
  89. }
  90.  
  91. who_meniu(id)
  92. {
  93. switch(get_pcvar_num(who_typemeniu))
  94. {
  95. case 1: who_meniu_admin_groups(id)
  96. case 2: who_meniu_admin(id)
  97. }
  98. return 0
  99. }
  100. who_meniu_admin_groups(id)
  101. {
  102. new sPlayers[32], iNum, iPlayer
  103. new sName[32]
  104. new szMenu[256], nLen, keys
  105. nLen = format(szMenu[nLen], 255, who_meniu_ad_group_msg)
  106. get_players(sPlayers, iNum, "ch")
  107. for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
  108. {
  109. nLen += format(szMenu[nLen], 255-nLen,"\r%s^n", GroupNames[p_of_pw])
  110. for(new a = 0; a < iNum ; a++)
  111. {
  112. iPlayer = sPlayers[a]
  113. if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
  114. {
  115. get_user_name(iPlayer, sName, sizeof sName - 1)
  116. nLen += format(szMenu[nLen], 255-nLen,"\w%s^n", sName)
  117. }
  118. }
  119. }
  120. nLen += format(szMenu[nLen], 255-nLen, who_meniu_ad_group_msg_bottom)
  121. keys = (1<<0|1<<1|1<<2|1<<3|1<<4|1<<5|1<<6|1<<9)
  122. show_menu(id,keys,szMenu,-1)
  123. return 0
  124. }
  125.  
  126. who_meniu_admin(id)
  127. {
  128. new sPlayers[32], iNum, iPlayer
  129. new sName[32]
  130. new szMenu[256], nLen, keys
  131. nLen = format(szMenu[nLen], 255, who_meniu_admin_msg)
  132. get_players(sPlayers, iNum, "ch")
  133. for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
  134. {
  135. for(new a = 0; a < iNum ; a++)
  136. {
  137. iPlayer = sPlayers[a]
  138. if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
  139. {
  140. get_user_name(iPlayer, sName, sizeof sName - 1)
  141. nLen += format(szMenu[nLen], 255-nLen,"\r%s^n", sName)
  142. }
  143. }
  144. }
  145. nLen += format(szMenu[nLen], 255-nLen, who_meniu_admin_msg_bottom)
  146. keys = (1<<0|1<<1|1<<2|1<<3|1<<4|1<<5|1<<6|1<<9)
  147. show_menu(id,keys,szMenu,-1)
  148. return 0
  149. }
  150.  
  151. who_motd(id)
  152. {
  153. new sPlayers[32], iNum, iPlayer
  154. new sName[32], sBuffer[1024]
  155. new iLen
  156. iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
  157. get_players(sPlayers, iNum, "ch")
  158. for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
  159. {
  160. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h5><font color=^"red^">%s^n</font></h5></center>", GroupNames[p_of_pw])
  161. for(new a = 0; a < iNum ; a++)
  162. {
  163. iPlayer = sPlayers[a]
  164. if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
  165. {
  166. get_user_name(iPlayer, sName, sizeof sName - 1)
  167. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center>%s^n</center>", sName)
  168. }
  169. }
  170. }
  171. show_motd(id, sBuffer, motd_msg)
  172. return 0
  173.  
  174. }
  175.  
  176. who_table(id)
  177. {
  178. switch(get_pcvar_num(who_typtable))
  179. {
  180. case 1: table_style_one(id)
  181. case 2: table_style_two(id)
  182. }
  183. return 0
  184. }
  185. table_style_one(id)
  186. {
  187. new sPlayers[32], iNum, iPlayer
  188. new sName[32], sBuffer[1024]
  189. new iLen
  190. iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
  191. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h3><b><font color=^"red^">NUME - ACCES</font></h3></b></center>")
  192. get_players(sPlayers, iNum, "ch")
  193. for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
  194. {
  195. for(new a = 0; a < iNum ; a++)
  196. {
  197. iPlayer = sPlayers[a]
  198. if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
  199. {
  200. get_user_name(iPlayer, sName, sizeof sName - 1)
  201. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h4><font color=^"white^">%s %s^n</font></h4></center>", sName, GroupNames[p_of_pw])
  202. }
  203. }
  204. }
  205. show_motd(id, sBuffer, motd_msg)
  206. return 0
  207. }
  208. table_style_two(id)
  209. {
  210. new sPlayers[32], iNum, iPlayer
  211. new sName[32], sBuffer[1024]
  212. new iLen
  213. iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
  214. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<html><head><title>a</title></head>")
  215. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<br><br><center><body><table border>")
  216. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<tr><td><h3><b><font color=^"red^">NUME</td><td></h3></b> <h3><b><font color=^"red^">ACCES</td></h3></font></b></center>")
  217. get_players(sPlayers, iNum, "ch")
  218. for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
  219. {
  220. for(new a = 0; a < iNum ; a++)
  221. {
  222. iPlayer = sPlayers[a]
  223. if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
  224. {
  225. get_user_name(iPlayer, sName, sizeof sName - 1)
  226. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><tr><td><h4><b><font color=^"white^">%s<td></b></h4> <h4><b><font color=^"white^">%s </td></h4></font></b></center>", sName, GroupNames[p_of_pw])
  227. }
  228. }
  229. }
  230. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "</table></body></html>")
  231. show_motd(id, sBuffer, motd_msg)
  232. return 0
  233. }
  234.  
  235. who_hud(id)
  236. {
  237. new sPlayers[32], iNum, iPlayer
  238. new sName[32], sBuffer[1024]
  239. new iLen
  240. get_players(sPlayers, iNum, "ch")
  241. for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
  242. {
  243. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "=== %s ===^n", GroupNames[p_of_pw])
  244. for(new a = 0; a < iNum ; a++)
  245. {
  246. iPlayer = sPlayers[a]
  247. if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
  248. {
  249. get_user_name(iPlayer, sName, sizeof sName - 1)
  250. iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "%s^n", sName)
  251. }
  252. }
  253. }
  254. set_hudmessage(RRR, GGG, BBB, 0.02, 0.24, 0, 6.0, time_hud)
  255. show_hudmessage(id, sBuffer)
  256. return 0
  257. }
  258.  
  259. who_console(id)
  260. {
  261. new sPlayers[32], iNum, iPlayer
  262. new sName[32]
  263.  
  264. get_players(sPlayers, iNum)
  265. console_print(id, who_console_top)
  266. for(new p_of_pw = 0; p_of_pw < GROUPS_NAME; p_of_pw++)
  267. {
  268. for(new a = 0; a < iNum ; a++)
  269. {
  270. iPlayer = sPlayers[a]
  271. get_user_name(iPlayer, sName, sizeof sName - 1)
  272. if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
  273. console_print(id, "= %d = %s : %s", p_of_pw+1, GroupNames[p_of_pw], sName)
  274. }
  275. }
  276. console_print(id, who_console_bottom)
  277. return 0
  278. }
De aici modifici unde vrei sa apara
 
who_type = register_cvar("cmd_who","1")
 
1- adminii afiseaza intr-un 'meniu'
2- adminii afiseaza intr-un 'motd'
3- adminii afiseaza 'sub forma unui tabel'
4- adminii afiseaza intr-un 'mesaj hud'
5- adminii afiseaza in 'consola'
 
  1. ; h - amx_cfg command
  2. ; i - amx_chat and other chat commands
  3. ; j - amx_vote and other vote commands
  4. ; k - access to sv_password cvar (by amx_cvar command)
  5. ; l - access to amx_rcon command and rcon_password cvar (by amx_cvar command)
  6. ; m - custom level A (for additional plugins)
  7. ; n - custom level B
  8. ; o - custom level C
  9. ; p - custom level D
  10. ; q - custom level E
  11. ; r - custom level F
  12. ; s - custom level G
  13. ; t - custom level H
  14. ; u - menu access
  15. ; z - user (no admin)
  16.  
  17. ; Account flags:
  18. ; a - disconnect player on invalid password
  19. ; b - clan tag
  20. ; c - this is steamid/wonid
  21. ; d - this is ip
  22. ; e - password is not checked (only name/ip/steamid needed)
  23. ; k - name or tag is case sensitive. eg: if you set it so the name "Ham"
  24. ; is protected and case sensitive (flags "k" only), then anybody
  25. ; can use the names "haM", "HAM", "ham", etc, but not "Ham"
  26.  
  27. ; Password:
  28. ; Add to your autoexec.cfg: setinfo _pw "<password>"
  29. ; Change _pw to the value of amx_password_field
  30.  
  31. ; Format of admin account:
  32. ; <name|ip|steamid> <password> <access flags> <account flags>
  33.  
  34. ; Examples of admin accounts:
  35. ; "STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "e"
  36. ; "123.45.67.89" "" "abcdefghijklmnopqrstu" "e"
  37. ; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"

  • IGiveyouHS ;x likes this




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users