Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Uxie

Pages: 1 ... 5 6 7 8 9 [10] 11 12 13 14 15 ... 137
136
Suggestions & Requests / Re: Concert lighting
« on: March 25, 2012, 10:18:00 AM »
Wtf really.

Oh, also it would be fail binned. The light model that goes through bricks like sticks out of nowhere when aimed in a wall.

137
Suggestions & Requests / Re: Concert lighting
« on: March 25, 2012, 09:55:03 AM »
Light Cannon, a vehicle, functions like Tank Turret, aim to shine light, left click to activate and de-activate.
Not at all how this works silly goose.

138
General Discussion / Re: bµbbler's Gladiator Arena NXT [BETA]
« on: March 24, 2012, 09:20:56 PM »
Name: Uxie

BL_ID: 11050

Tell me a bit about yourself: I make add-ons, alot. I made those lights and stage for YoungRotations.

Who recommends you (Please +2): Telekenesis, YoungRotations, and Telekenesis made an announcement and 5 others reccomended me.

What servers you have been an admin on: Alot. Stratofortress, YoungRotations, and tons more. I'm even admin at some servers I've never even joined. Litterally, no joke.

139
Modification Help / Re: Filipe1020's Vehicles Topic
« on: March 20, 2012, 06:58:47 PM »
your cars have detail in 3 places: front, back, and inside.
sides are very bland.
It looks default. You don't see the Jeep all with stuff all over the sides.

140
Bleh, I raised the rotational drag to 20 and it works like a charm. Thanks to Stratofortress.

141
Modification Help / Re: Making a modified admin orb's trail longer?
« on: March 19, 2012, 05:00:40 PM »
I think you just increase the particle's lifetime.

142
General Discussion / Re: Blockland Help Issue 1
« on: March 19, 2012, 04:17:03 PM »
This is my first...
But so many people make them.

143
Code: [Select]
//we need the jeep add-on for this, so force it to load
%error = ForceRequiredAddOn("Vehicle_Jeep");

if(%error == $Error::AddOn_Disabled)
{
   //A bit of a hack:
   //  we just forced the jeep to load, but the user had it disabled
   //  so lets make it so they can't select it
   JeepVehicle.uiName = "";
}

if(%error == $Error::AddOn_NotFound)
{
   //we don't have the jeep, so we're screwed
   error("ERROR: Vehicle_Le_Mans - required add-on Vehicle_Jeep not found");
}

datablock WheeledVehicleTire(LeMansTire)
{
   shapeFile = "./lemanstire.dts";

mass = 10;
    radius = 1;
    staticFriction = 5;
   kineticFriction = 5;
   restitution = 0.5;

   // Spring that generates lateral tire forces
   lateralForce = 18000;
   lateralDamping = 4000;
   lateralRelaxation = 0.01;

   // Spring that generates longitudinal tire forces
   longitudinalForce = 14000;
   longitudinalDamping = 2000;
   longitudinalRelaxation = 0.01;
};

datablock WheeledVehicleSpring(LeMansBackSpring)
{
   // Wheel suspension properties
   length = 0.2; // Suspension travel
   force = 3000; //2000; // Spring force
   damping = 1000; //1000; // Spring damping
   antiSwayForce = 2; //1; // Lateral anti-sway force
};

datablock WheeledVehicleSpring(LeMansFrontSpring)
{
   // Wheel suspension properties
   length = 0.3; // Suspension travel
   force = 3000; //2000; // Spring force
   damping = 1000; //1000; // Spring damping
   antiSwayForce = 6; //1; // Lateral anti-sway force
};

