Cleaned up the mess, at this time, only viable data get synced (_work directory for Gothic-data, miranda for mdc-scripts. Need to symlink files to a working directory.
16 lines
283 B
Text
16 lines
283 B
Text
#include<stdlib.zsl>
|
|
|
|
func void main()
|
|
{
|
|
WLD_Load("MAHLENDURASCII.ZEN");
|
|
var selection s;
|
|
s = WLD_GetVobsOfClass("oCMobInter");
|
|
foreach vob in s
|
|
{
|
|
if (vob.focusName == "MOBNAME_STOVE")
|
|
{
|
|
vob.onStateFunc = "USESTOVE";
|
|
}
|
|
}
|
|
WLD_Save("MAHLENDUR_GETAUSCHT.zen");
|
|
}
|