HLMOD.HU Forrás Megtekintés - www.hlmod.hu
  1. #include <sourcemod>
  2.  
  3. #define PLUGIN_NEV "Parancs eltüntetö"
  4. #define PLUGIN_LERIAS "Parancs eltüntetö"
  5. #define PLUGIN_AUTHOR "Nexd"
  6. #define PLUGIN_VERSION "1.0"
  7. #define PLUGIN_URL "steelclouds.clans.hu"
  8.  
  9. public Plugin myinfo =
  10. {
  11. name = PLUGIN_NEV,
  12. author = PLUGIN_AUTHOR,
  13. description = PLUGIN_LERIAS,
  14. version = PLUGIN_VERSION,
  15. url = PLUGIN_URL
  16. };
  17.  
  18. public Action OnClientSayCommand(int client, const char[] command, const char[] sArgs)
  19. {
  20. if(IsChatTrigger())
  21. {
  22. return Plugin_Handled;
  23. }
  24.  
  25. return Plugin_Continue;
  26. }