Difference between revisions of "User:Shalineth/ToDo"

From AvatarWiki
Jump to navigation Jump to search
m
m
Line 2: Line 2:
 
This is just a list of tasks that I still want to complete for the AVATAR Wiki.
 
This is just a list of tasks that I still want to complete for the AVATAR Wiki.
  
* Details of the TAG command.
+
* <del>Details of the TAG command.</del>
* Threnody counter script for CMud
+
* <del>Threnody counter script for CMud</del>
 
* <del>Autoheld trigger for CMud</del> - done as part of [[CMud_Archer_Triggers|Archer Class]] script
 
* <del>Autoheld trigger for CMud</del> - done as part of [[CMud_Archer_Triggers|Archer Class]] script
 
* <del>Ubercon helpfiles</del> - done with emphasis on "What is UberCon" and links.
 
* <del>Ubercon helpfiles</del> - done with emphasis on "What is UberCon" and links.
 
* <del>Auto Rescue for CMud</del> - done!
 
* <del>Auto Rescue for CMud</del> - done!
 
 
== Thren trigger work below ==
 
<pre>
 
<?xml version="1.0" encoding="ISO-8859-1" ?>
 
<cmud>
 
  <class name="Lord_Events">
 
    <trigger priority="2080">
 
      <pattern>~[LORD INFO~]: %w finishes Threnody, moving corpse of %w to safety.</pattern>
 
      <value>thren_count = ""
 
lblthren = ""
 
#echo -- Threnody ritual complete --
 
</value>
 
    </trigger>
 
    <trigger priority="2090">
 
      <pattern>~[LORD INFO~]: %w initiates a Threnody dirge for corpse of (%w) in*</pattern>
 
      <value>lblthren = "Threnody Starting"
 
#echo -- Threnody ritual starting --</value>
 
    </trigger>
 
    <trigger priority="2100">
 
      <pattern>You feel * power mingle with yours as * joins the ritual!</pattern>
 
      <value>#MATH thren_count (@thren_count+1)</value>
 
    </trigger>
 
    <trigger priority="2110">
 
      <pattern>You join (*) in performing the threnody ritual!</pattern>
 
      <value>thren_count = %eval(%numwords(%1, " and ")+1)
 
lblthren = "Threnody Count: "</value>
 
      <notes>Not Working right now.</notes>
 
    </trigger>
 
    <var name="thren_count" type="Integer">12</var>
 
    <trigger priority="2140">
 
      <pattern>You begin a dirge for corpse of *...</pattern>
 
      <value>#var thren_count 1
 
#var lblthren "Threnody Count: "</value>
 
    </trigger>
 
    <var name="lblthren" type="Literal">Threnody Count: </var>
 
  </class>
 
</cmud>
 
 
</pre>
 

Revision as of 11:19, 17 September 2010

To Do List

This is just a list of tasks that I still want to complete for the AVATAR Wiki.

  • Details of the TAG command.
  • Threnody counter script for CMud
  • Autoheld trigger for CMud - done as part of Archer Class script
  • Ubercon helpfiles - done with emphasis on "What is UberCon" and links.
  • Auto Rescue for CMud - done!