From f6c85337df5bad73b805c4a223e7caa925a21492 Mon Sep 17 00:00:00 2001 From: Ron Smith Date: Sun, 21 Jan 2024 11:27:19 -0700 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 06f40b7..7dd845e 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ MQ2GMCheck provides one command with several options: /gmcheck popup [off|on] : Toggles showing a popup msg for alerts, or force on/off. /gmcheck chat [off|on] : Toggles showing gm alerts in the mq2 chat window, or force on/off. /gmcheck corpse [off|on] : Toggles filtering of alerts for GM corpses, or force on/off. +/gmcheck exclude [off|on] : Toggles GM alerts being excluded for zones defined in ExcludeZoneList. /gmcheck rem ## : Change alert reminder interval, in seconds (0 to disable). /gmcheck load : Load settings from MQ2GMCheck.ini /gmcheck test [enter|leave|remind] : Tests alerts & sounds for the indicated type. @@ -56,6 +57,7 @@ GMEnterCmd - Command to execute when 1st GM enters zone. GMEnterCmdIf - Optional evaluation to fine tune GMEnterCmd. GMLeaveCmd - Command to execute when last GM exits zone. GMLeaveCmdIf - Optional evaluation to fine tune GMLeaveCmd. +ExcludeZoneList - Pipe (|) separated list of zone short names to exclude from GM checks/alerts In addition, you can have a Section Name corresponding to a GM name, and those custom enter/leave sounds will be played for that GM instead: @@ -75,6 +77,7 @@ GMBeep=off GMPopup=on GMChat=on GMCorpse=off +ExcludeZones=on RemInt=30 EnterSound=c:\mq\resources\sounds\gmenter.mp3 LeaveSound=c:\mq\resources\sounds\gmleave.mp3 @@ -83,6 +86,7 @@ GMEnterCmdIf=${If[${Zone.ID}==344 || ${Zone.ID}==345,1,0]} GMEnterCmd=/multiline ; /end ; /camp desktop GMLeaveCmdIf=${If[${Zone.ID}==344 || ${Zone.ID}==345,1,0]} GMLeaveCmd= +ExcludeZoneList=nexus|poknowledge [Deodan] EnterSound=c:\mq\resources\sounds\prickishere.wav @@ -97,3 +101,8 @@ Finally, your INI stores a history of GM names you've encountered in your travel * **htw** - *Initial work* * **ChatWithThisName** - *Refactor and merge two versions features together* +* **Knightly** - *Refactor and cleanup* +* **htw** - *Added imgui options* +* **htw** - *Fixed corpse logic* +* **htw** - *Added zone exclusion option* +*