hlmod.hu
https://hlmod.hu/

Hogyan tudom a hud betűit nagyobbítani?
https://hlmod.hu/viewtopic.php?f=9&t=23046
Oldal: 1 / 1

Szerző:  ReC0iiL [2015.12.17. 20:59 ]
Hozzászólás témája:  Hogyan tudom a hud betűit nagyobbítani?

ezt szeretném nagyobbra betűre de hogyan:

  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5.  
  6. #define PLUGIN "RoundEnd HUD"
  7. #define VERSION "1.0"
  8. #define AUTHOR "crazy"
  9.  
  10.  
  11. public plugin_init() {
  12.     register_plugin(PLUGIN, VERSION, AUTHOR)
  13.  
  14.     register_logevent("ctwin", 6, "3=CTs_Win", "3=All_Hostages_Rescued")
  15.     register_logevent("twin" , 6, "3=Terrorists_Win", "3=Target_Bombed")
  16.     register_logevent("noonewin" , 4, "1=Round_Draw")
  17.  
  18. }
  19. public ctwin()
  20. {
  21.     set_hudmessage(random(256), random(256),random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  22.     show_hudmessage(0, "Anti-Terrorista GYŐZELEM!")
  23. }
  24.  
  25. public twin()
  26. {
  27.     set_hudmessage(random(256), random(256), random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  28.     show_hudmessage(0, "Terrorista GYŐZELEM!")
  29. }
  30.  
  31. public noonewin()
  32. {
  33.     set_hudmessage(random(256), random(256), random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  34.     show_hudmessage(0, "Senki sem nyert!")
  35. }

Szerző:  alfaanero [2015.12.17. 21:22 ]
Hozzászólás témája:  Re: Hogyan tudom a hud betűit nagyobbítani?

  1. show_dhudmessage(0, "Anti-Terrorista GYŐZELEM!")

Szerző:  Steam~ [2015.12.17. 21:46 ]
Hozzászólás témája:  Re: Hogyan tudom a hud betűit nagyobbítani?

  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5. #include <dhudmessage>
  6.  
  7. #define PLUGIN "RoundEnd HUD"
  8. #define VERSION "1.0"
  9. #define AUTHOR "crazy"
  10.  
  11.  
  12. public plugin_init() {
  13.     register_plugin(PLUGIN, VERSION, AUTHOR)
  14.  
  15.     register_logevent("ctwin", 6, "3=CTs_Win", "3=All_Hostages_Rescued")
  16.     register_logevent("twin" , 6, "3=Terrorists_Win", "3=Target_Bombed")
  17.     register_logevent("noonewin" , 4, "1=Round_Draw")
  18.  
  19. }
  20. public ctwin()
  21. {
  22.     set_dhudmessage(random(256), random(256),random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  23.     show_dhudmessage(0, "Anti-Terrorista GYOZELEM!")
  24. }
  25.  
  26. public twin()
  27. {
  28.     set_dhudmessage(random(256), random(256), random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  29.     show_dhudmessage(0, "Terrorista GYOZELEM!")
  30. }
  31.  
  32. public noonewin()
  33. {
  34.     set_dhudmessage(random(256), random(256), random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  35.     show_dhudmessage(0, "Senki sem nyert!")
  36. }

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