This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Created by Tim Derks | |
| 2025-08-09 | |
| Source: https://gist.github.com/Timmiej93/4b53ce9bedd12e1705290a0900ebe04a | |
| OpenSCAD file to create a 3D-printable label with text on both sides and attachment holes for zip ties. | |
| Customizations: | |
| - Text: The text on the label; | |
| - FlipAroundX: Which way the text on the back should face. | |
| - True: Flip around X axis (start of word stays on the same side); | |
| - False: Flip around Y axis (top of word stays on the same side); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- ShowMeTheMoney for Farming Simulator 17 | |
| -- @description: This displays the total amount of money available on the server to all players when playing a multiplayer game | |
| -- @author: Slivicon | |
| -- History at end of file. | |
| -- | |
| ShowMeTheMoney = {}; | |
| ShowMeTheMoney.enabled = true; | |
| ShowMeTheMoney.fontSize = 0.014; | |
| ShowMeTheMoney.money = 0; |