// Vehicle //
/////////////
datablock WheeledVehicleData(LeMansVehicle)
{
category = "Vehicles";
displayName = " ";
shapeFile = "./lemans.dts"; //"~/data/shapes/skivehicle.dts"; //
emap = true;
minMountDist = 3;
   
   numMountPoints = 2;
   mountThread[0] = "sit";
   mountThread[1] = "sit";
maxDamage = 125.00;
destroyedLevel = 125.00;
speedDamageScale = 1.04;
collDamageThresholdVel = 20.0;
collDamageMultiplier   = 0.02;

massCenter = "0 0 0";
   //massBox = "2 5 1";

maxSteeringAngle = 0.4;  // Maximum steering angle, should match animation
integration = 2;           // Force integration time: TickSec/Rate
tireEmitter = VehicleTireEmitter; // All the tires use the same dust emitter


// 3rd person camera settings
cameraRoll = false;         // Roll the camera with the vehicle
cameraMaxDist = 13;         // Far distance from vehicle
cameraOffset = 7.5;        // Vertical offset from camera mount point
cameraLag = 0.0;           // Velocity lag of camera
cameraDecay = 0.75;        // Decay per sec. rate of velocity lag
cameraTilt = 0.4;
   collisionTol = 0.1;        // Collision distance tolerance
   contactTol = 0.1;

useEyePoint = false;

defaultTire = LeMansTire;
defaultSpring = LeMansFrontSpring;
//flatTire = jeepFlatTire;
//flatSpring = jeepFlatSpring;

   numWheels = 4;

// Rigid Body
mass = 300;
density = 5.0;
drag = 1.0;
bodyFriction = 0.6;
bodyRestitution = 0.6;
minImpactSpeed = 10;        // Impacts over this invoke the script callback
softImpactSpeed = 10;       // Play SoftImpact Sound
hardImpactSpeed = 15;      // Play HardImpact Sound
groundImpactMinSpeed    = 10.0;

// Engine
engineTorque = 3000; //4000;       // Engine power
engineBrake = 2000;         // Braking when throttle is 0
brakeTorque = 4000;        // When brakes are applied
maxWheelSpeed = 50;        // Engine scale by current speed / max speed

rollForce = 200;
yawForce = 300;
pitchForce = 1000;
rotationalDrag = 0.2;

   // Advanced Steering
   steeringAutoReturn = true;
   steeringAutoReturnRate = 3.0;
   steeringAutoReturnMaxSpeed = 10;
   steeringUseStrafeSteering = true;
   steeringStrafeSteeringRate = 0.1;

// Energy
maxEnergy = 100;
jetForce = 3000;
minJetEnergy = 30;
jetEnergyDrain = 2;



// Sounds
softImpactSound = slowImpactSound;
hardImpactSound = fastImpactSound;
//wheelImpactSound = slowImpactSound;

//   explosion = VehicleExplosion;
justcollided = 0;

   uiName = "Le Mans ";
rideable = true;
lookUpLimit = 0.65;
lookDownLimit = 0.45;

paintable = true;
   
   damageEmitter[0] = VehicleBurnEmitter;
damageEmitterOffset[0] = "0.0 0.0 0.0 ";
damageLevelTolerance[0] = 0.99;

   damageEmitter[1] = VehicleBurnEmitter;
damageEmitterOffset[1] = "0.0 0.0 0.0 ";
damageLevelTolerance[1] = 1.0;

   numDmgEmitterAreas = 1;

   initialExplosionProjectile = LeManloveplosionProjectile;
   initialExplosionOffset = 0;         //offset only uses a z value for now

   burnTime = 4000;

   finalExplosionProjectile = LeMansFinalExplosionProjectile;
   finalExplosionOffset = 0.5;          //offset only uses a z value for now

   minRunOverSpeed    = 4;   //how fast you need to be going to run someone over (do damage)
   runOverDamageScale = 8;   //when you run over someone, speed * runoverdamagescale = damage amt
   runOverPushScale   = 1.2; //how hard a person you're running over gets pushed
};

function LeMansVehicle::onAdd(%this,%obj)
{
parent::onadd(%this,%obj);
%obj.mountable = true;

%obj.setWheelSpring(0, LeMansFrontSpring);
%obj.setWheelSpring(1, LeMansFrontSpring);
%obj.setWheelSpring(2, LeMansBackSpring);
%obj.setWheelSpring(3, LeMansBackSpring);

}

I turn to the right and it flys to the right side of tires.
I turn to the left and it flys to the left side of tires.



So my question is, how would I keep this lovey thang on its four tires?

144
Add-Ons / Re: Xtreme CrossHair
« on: March 17, 2012, 07:14:57 AM »
Err.. What's so bad about it. I first looked at it and said, "That's pretty cool." I mean seriously it is good and it would work well.

145
General Discussion / Re: "You know you're from Blockland when..."
« on: March 16, 2012, 07:51:24 PM »
You know your from blockland when you become an astronaut and launch into the sky and become surprised that you went into space instead of endless sky.

147
General Discussion / Re: HACKING!
« on: March 15, 2012, 06:02:27 PM »
i supoprt thsi 1000000% precnet!!!
omg cul!!!

148
General Discussion / Re: What happens if the IDs run out?
« on: March 13, 2012, 08:44:34 PM »
im in grade 2 and what is this
omg im in grade 1

149
Modification Help / Re: Filipe1020's Vehicles Topic
« on: March 13, 2012, 08:38:22 PM »
I did deleted your kart, that's why I am working on my speed kart now
And your not doing a bad job at it too.

150
Modification Help / Re: Filipe1020's Vehicles Topic
« on: March 13, 2012, 02:26:27 PM »
Uxie sorry about earlier on RTB
Ok. Eather way my kart was way outdated compaired to the one I gave you and HOPEFULLY you listened to me and you deleted it.

Pages: 1 ... 5 6 7 8 9 [10] 11 12 13 14 15 ... 137