Nyyrazzilyss / NyyLIB

Mudlet client script for Torilmud
http://www.torilmud.com/phpBB3/viewtopic.php?f=4&t=27194
GNU General Public License v2.0
7 stars 4 forks source link

Command queue sometimes interfers with autoroller, i.e. need to type capital letter to bypass Nyyscript #269

Closed Gyrx closed 4 years ago

Gyrx commented 4 years ago

Identified during https://github.com/Nyyrazzilyss/NyyLIB/issues/268

Exit Criteria: Reset command queue when entering character roller or when at "Characters" login menu

Gyrx commented 4 years ago

Could we key clearing the command queue off:

Type the # or name of a character above to login or choose an action below.

Nyyrazzilyss commented 4 years ago

In (Scripts) Events->initNyyLIB

function firstPrompt() -- Initialization trigger on reconnect to toril. -- Enable single letter aliases enableAlias("movement commands") enableAlias("p") enableAlias("g") enableAlias("l (look)")

In (Triggers) MudSetup->^Type the # or name of a character above to login or choose an action below.

scriptInitialized=nil

-- Disable single letter aliases disableAlias("movement commands") disableAlias("p") disableAlias("g") disableAlias("l (look)")

Nyyrazzilyss commented 4 years ago

4/13/2020 012dev