HLMOD.HU Forrás Megtekintés - www.hlmod.hu
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5. #include <cstrike>
  6. #include <tutor>
  7.  
  8. #define PLUGIN "Gyilkosod [CZ Ablak]"
  9. #define VERSION "1.0"
  10. #define AUTHOR "PikHácsúú#"
  11.  
  12.  
  13. public plugin_init() {
  14. register_plugin(PLUGIN, VERSION, AUTHOR)
  15. register_event("DeathMsg", "halal", "a")
  16. tutorInit();
  17. }
  18. public halal()
  19. {
  20. new killer = read_data(1)
  21. new victim = read_data(2)
  22. new nev[33]
  23. get_user_name(killer, nev, 31)
  24. tutorMake(victim,TUTOR_RED,5.0,"Gyilkosod: %s", nev)
  25. new asd[33]
  26. get_user_name(victim, asd, 31)
  27. tutorMake(killer, TUTOR_GREEN,5.0, "Aldozatod: %s", asd)
  28. }
  29. public plugin_precache() {
  30. tutorPrecache()
  31. }
  32. /* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
  33. *{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1038\\ f0\\ fs16 \n\\ par }
  34. */
  35.