Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!DOCTYPE muclient>
  3. <!-- Saved on Sunday, February 13, 2011, 10:53 PM -->
  4. <!-- MuClient version 4.61 -->
  5. <!--Alias written by Nick Gammon available on his website -->
  6.  
  7. <muclient>
  8. <plugin
  9. name="reload"
  10. author="ruckinfok"
  11. id="0afa3296a73ba5b86919e382"
  12. language="Lua"
  13. purpose="to reload maps and chats plugins"
  14. date_written="2011-02-13 22:52:39"
  15. requires="4.61"
  16. version="1.0"
  17. >
  18.  
  19. </plugin>
  20.  
  21.  
  22. <!-- Get our standard constants -->
  23.  
  24.  
  25. <aliases>
  26. <alias
  27. match="reload"
  28. enabled="y"
  29. send_to="12"
  30. sequence="100"
  31. >
  32. <send>
  33.  
  34. local plugin_id = "565dae21eb816a2fdb8d50f9"
  35. local plugin_file = "\\QUADS\worlds\plugins\AnsalonMWChatCapture.xml"
  36.  
  37. if ReloadPlugin (plugin_id) == error_code.eNoSuchPlugin then
  38. check (LoadPlugin (plugin_file))
  39. end
  40.  
  41. if GetPluginInfo (plugin_id, 1) then
  42. Note (GetPluginInfo (plugin_id, 1) .. " reloaded.")
  43. end -- if have it now
  44.  
  45. local plugin_id = "525dae21eb816a2fdb8d50f9"
  46. local plugin_file = "\\QUADS\worlds\plugins\AnsalonMWMapCapture.xml"
  47.  
  48. if ReloadPlugin (plugin_id) == error_code.eNoSuchPlugin then
  49. check (LoadPlugin (plugin_file))
  50. end
  51.  
  52. if GetPluginInfo (plugin_id, 1) then
  53. Note (GetPluginInfo (plugin_id, 1) .. " reloaded.")
  54. end -- if have it now
  55.  
  56. </send>
  57. </alias>
  58. </aliases>
  59. </muclient>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement