You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based off feedback from G7:
-switched inline code backticks to phrases wrapped in single quotation marks
- added more images + webm video.
- added linebraks underneath most H2s. Also deleted redundant 'daedric-test.md
> |**Tutorial Files**| Any groundcover plugin you like that has not already had Lawnmower ran on it (the mod description will likely state whether this is the case) |
This tutorial covers how to use [[the-lawnmower|The Lawnmower]] tool to clean [[guides/groundcover/index|groundcover]] mods of excess grass - specifically, grass which clips through or is hidden under other objects.
37
+
This tutorial covers how to use [[the-lawnmower|The LawnMower]] tool to clean [[guides/groundcover/index|groundcover]] mods of excess grass - specifically, grass which clips through or is hidden under other objects.
41
38
42
39
![[the-lawnmower#^2eccab|clean]]
43
40
@@ -47,23 +44,25 @@ However, for the purposes of this tutorial we will only be focusing on the titul
47
44
48
45
By the end of this tutorial, you should be able to:
49
46
50
-
1. Run `lawnmower.py` Python script on a groundcover plugin
47
+
1. Run 'lawnmower.py' Python script on a groundcover plugin
51
48
2. Compare a groundcover plugin against multiple mods ('chaining')
52
-
3. Understand how to use the 'autoclean' plugins to increase the accuracy of The Lawnmower
49
+
3. Understand how to use the 'autoclean' plugins to increase the accuracy of The LawnMower
53
50
4. Clean the patched groundcover plugin
54
51
55
52
### Prerequisites
56
53
57
-
> [!Info|right wm-sm txt-s] Installing Python
54
+
In addition to downloading The LawnMower (tools only), the tool also requires that you have [[tes3conv|Tes3conv]] and [Python](https://www.python.org/) installed.
55
+
56
+
Copy 'tes3conv.exe' to your Morrowind 'Data Files' folder, or install it using a mod manager.
57
+
58
+
Likewise, copy 'lawnmower.py' from The LawnMower to 'Data Files' or install it with a mod manager.
59
+
60
+
> [!Info|txt-s] Installing Python
58
61
> Whilst it may seem daunting, installation is unremarkable on most platforms.[^1]
59
62
>
60
63
> See Python [BeginnersGuide / Download](https://wiki.python.org/moin/BeginnersGuide/Download) for help.
61
64
62
-
In addition to downloading The Lawnmower (tools only), the tool also requires that you have [[tes3conv|Tes3conv]] and [Python](https://www.python.org/) installed.
63
-
64
-
Copy `tes3conv.exe` to your Morrowind `Data Files` folder, or install it using a mod manager.
65
-
66
-
Likewise, copy `lawnmower.py` from The Lawnmower to `Data Files` or install it with a mod manager.
65
+
---
67
66
68
67
## Running the Script
69
68
@@ -80,26 +79,52 @@ flowchart LR
80
79
81
80
```
82
81
83
-
`lawnmower.py` is a Python script. To run it, open a command-line terminal (e.g., Windows Powershell) and enter `python lawnmower.py`, followed by three plugin names:
82
+
'lawnmower.py' is a Python script. To run it, open a command-line terminal (e.g., Windows Powershell) and enter `python lawnmower.py`, followed by three plugin names:
84
83
85
-
1.**Input**: The plugin to compare the groundcover against, e.g., `Morrowind.esm`.
86
-
2.**Groundcover mod**: The groundcover plugin Lawnmower will trim, e.g., `Rem_AC.esp`
87
-
3.**Output**: The name you give to the trimmed groundcover mod, e.g., `Rem_AC_out.esp`
88
-
- Output can be named anything you like, as long as it ends with the extension `.esp` or `.esm`, e.g., `trimmed_mod.esm`.
84
+
1.**Input**: The plugin to compare the groundcover against (e.g., 'Morrowind.esm').
85
+
2.**Groundcover mod**: The groundcover plugin Lawnmower will trim (e.g., 'Rem_AC.esp').
86
+
3.**Output**: The name you give to the trimmed groundcover mod (e.g., 'Rem_AC_out.esp').
87
+
- Output can be named anything you like, as long as it ends with the extension '.esp' or '.esm' (e.g., 'trimmed_mod.esm').
> Running 'lawnmower.py' in Windows Command Prompt.
101
+
> (video source: user upload)
102
+
103
+
> [!column|flex 2 clean]
104
+
> > [!caption|wfull]
105
+
> >
106
+
> > ![[rem-ac-groundcover-before-lawnmower.webp]]
107
+
> > 'Rem\_AC.esp' before LawnMower,
108
+
> > _Outside Vas_ (image source: user upload).
109
+
>
110
+
> > [!caption|wfull]
111
+
> >
112
+
> > ![[rem-ac-groundcover-after-lawnmower.webp]]
113
+
> > 'Rem\_AC.esp' after LawnMower,
114
+
> > _Outside Vas_ (image source: user upload).
115
+
116
+
---
97
117
98
118
## Running Lawnmower Against Mutiple Plugins
99
119
120
+
> [!tip|txt-s wm-sm right] Using Lawnmower with your Entire Mod-List
121
+
> Some tools for [[modding-tools/merging-plugins/index|merging plugins]], such as [[habasi|Habasi]], can generate a single merged plugin of your entire mod list. This merged plugin can be used as the 'input' plugin for Lawnmower, saving you the trouble of running the script on individual mods.
122
+
>
123
+
> To generate a merged plugin with **Habasi**, run the command `habasi -O` in a terminal.
124
+
100
125
Also known as 'Chaining' - The steps taken above in [[lawnmower-tutorial#Running the Script|'Running the Script']] can be repeated by substituting different input plugins.
101
126
102
-
For example, if you add a city overhaul mod which adds numerous buildings to cities (e.g., `cool cities.esp`, and you wish for your previous `Rem_AC_out.esp` to be trimmed of grass clipping through the new buildings, the command can be formatted like so:
127
+
For example, if you add a city overhaul mod which adds numerous buildings to cities (e.g., 'cool cities.esp'), and you wish for your previous 'Rem_AC_out.esp' to be trimmed of grass clipping through the new buildings, the command can be formatted like so:
This can be repeated for any plugins you wish to compare the groundcover against, and even turned into a <abbrtitle="Batch File">BAT file</abbr> to be reused.
122
147
123
-
> [!tip|txt-s] Using Lawnmower with your Entire Mod-List
124
-
> Some tools for [[modding-tools/merging-plugins/index|merging plugins]], such as [[habasi|Habasi]], can generate a single merged plugin of your entire mod list. This merged plugin can be used as the `input` plugin for Lawnmower, saving you the trouble of running the script on individual mods.
125
-
>
126
-
> To generate a merged plugin with **Habasi**, run the command `habasi -O` in a terminal.
148
+
---
127
149
128
150
## Utilizing Autoclean Plugins
129
151
130
152
Autoclean plugins can be used to increase the accuracy of Lawnmower in detecting clipping groundcover.
131
153
132
154
Lawnmower comes packaged with two autoclean plugins:
133
155
134
-
-`autoclean_cities_vanilla.esp`: For Vvardenfell cities
135
-
-`autoclean_cities_TR.ESP`: For [Tamriel Rebuilt](https://www.tamriel-rebuilt.org/) cities
156
+
-**'autoclean_cities_vanilla.esp'**: For Vvardenfell cities
157
+
-**'autoclean_cities_TR.ESP'**: For [Tamriel Rebuilt](https://www.tamriel-rebuilt.org/) cities
136
158
137
-
These plugins utilize the invisible marker meshes from [[the-lawnmower#Grassblocker|Grassblocker]], which `lawnmower.py` treats as objects when detecting whether grass is clipping. The plugins place these meshes in common areas where unwanted grass is often generated by [[mesh-gen|Mesh Generator]], but which otherwise won't be detected by `lawnmower.py` unless an object covers the area - i.e., a Grassblocker mesh. Mod makers can also create Lawnmower autoclean patches for their own mods using Grassblocker.
159
+
These plugins utilize the invisible marker meshes from [[the-lawnmower#Grassblocker|Grassblocker]], which 'lawnmower.py' treats as objects when detecting whether grass is clipping. The plugins place these meshes in common areas where unwanted grass is often generated by [[mesh-gen|Mesh Generator]], but which otherwise won't be detected by 'lawnmower.py' unless an object covers the area - i.e., a Grassblocker mesh. Mod makers can also create Lawnmower autoclean patches for their own mods using Grassblocker.
138
160
139
161
The syntax for cleaning a groundcover plugin with an autoclean plugin is the same as any other:
140
162
141
163
```
142
164
python lawnmower.py autoclean_cities_vanilla.esp "my grassmod.esp" "my grassmod_out.esp"
143
165
```
144
166
167
+
---
168
+
145
169
## Advanced - Cleaning the Plugin
146
170
147
-
The caveat to The Lawnmower is that it does not truly delete the grass references it detects.
171
+
The caveat to The LawnMower is that it does not truly delete the grass references it detects.
148
172
149
173
Instead, it moves their coordinates to `X: 0`, `Y: 0`, `Z: -20,000`, far below the surface of the game world. As groundcover plugins contain tens of thousands of references, these moved references are still taking up file space, even if they are never encountered in-game. Deleting these will not improve performance markedly, but it can make analyzing the output plugin easier.
150
174
@@ -179,13 +203,18 @@ Replace `<path-to-plugin>` with your plugin name.
179
203
180
204
### Step 2 - TESTool
181
205
182
-
TESTool can clean empty cells which are otherwise not considered by Tesecmd as 'junk cells'.
206
+
> [!caption|right txt-s wm-sm]
207
+
>
208
+
> ![[screenshot-of-testool-from-nexus-mods.webp]]
209
+
> TESTool **'Clean ESP/ESM files'** can clean empty cells from plugins.
210
+
211
+
TESTool can clean empty cells which are otherwise not considered by Tes3cmd as 'junk cells'.
183
212
184
-
Simply run TESTool `Clean ESP/ESM files` on the output plugin.
213
+
Simply run TESTool **'Clean ESP/ESM files'** on the output plugin.
0 commit comments