331
Modification Help / Web and Server 2 server pms?
« on: November 07, 2007, 04:45:30 PM »
Is it possible to make a turque gui that can browse the wep ot pm people on other servers? Thanks!
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.
datablock WheeledVehicleData(JeepVehicle)
{
category = "Vehicles";
displayName = " ";
shapeFile = "./shapes/jeep.dts"; //"~/data/shapes/skivehicle.dts"; //
emap = true;
minMountDist = 3;
numMountPoints = 7;
mountThread[0] = "sit";
mountThread[1] = "sit";
mountThread[2] = "sit";
mountThread[3] = "sit";
mountThread[4] = "sit";
mountThread[5] = "root";
mountThread[6] = "root";
mountThread[7] = "sit";
maxDamage = 200.00;
destroyedLevel = 200.00;
energyPerDamagePoint = 160;
speedDamageScale = 1.04;
collDamageThresholdVel = 20.0;
collDamageMultiplier = 0.02;
massCenter = "0 0 0";
//massBox = "2 5 1";
Once it is edited, it is all correct but it will not show the jeep if you dont change the datablock. This is what a datablock name looks like: datablock WheeledVehicleData(JeepVehicle) To change datablock names change the part that says "jeepvehicle" to the name of your vehicle: datablock WheeledVehicleData(poopmobileVehicle) You may want to keep the vehicle part because you will soon have multiple datablocks in the script that you need to keep track of. Remember to change the other datablocks in the script.datablock WheeledVehicleData(PoopMobileVehicle : JeepVehicle)
{
//Only the values from the Jeep that you want to change go here.
};You do not need the stuff after the // part but you do need }; at the end so it activates because if it has // it is just notes and stuff. Thanks to Trader for the mimic thing!