Mod request :Using a mop for recover liquid

Mod:

  • Using a mop ask for container to put liquid.
    Malus: Possible need of filter to make “impure” liquid usable again.

  • Work in food liquid only with clean items, like a towel or brand new mop, you dont use the same mop in oil and diesel :stuck_out_tongue:
    Malus: Possible need boil before consume.

Sorry my english. I m not skilled to made mod myself.
Work in a school mooping floors, know about “picking liquid” :smiley:

Probably possible with lua.

That LUA thing is everywhere, I only learn “Basic” and that’s was like 28 years ago, don’t remember much.

Here is wip mod.

2 Likes

Mop item received two new item functions:

  1. Allows to pickup spilled liquids in 1 tile radius around player;
  2. Allows to pickup spilled liquids in nearest tile adjacent to player in selected direction.

2 Likes

WOW!
Thanks!
Dont know what else to say, that was incredible fast and perfect.

It is not perfect - picked liquids are not put in container, so they will be dropped when player moves.

Still that was fast.

So maybe the liquids can be unloaded into a container…

Yes, it is possible to ask for a container from player inventory while mopping, but I’m too lazy to add this functionality right now.

You can look how to work with containers in LUA here and update the mod:

There is an error in the code on line 51 of preload.lua:

instead of:

if( #Mop_MenuEntries > 1 ) then

should be:

if( #Mop_MenuEntries >= 1 ) then

oh wow you dont know how greatful i am I spent 2hrs looking at this LOL (i have zero code skills) gonna do this now thank you so much).

Yep just did as was told and all is perfect YAY thank you :).