I get this in the console upon executing it.
==>exec("Add-Ons/Vehicle_Fan/Server.cs");
Executing Add-Ons/Vehicle_Fan/Server.cs.
Executing Add-Ons/Vehicle_Fan/fan_Spring.cs.
Executing Add-Ons/Vehicle_Fan/fan_Tire.cs.
Activating package: Fanpkg
package Fanpkg is already active
OK, but when i change the slightest bit of code, or a model, I don't get why I get this
==>exec("Add-Ons/Vehicle_Fan/Server.cs");
Executing Add-Ons/Vehicle_Fan/Server.cs.
ResourceManager::loadStream: 'Fan_Spring.cs' Not in the zip! (Add-Ons/Vehicle_Fan.zip)
exec: invalid script file Add-Ons/Vehicle_Fan/fan_Spring.cs.
ResourceManager::loadStream: 'Fan_Tire.cs' Not in the zip! (Add-Ons/Vehicle_Fan.zip)
exec: invalid script file Add-Ons/Vehicle_Fan/fan_Tire.cs.
Activating package: Fanpkg
package Fanpkg is already active
For example, if I changed:
//Codesnippet
{
%target.playThread(2000,SlowDownAni);
%target.startup=0;
}
//Codesnippet
to:
//Codesnippet
{
%target.playThread(100,SlowDownAni);
%target.startup=0;
}
//Codesnippet
I would get that error.
What am I doing wrong?