hlmod.hu
https://hlmod.hu/

Legjobb abban a körben
https://hlmod.hu/viewtopic.php?f=29&t=13086
Oldal: 1 / 1

Szerző:  Telapo11 [ 2013.12.05. 15:39 ]
Hozzászólás témája:  Legjobb abban a körben

Nekem az a plugin kéne hogy kiirja középre hudba hogy legjobb abban a körben és úgy kéne hogy Kör legjobb játékosai:
alá kiirja a nevüket és hogy mennyi ölésük volt mindig változtassa a szinet!

Szerző:  pixxa112 [ 2013.12.05. 16:12 ]
Hozzászólás témája:  Re: Legjobb abban a körben

SMA Forráskód: [ Mindet kijelol ]
  1. #include <amxmodx>
  2. #include <amxmisc>
  3. #include <hamsandwich>
  4. #include <dhudmessage>
  5. #include <cstrike>
  6.  
  7. #define PLUGIN "New Plugin"
  8. #define AUTHOR "Unknown"
  9. #define VERSION "1.0"
  10.  
  11. new g_iKills[32];
  12. new top1, top2, top3;
  13.  
  14. public plugin_init()
  15. {
  16. register_plugin(PLUGIN, VERSION, AUTHOR)
  17.  
  18. register_event("DeathMsg", "EventDeathMsg", "a")
  19. register_logevent("RoundEnd", 2, "1=Round_End")
  20. }
  21. public client_disconnect(id)
  22. {
  23. g_iKills[id] = 0;
  24. }
  25. public EventDeathMsg()
  26. {
  27. new killer = read_data(1)
  28. new victim = read_data(2)
  29.  
  30. if(killer != victim && killer && cs_get_user_team(killer) != cs_get_user_team(victim))
  31. {
  32. g_iKills[killer]++;
  33.  
  34. }
  35. else
  36. g_iKills[killer]--;
  37. }
  38. public RoundEnd()
  39. {
  40. new players[32], num;
  41. get_players(players, num);
  42. SortCustom1D(players, num, "sort_bestplayer")
  43.  
  44. top1 = players[0]
  45. top2 = players[1]
  46. top3 = players[2]
  47.  
  48. new top1neve[33], top2neve[33], top3neve[33];
  49. get_user_name(top1, top1neve, charsmax(top1neve))
  50. get_user_name(top2, top2neve, charsmax(top2neve))
  51. get_user_name(top3, top3neve, charsmax(top3neve))
  52.  
  53. set_dhudmessage(random(256), random(256), random(256), 0.29, 0.42,0,6.0,12.0,0.1,0.2)
  54. show_dhudmessage(0, "Ebben a Körben a Legjobb játékosok:^n1. %s^n2. %s^n3. %s", top1neve, top2neve, top3neve)
  55.  
  56. for(new i; i < 31; i++)
  57. {
  58. g_iKills[i] = 0;
  59. }
  60. }
  61.  
  62. public sort_bestplayer(id1, id2)
  63. {
  64. if(g_iKills[id1] > g_iKills[id2])
  65. return -1;
  66. else if(g_iKills[id1] < g_iKills[id2])
  67. return 1;
  68.  
  69. return 0;
  70. }

Oldal: 1 / 1 Minden időpont UTC+02:00 időzóna szerinti
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/