Author Topic: Give us an easier time.  (Read 829 times)

I was making an addon and wondering, can badspot plz make an easier way to write addons? Give me some answers. plz.

What is hard about it and what do you think can be done to make it easier?

Badspot didn't create Torque. You can't complain to him for that. There's a Torque functions guide on the forums anyway.

Gah. Just because it says BL has custom content creation ablility does NOT MEAN IT'S EASY.

Or, you could try harder to learn how to make add-ons.

it's so loving simple

to make it any easier would be to hold your hand and make a comprehensive editor that turns stupid into code

it's so loving simple

to make it any easier would be to hold your hand and make a comprehensive editor that turns stupid into code

Code: [Select]
{
makegunplz
};

Processing...

Code: [Select]
//gun.cs

//audio
datablock AudioProfile(gunShot1Sound)
{
   filename    = "./gunShot1.wav";
   description = AudioClose3d;
   preload = true;
};
datablock AudioProfile(bulletHitSound)
{
   filename    = "./bulletHit.wav";
   description = AudioClose3d;
   preload = true;
};


//shell
datablock DebrisData(gunShellDebris)
{
shapeFile = "./gunShell.dts";
lifetime = 2.0;
minSpinSpeed = -400.0;
maxSpinSpeed = 200.0;
elasticity = 0.5;
friction = 0.2;
numBounces = 3;
staticOnMaxBounce = true;
snapOnMaxBounce = false;
fade = true;

gravModifier = 2;
};

...

now make it look safe and nonthreatening, add a switchboard that lets you tell it what to make out of about 6 possible combinations, make it generate stuff models with a click of a button and sell it for 500$

we'll call it "my first blockland editor"



How you guys are not millionares I will never know.