Mercurial > wow > mailopener
comparison Modules/OpenAll.lua @ 5:1ba07a64bf14
Added a ?FailSafe? module which will safe you from mail failing to open. The opening of a single mail may get stuck when other things occur such as mail being send at the exact same time. This module will continue with the next mail after a set timeout (default set to 20 seconds).
| author | Zerotorescue |
|---|---|
| date | Tue, 07 Sep 2010 20:57:49 +0200 |
| parents | c6f0976069c7 |
| children | fb952805d8b7 |
comparison
equal
deleted
inserted
replaced
| 4:2dd6005d41f3 | 5:1ba07a64bf14 |
|---|---|
| 757 width = "double", | 757 width = "double", |
| 758 min = 0.5, | 758 min = 0.5, |
| 759 max = 60, | 759 max = 60, |
| 760 step = 0.5, | 760 step = 0.5, |
| 761 name = "Continued Mail Opening Interval", | 761 name = "Continued Mail Opening Interval", |
| 762 desc = "Change the interval at which Mail Opener tries to continue opening mail after opening the mailbox. Please note that this setting does not reduce the game's normal 60 seconds wait time for mail.\n\nThe default value is 5 seconds", | 762 desc = "Change the interval at which Mail Opener tries to continue opening mail after opening the mailbox. Please note that this setting does not reduce the game's normal 60 seconds wait time for mail.\n\nThe default value is 5 seconds.", |
| 763 get = function() return MailOpener.db.profile.general.waitTime; end, | 763 get = function() return MailOpener.db.profile.general.waitTime; end, |
| 764 set = function(i, v) MailOpener.db.profile.general.waitTime = v; end, | 764 set = function(i, v) MailOpener.db.profile.general.waitTime = v; end, |
| 765 disabled = function() return (not MailOpener.db.profile.general.continueOpening); end, | 765 disabled = function() return (not MailOpener.db.profile.general.continueOpening); end, |
| 766 }, | 766 }, |
| 767 initialDelay = { | 767 initialDelay = { |
