PDA

View Full Version : Issue with Lich/Sloot



Gizmo
11-02-2016, 11:25 AM
So, having issues with lich, mainly my sloot going funky once I activate it due to have different messaging for my daggers.

Here's a shot of it doing what it does, upon activation. Eventually it will grab the items on the ground and put them in the right containers, but it takes time.

Below is a shot of using ;exec empty_hands

I assume I just need to edit a line in the script to account for the messaging, I just don't know what it is for the life of me.

Any help would be great, since I primarily enjoy using sloot...

--- Lich: exec1 active.
[exec1]>inventory containers
You are wearing a cloak
>
[exec1]>put #81757841 in #81757813
You move to put your dagger in your cloak but stop yourself when your hand is empty. Looking inside your cloak, you discover your clear glaes dagger.
>
Zorst forages around briefly but doesn't seem to find anything useful.
>
[exec1]>put #81757841 in #81757818
I could not find what you were referring to.
>
[exec1]>put #81757841 in #81757840
I could not find what you were referring to.
>
[exec1]>put #81757841 in #81757850
I could not find what you were referring to.
>
[exec1]>put #81757841 in #81757851
I could not find what you were referring to.
>
[exec1]>put #81757841 in #81757861
I could not find what you were referring to.
>
--- Lich: exec1 has exited.

Donquix
11-02-2016, 01:16 PM
it's in the empty_hands function it lich, search for "def empty_hands" , there's a catchall regex for detecting putting the item away successfully in there several times (for a few different cases) looks like changing

^You (?:attempt to shield .*? from view as you |discreetly |carefully |absent-mindedly )?(?:put|place|slip|tuck|add|drop|untie your|find an incomplete bundle|wipe off .*? and sheathe)|^A sigh of grateful pleasure can be heard as you feed .*? to your|^As you place|^I could not find what you were referring to\.$|^Your bundle would be too large|^The .+ is too large to be bundled\.|^As you place your|^The .*? is already a bundle|^Your .*? won't fit in .*?\.$|^You can't .+ It's closed!$

to


^You (?:attempt to shield .*? from view as you |move to |discreetly |carefully |absent-mindedly )?(?:put|place|slip|tuck|add|drop|untie your|find an incomplete bundle|wipe off .*? and sheathe)|^A sigh of grateful pleasure can be heard as you feed .*? to your|^As you place|^I could not find what you were referring to\.$|^Your bundle would be too large|^The .+ is too large to be bundled\.|^As you place your|^The .*? is already a bundle|^Your .*? won't fit in .*?\.$|^You can't .+ It's closed!$

or similar will catch it. There's likely a more correct and less error prone regex for it. Likely need to fix fill_hands as well, similarly.

Tgo01
11-02-2016, 01:17 PM
Add your dagger's custom script to line 23's regex.

So change:

putregex = /^You (?:put|(?:discreetly )?tuck|attempt to shield your|place|.* place|slip|wipe off the blade and sheathe|absent-mindedly drop|carefully add|find an incomplete bundle|untie your drawstring pouch)|^The .+ is already a bundle|^Your bundle would be too large if you if you tried to add that|^The .+ is too large to be bundled\.|^As you place your .+ inside your .+, you notice another .+ inside the .+ and carefully arrange the two .+ into a neat bundle\./

to

putregex = /^You (?:put|(?:discreetly )?tuck|attempt to shield your|place|.* place|slip|wipe off the blade and sheathe|absent-mindedly drop|carefully add|find an incomplete bundle|untie your drawstring pouch)|^The .+ is already a bundle|^Your bundle would be too large if you if you tried to add that|^The .+ is too large to be bundled\.|^As you place your .+ inside your .+, you notice another .+ inside the .+ and carefully arrange the two .+ into a neat bundle\.|You move to put your/

Tgo01
11-02-2016, 01:18 PM
it's in the empty_hands function it lich, search for "def empty_hands" , there's a catchall regex for detecting putting the item away successfully in there several times (for a few different cases) looks like changing

^You (?:attempt to shield .*? from view as you |discreetly |carefully |absent-mindedly )?(?:put|place|slip|tuck|add|drop|untie your|find an incomplete bundle|wipe off .*? and sheathe)|^A sigh of grateful pleasure can be heard as you feed .*? to your|^As you place|^I could not find what you were referring to\.$|^Your bundle would be too large|^The .+ is too large to be bundled\.|^As you place your|^The .*? is already a bundle|^Your .*? won't fit in .*?\.$|^You can't .+ It's closed!$

to


^You (?:attempt to shield .*? from view as you |move to |discreetly |carefully |absent-mindedly )?(?:put|place|slip|tuck|add|drop|untie your|find an incomplete bundle|wipe off .*? and sheathe)|^A sigh of grateful pleasure can be heard as you feed .*? to your|^As you place|^I could not find what you were referring to\.$|^Your bundle would be too large|^The .+ is too large to be bundled\.|^As you place your|^The .*? is already a bundle|^Your .*? won't fit in .*?\.$|^You can't .+ It's closed!$

or similar will catch it. There's likely a more correct and less error prone regex for it. Likely need to fix fill_hands as well, similarly.

Or that.

Gizmo
11-02-2016, 01:20 PM
it's in the empty_hands function it lich, search for "def empty_hands" , there's a catchall regex for detecting putting the item away successfully in there several times (for a few different cases) looks like changing

^You (?:attempt to shield .*? from view as you |discreetly |carefully |absent-mindedly )?(?:put|place|slip|tuck|add|drop|untie your|find an incomplete bundle|wipe off .*? and sheathe)|^A sigh of grateful pleasure can be heard as you feed .*? to your|^As you place|^I could not find what you were referring to\.$|^Your bundle would be too large|^The .+ is too large to be bundled\.|^As you place your|^The .*? is already a bundle|^Your .*? won't fit in .*?\.$|^You can't .+ It's closed!$

to


^You (?:attempt to shield .*? from view as you |move to |discreetly |carefully |absent-mindedly )?(?:put|place|slip|tuck|add|drop|untie your|find an incomplete bundle|wipe off .*? and sheathe)|^A sigh of grateful pleasure can be heard as you feed .*? to your|^As you place|^I could not find what you were referring to\.$|^Your bundle would be too large|^The .+ is too large to be bundled\.|^As you place your|^The .*? is already a bundle|^Your .*? won't fit in .*?\.$|^You can't .+ It's closed!$

or similar will catch it. There's likely a more correct and less error prone regex for it. Likely need to fix fill_hands as well, similarly.

Is that found in the sloot script? Or elsewhere in lich?

Donquix
11-02-2016, 01:42 PM
it's in lich.rbw itself, empty_hands is a base function

Gizmo
11-02-2016, 01:55 PM
it's in lich.rbw itself, empty_hands is a base function

Graci. Seems to be working now..

Gizmo
11-02-2016, 05:01 PM
Ok, so it works. But now the issue is it keeps updating to the current version of lich, erasing my edits/changes..Even though I'm using the most current version to begin with.

What is the command again to turn off the automatic updating upon login?

Edit: Think I found it...;repo unset-lich-updatable