Reminder.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!--
  3. Reminder
  4. by eotinb, EmperorFool, Ruff_Hi
  5. Copyright (c) 2008 The BUG Mod.
  6. -->
  7. <mod id="Reminder"
  8. module="ReminderEventManager"
  9. name="Reminder"
  10. author="eotinb, EmperorFool, Ruff_Hi"
  11. version="1.0"
  12. date="11/29/2005"
  13. url="http://forums.civfanatics.com/showthread.php?t=144612">
  14. <options id="Reminder" file="Reminder.ini">
  15. <section id="Reminder">
  16. <option id="Enabled"
  17. type="boolean" default="True"
  18. get="isEnabled" set="setEnabled"
  19. label="Enable Reminders [ALT + M]"
  20. help="Turn on eotinb's Reminders mod."/>
  21. <list id="DisplayMethod" key="Display Method"
  22. type="int" default="2" listType="string"
  23. get="getDisplayMethod" set="setDisplayMethod">
  24. <choice id="Message" get="isShowMessage"/>
  25. <choice id="Popup" get="isShowPopup"/>
  26. <choice id="Both" get="isShowMessage isShowPopup"/>
  27. </list>
  28. <option id="Autolog"
  29. type="boolean" default="True"
  30. get="isAutolog" set="setAutolog"/>
  31. </section>
  32. </options>
  33. <events/>
  34. <shortcut key="Alt Ctrl R | Alt M" function="createReminder"/>
  35. </mod>