Skip to content

Instantly share code, notes, and snippets.

@sootysax
sootysax / gist:074902a4075527533f42
Last active August 29, 2015 14:14
Forage Wagon not unloading
GIANTS Engine Runtime 6.0.2 64bit (Build Date: Dec 9 2014)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
Memory: 8179 MB
OS: Windows NT 6.1 64-bit
Physics System
Version: 5.9.4
GIANTS Engine Runtime 6.0.2 64bit (Build Date: Dec 9 2014)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
Memory: 8179 MB
OS: Windows NT 6.1 64-bit
Physics System
Version: 5.9.4
GIANTS Engine Runtime 6.0.2 64bit (Build Date: Dec 9 2014)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
Memory: 8179 MB
OS: Windows NT 6.1 64-bit
Physics System
Version: 5.9.4
GIANTS Engine Runtime 6.0.2 64bit (Build Date: Dec 9 2014)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
Memory: 8179 MB
OS: Windows NT 6.1 64-bit
Physics System
Version: 5.9.4
@sootysax
sootysax / gist:2b357e3567185b933ff6
Created February 11, 2015 22:11
Loading SoilMod to a New Savegame
GIANTS Engine Runtime 6.0.2 64bit (Build Date: Feb 5 2015)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
Memory: 8179 MB
OS: Windows NT 6.1 64-bit
Physics System
Version: 5.9.4
@sootysax
sootysax / StandardTrigger
Last active August 29, 2015 14:16
Control - Working Standard Placable Fertilizer Tank
GIANTS Engine Runtime 6.0.2 (Build Date: Dec 16 2014)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: 4 @ 2.4 GHZ
Memory: 8192 MB
OS: Mac OS X 10.10.2
Physics System
Version: 5.9.4
@sootysax
sootysax / SoilModTriggerN
Last active August 29, 2015 14:16
Custom SoilMod Trigger #1 Not Filling
GIANTS Engine Runtime 6.0.2 (Build Date: Dec 16 2014)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: 4 @ 2.4 GHZ
Memory: 8192 MB
OS: Mac OS X 10.10.2
Physics System
Version: 5.9.4
@sootysax
sootysax / SoilModTriggerPK
Last active August 29, 2015 14:16
Custom SoilMod Trigger#2 Not Filling
GIANTS Engine Runtime 6.0.2 (Build Date: Dec 16 2014)
Copyright (c) 2008-2014, GIANTS Software GmbH (giants-software.com), All Rights Reserved.
Copyright (c) 2003-2014, Christian Ammann and Stefan Geiger, All Rights Reserved.
Application: FarmingSimulator2015
Main System
CPU: 4 @ 2.4 GHZ
Memory: 8192 MB
OS: Mac OS X 10.10.2
Physics System
Version: 5.9.4
@sootysax
sootysax / modDesc.xml
Created February 28, 2015 12:34
Standard Placeable Fertilizer Tank modDesc.xml
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<modDesc descVersion="21">
<author>Sootysax, Alex2009</author>
<version>1.0</version>
<title>
<en>Placeable Fertilizer NPK Tank</en>
<de>Plazierbarer Flüssigdüngertank</de>
</title>
<description>
<en>
@sootysax
sootysax / waterTankPlaceable.lua
Created February 28, 2015 12:35
Standard Placeable Fertilizer Tank LUA
--@Author: Alex2009, Sven777b
--@Web: www.alex2009.de, www.LS-Landtechnik.com
waterTankPlaceable = {};
waterTankPlaceable_mt = Class(waterTankPlaceable, Placeable);
InitObjectClass(waterTankPlaceable, "waterTankPlaceable");
function waterTankPlaceable:new(isServer, isClient, customMt)
local self = Placeable:new(isServer, isClient, waterTankPlaceable_mt);
registerObjectClassName(self, "waterTankPlaceable");