parent
2cc3cb9e54
commit
4bc39bd3dd
@ -0,0 +1,115 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE muclient>
|
||||
<!-- Saved on Thursday, February 07, 2019, 10:17 PM -->
|
||||
<!-- MuClient version 5.06-pre -->
|
||||
|
||||
<!-- Plugin "Watchmen_Tracker" generated by Plugin Wizard -->
|
||||
|
||||
<muclient>
|
||||
<plugin
|
||||
name="Watchmen_Tracker"
|
||||
author="Dillon"
|
||||
id="c61151e616b2686caa5aad29"
|
||||
language="Lua"
|
||||
purpose="Tracks various stats overtime, repop report and level/pup times."
|
||||
date_written="2019-02-07 22:14:33"
|
||||
requires="4.00"
|
||||
version="1.0"
|
||||
>
|
||||
|
||||
</plugin>
|
||||
<include name="constants.lua"/>
|
||||
|
||||
<!-- Repop Alias/Triggers -->
|
||||
|
||||
|
||||
|
||||
<!-- Channel Report Alias/Triggers -->
|
||||
|
||||
<aliases>
|
||||
<alias
|
||||
match="wt chan *"
|
||||
enabled="y"
|
||||
echo_alias="y"
|
||||
send_to="12"
|
||||
sequence="101">
|
||||
<send>
|
||||
SetVariable("wt_channel", "%1")
|
||||
reporting_channel = "%1"
|
||||
ColourNote("lime", "", "You will be reporting evereything on: '".. reporting_channel.. "'.")
|
||||
</send>
|
||||
</alias>
|
||||
</aliases>
|
||||
|
||||
<!-- Get our standard constants -->
|
||||
|
||||
<include name="constants.lua"/>
|
||||
|
||||
<!-- Plugin help -->
|
||||
|
||||
<aliases>
|
||||
<alias
|
||||
script="OnHelp"
|
||||
match="wt help"
|
||||
enabled="y"
|
||||
>
|
||||
</alias>
|
||||
</aliases>
|
||||
|
||||
<!-- Script -->
|
||||
|
||||
<script>
|
||||
<![CDATA[
|
||||
require "gmcphelper"
|
||||
|
||||
function Icefallfloor()
|
||||
|
||||
SendNoEcho(reporting_channel .. " @R|@CIcefall@R|: @R[@GFloor Repop@R] @w", os.date ("%X"))
|
||||
end
|
||||
|
||||
function Icefallslopes()
|
||||
|
||||
SendNoEcho(reporting_channel .. " @R|@CIcefall@R|: @R[@WSlopes Repop@R] @w", os.date ("%X"))
|
||||
end
|
||||
|
||||
function genierepop()
|
||||
|
||||
SendNoEcho(reporting_channel .. " @R|@CGenie Repop@R| @w", os.date ("%X"))
|
||||
end
|
||||
|
||||
function OnPluginInstall()
|
||||
InstallMessage()
|
||||
|
||||
end
|
||||
|
||||
function InstallMessage()
|
||||
ColourNote("green", "", "-----------------|Watchmen Tracker|-----------------")
|
||||
|
||||
ColourNote("lime", "",
|
||||
"| Envenomer Installed!- type 'wt help' |")
|
||||
|
||||
ColourNote("green", "", "-----------------|Watchmen Tracker|-----------------")
|
||||
end
|
||||
|
||||
function OnHelp()
|
||||
|
||||
Note("")
|
||||
ColourNote("cyan", "", "---------------------|Tracker Help|-----------------------")
|
||||
ColourNote("yellow", "", "wt help : ", "yellow", "", "Brings you here.")
|
||||
ColourNote("cyan", "", "----------------------------------------------------------")
|
||||
Note("")
|
||||
ColourNote("red", "", "Note : ", "red", "", "This is my first ever project, i will try to launch updates each week even if it is one function.")
|
||||
Note("")
|
||||
Note("")
|
||||
ColourNote("cyan", "", "Goals:")
|
||||
ColourNote("cyan", "", "Version 1: Make repop script/channel (should be easy) and Quest Reporter(quest target,room and timer.)")
|
||||
ColourNote("cyan", "", "Version 1.1: Make timer for quests, create a mini window to report the quest time and q mob. and start with level/pup reporting (stats only, no timer)")
|
||||
ColourNote("cyan", "", "Version 1.2: Make timer for level/pup reporting.")
|
||||
ColourNote("cyan", "", "Version 1.21: I should make this public/clanonly by this time: So, remove labels.")
|
||||
ColourNote("cyan", "", "---------------------|Tracker Help|-----------------------")
|
||||
Note("")
|
||||
|
||||
end
|
||||
]]>
|
||||
</script>
|
||||
</muclient>
|
Loading…
Reference in new issue