Advertisement
Guest User

error 017: undefined symbol "myToggleImpacts"

a guest
Aug 29th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #include <sourcemod>
  2.  
  3. //Definitions
  4. #define PLUGIN_VERSION "0.0.1"
  5.  
  6. //Plugin Info
  7. public Plugin myinfo =
  8. {
  9. name = "Per Client Impact Toggle",
  10. author = "surc",
  11. description = "Allows players to turn showimpacts on or off for themselves",
  12. version = PLUGIN_VERSION,
  13. url = ""
  14. }
  15.  
  16. //onStart
  17. public void OnPluginStart()
  18. {
  19. RegAdminCmd("sm_impacts", Command_myToggleImpacts, ADMFLAG_SLAY);
  20. }
  21.  
  22. public Action Command_MyToggleImpacts(int client, int args)
  23. {
  24. return Plugin_Handled;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement