⚠️ Not yet verified in-game β this page was drafted from source analysis and hasn't been confirmed by actually running it. Treat it as a strong draft, not gospel.
Outhouse
Module: outhouse.lua
Overview
The Outhouse module is a utility script that defines the behavior for using an outhouse in the game world. Currently, it only contains a placeholder function Use, which does not perform any actions.
Inheritance
- Inherits from: none β base/utility module
- Imports: none
Instance pattern
This is a stateless manager/utility module with no per-instance pattern or tracked fields.
Functions
Use(aiguid, floatval)
A placeholder function that currently does nothing. It takes two parameters, aiguid and floatval, but neither are used within the function.
Events
- none
Notes for modders
- This module is currently a stub with no functionality. To extend or modify its behavior, you would need to implement logic within the
Usefunction. - Ensure that any modifications respect the gameβs internal state and do not introduce unintended side effects.