Author Topic: Radio Mod Brick  (Read 476 times)

Okay, I downloaded the Radio Mod but unfortunately the "satellite brick" is a 32x32 cube. I looked in the server.cs file and had a quick look. However, I know nothing about scripting but I think I found how I change the brick. Problem is, I don't know what to change to make it a 8x8 plate brick. Any help appreciated.

Code: [Select]
datablock fxDTSBrickData (brickRadioData : brick2x2x5girderdata)
{
category = "Special";
subCategory = "Radio";
uiName = "Radio Tower";
};

exec("Add-Ons/Brick_Large_Cubes/server.cs");
$Addonloaded__Brick_Large_Cubes = 1;
//Still looking for a modeler
datablock fxDTSBrickData (brickSatelliteData : brick16xCubeData)
{
category = "Special";
subCategory = "Radio";
uiName = "Satalite Dish";
radiosat = 1;
};

Possibly wrong section? If so, sorry. (New to this stuff)
« Last Edit: January 03, 2011, 07:54:57 PM by Moonlight »

datablock fxDTSBrickData (brickRadioData : brick2x2x5girderdata)
{
   category = "Special";
   subCategory = "Radio";
   uiName = "Radio Tower";
};
$Addonloaded__Brick_Large_Cubes = 1;
//Still looking for a modeler
datablock fxDTSBrickData (brickSatelliteData : brick8x8fdata)
{
   category = "Special";
   subCategory = "Radio";
   uiName = "Satalite Dish";
   radiosat = 1;
};


Should do it.

Didn't work, thanks for helping anyway.

Managed to get it working. Not bad for a first attempt at changing a script eh?

Code: [Select]
datablock fxDTSBrickData (brickRadioData : brick2x2x5girderdata)
{
category = "Special";
subCategory = "Radio";
uiName = "Radio Tower";
};

exec("base/data/bricks/flat/8x8fdata");
$Addonloaded__Brick_Large_Cubes = 1;
//Still looking for a modeler
datablock fxDTSBrickData (brickSatelliteData : brick8x8fdata)
{
category = "Special";
subCategory = "Radio";
uiName = "Satalite Dish";
radiosat = 1;
};
« Last Edit: January 04, 2011, 09:09:17 AM by Moonlight »