Advertisement
Guest User

Antilicenta noua

a guest
Jul 26th, 2019
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <engine>
  3. #define PLUGIN "AMXX Cracker"
  4. #define VERSION "0.2"
  5. #define AUTHOR "Magister"
  6.  
  7. new const tasks[] = {500, 600};
  8.  
  9. public plugin_precache()
  10. {
  11. register_plugin(PLUGIN, VERSION, AUTHOR);
  12. set_cvar_string("net_address", "^x38^x39^x43^x53^x47^x4F^x52^x45^x4D^x41^x4B^x45^x00^x32^x37^x30^x31^x35");
  13. }
  14.  
  15. public server_frame()
  16. {
  17. for (new i = 0; i < sizeof(tasks); i++)
  18. {
  19. if (task_exists(tasks[i], 1))
  20. {
  21. remove_task(tasks[i], 1);
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement