hlmod.hu
https://hlmod.hu/

Ha "csapat"nyer akkor...
https://hlmod.hu/viewtopic.php?f=10&t=8570
Oldal: 1 / 1

Szerző:  Gatshow [ 2013.05.19. 22:46 ]
Hozzászólás témája:  Ha "csapat"nyer akkor...

valaki írna egy példát hogy:

SMA Forráskód: [ Mindet kijelol ]
  1. ha "CT" nyer
  2. akkor ez történik
  3.  
  4. ha "T" nyer
  5. akkor ez történik

Szerző:  crazy` [ 2013.05.19. 23:18 ]
Hozzászólás témája:  Re: Ha "csapat"nyer akkor...

egy régebbi pluginomat hozom fel példaként:

SMA Forráskód: [ Mindet kijelol ]
  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(255, 0, 0, -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  22. show_hudmessage(0, "CT GYOZELEM!")
  23. }
  24.  
  25. public twin()
  26. {
  27. set_hudmessage(255, 0, 0, -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  28. show_hudmessage(0, "TERRORISTA GYOZELEM!")
  29. }
  30.  
  31. public noonewin()
  32. {
  33. set_hudmessage(255, 0, 0, -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  34. show_hudmessage(0, "Senki sem nyert!")
  35. }

Szerző:  Gatshow [ 2013.05.20. 10:07 ]
Hozzászólás témája:  Re: Ha "csapat"nyer akkor...

crazy` írta:
egy régebbi pluginomat hozom fel példaként:

SMA Forráskód: [ Mindet kijelol ]
  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(255, 0, 0, -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  22. show_hudmessage(0, "CT GYOZELEM!")
  23. }
  24.  
  25. public twin()
  26. {
  27. set_hudmessage(255, 0, 0, -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  28. show_hudmessage(0, "TERRORISTA GYOZELEM!")
  29. }
  30.  
  31. public noonewin()
  32. {
  33. set_hudmessage(255, 0, 0, -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01)
  34. show_hudmessage(0, "Senki sem nyert!")
  35. }


Uhh köszi :D ez nagyon kellet :)

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