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.


Topics - _Dark_

Pages: 1 2 [3] 4 5 6 7
31
Help / What's Going On?
« on: October 03, 2011, 07:07:20 PM »
Today I was playing Blockland and it was acting super slow and crashed, then my computer freezed. After restarting my computer I opened Blockland up and look through my add-ons. In non RTB add-ons I found this:

AJBNKJA

By L VKIASIH

32
Off Topic / Mom discovered Steam
« on: October 01, 2011, 10:37:45 AM »
Just about a couple minutes ago my mom asked me if I used Steam chat. I said yes and she told me that she just deleted someone for saying MFer. It concerns me because I Don't have Steam running. So now I know she opened it. I'm kinda frightened now.

33
Modification Help / Anoying Error
« on: September 29, 2011, 05:10:13 PM »
I get this error for a playertype I have. I honestly don't see anything wrong with it.
Quote
datablock PlayerData(PlayerSpeedCola : PlayerStandardArmor)
{

      runforce = 100 * 94;
   runEnergyDrain = 0
   maxForwardSpeed ##=## 10;
   maxBackwardSpeed = 5;
   maxSideSpeed = 4;
   canJet = 0;
   maxDamage = 50;

   maxForwardCrouchSpeed = 5;
   maxBackwardCrouchSpeed = 5;
   maxSideCrouchSpeed = 3;

   uiName = "Speed Cola";
   showEnergyBar = false;

   runSurfaceAngle  = 55;
   jumpSurfaceAngle = 55;
   maxDamage = 100;
};

34
Suggestions & Requests / Model Request
« on: September 28, 2011, 10:01:36 PM »
I'd like it if someone would model me a Vodka bottle. Please note if you do I will make a logo and you must be able to add it to the model. Also if you do model it please send me it with the colors and textures included. I'll make the logo tomorrow if you want it now.

35
Games / Today I found out why I quit Black Ops again
« on: September 20, 2011, 09:06:55 PM »
I got into the COD Elite Beta and so far it's useless. I decided to compete in one of the competitions and found out why I quit playing Black Ops.

- Kids on mic thinking there cool camping and spamming bullets
- Gettin called a noob by an 8 year old for killing him
- AK74u
- Boring and isnt balanced
- Poeple thinking there Ghetto cause they swear
- Poeple using launchers when there right next to me >_>
- SMG poeple not even ADS and just spraying everywhere
- The community is full of morons

I know I'm gonna get alot of COD fanboys flaming me, but truth is I am a COD Fanboy, I just hate Black Ops Multiplayer. The community is ruining the game.

Oh btw I know your gonna say "Well you just suck", but this is mostly the communitys fault.

36
Modification Help / Crash when spawning Vehicle
« on: September 18, 2011, 12:38:46 PM »
I decided to make a quick fun private vehicle. It was simple to code. When I spawned my vehicle my Blockland crashed. It happens everytime I spawn it. I have no idea in scripting vehicles so some code may be stupid.

Quote
datablock WheeledVehicleData(FlyingHorseVehicle)
{
   category = "Vehicles";
   displayName = " ";
   shapeFile = "Add-ons/Vehicle_Horse/horse.dts"; //"~/data/shapes/skivehicle.dts"; //
   emap = true;
   minMountDist = 3;
   
   numMountPoints = 1;
   mountThread[0] = "sit";

   maxDamage = 200.00;
   destroyedLevel = 200.00;
   speedDamageScale = 1.04;
   collDamageThresholdVel = 20.0;
   collDamageMultiplier   = 0.02;

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

   maxSteeringAngle = 0.9785;  // Maximum steering angle, should match animation
   integration = 4;           // 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     = jeepTire;
   defaultSpring = jeepSpring;
   flatTire        = jeepFlatTire;
   flatSpring     = jeepFlatSpring;

   numWheels = 0;

   // Rigid Body
   mass = 200;
   density = 5.0;
   drag = 0.6;
   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 = 12000; //4000;       // Engine power
   engineBrake = 2000;         // Braking when throttle is 0
   brakeTorque = 4000;        // When brakes are applied
   maxWheelSpeed = 20;        // Engine scale by current speed / max speed

   rollForce      = 900;
   yawForce      = 600;
   pitchForce      = 1000;
   rotationalDrag      = 0.2;

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

   isSled = false;

   forwardThrust      = 3000;
   reverseThrust      = 2000;
   lift         = 100;
   maxForwardVel      = 40;
   maxReverseVel      = 40;
   horizontalSurfaceForce   = 130;   // Horizontal center "wing" (provides "bite" into the wind for climbing/diving and turning)
   verticalSurfaceForce   = 130;
   rollForce      = 4000;
   yawForce      = 6000;
   pitchForce      = 6000;
   rotationalDrag      = 0.5;
   stallSpeed      = 10;

//   forwardThrust      = 2000;
//   reverseThrust      = 2000;
//   lift         = 100;
//   maxForwardVel      = 70;
//   maxReverseVel      = 70;
//   horizontalSurfaceForce   = 100;   // Horizontal center "wing" (provides "bite" into the wind for climbing/diving and turning)
//   verticalSurfaceForce   = 100;
//   rollForce      = 6000;
//   yawForce      = 6000;
//   pitchForce      = 4000;
//   rotationalDrag      = 0.5;
//   stallSpeed      = 10;
//
//   forwardThrust      = 2500;
//   reverseThrust      = 500;
//   lift         = 15000;
//   maxForwardVel      = 60;
//   maxReverseVel      = 10;
//   horizontalSurfaceForce   = 500;   // Horizontal center "wing" (provides "bite" into the wind for climbing/diving and turning)
//   verticalSurfaceForce   = 500;
//   rollForce      = 5000;
//   yawForce      = 5000;
//   pitchForce      = 5000;
//   rotationalDrag      = 0.1;
//   stallSpeed      = 10;

   splash = vehicleSplash;
   splashVelocity = 4.0;
   splashAngle = 67.0;
   splashFreqMod = 300.0;
   splashVelEpsilon = 0.60;
   bubbleEmitTime = 1.4;
   splashEmitter[0] = vehicleFoamDropletsEmitter;
   splashEmitter[1] = vehicleFoamEmitter;
   splashEmitter[2] = vehicleBubbleEmitter;
   mediumSplashSoundVelocity = 10.0;   
   hardSplashSoundVelocity = 20.0;   
   exitSplashSoundVelocity = 5.0;
      
   //mediumSplashSound = "";
   //hardSplashSound = "";
   //exitSplashSound = "";
   
   // Sounds
   //   jetSound = ScoutThrustSound;
   //engineSound = idleSound;
   //squealSound = skidSound;
   softImpactSound = slowImpactSound;
   hardImpactSound = fastImpactSound;
   //wheelImpactSound = slowImpactSound;

   //   explosion = VehicleExplosion;
   justcollided = 0;

   uiName = "Flying Horse";
   rideable = true;
      lookUpLimit = 0.65;
      lookDownLimit = 0.45;

   paintable = true;
   

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

   steeringUseStrafeSteering = false; //this vehicle has pitch control, so we can't use strafe steering
};





37
Modification Help / What program is easyier/better?
« on: September 07, 2011, 12:38:08 AM »
Basicly I want know what modeling program is more easy and better. 3DS Max (And is there a way to get it free) , or Blender. I'm not going to use milkshake or dome other program.

38
Modification Help / Stranded Paradise Mega Update CANCLED
« on: August 18, 2011, 10:39:27 PM »
Last summer I was experimenting with mission editor and ended up making my first map ever, Stranded Paradise. To me it was amazing, I thought I over did myself. A couple days ago I looked around Stranded Paradise and was in disgust, the map looked awful. I now have many, many plans instore for this map. The whole island will be redone, new skybox and water textures. Secret models and Easter eggs. I just want to ask you, what would you like to see.

Plans
New and Smoother Terrian
Water reflecting skybox(maybe)
Better Skybox
Better fog
Story(Maybe)
Easter eggs
Wont look like dirt and grass mixed terribly

PROGRESS
Day 1

I was playing around with the fog so thats not staying unless I find a skybox and water texture that fits in. I still cant decide if I am doing sunset still or day. Anyways I was working with the terrian. The water texture isnt staying either.

39
Mapping Help / Color Code for fog?+ ERRORS
« on: August 17, 2011, 07:25:54 PM »
What kind of color code does the fog in mission editor use? Is there a chart of the codes and color?

I also can't even load the map due to errors. Halp

40
Off Topic / Gaming PC
« on: August 15, 2011, 12:59:53 PM »
Yes I know I made a topic about this a long time ago but I'd like to know what this pc is compatible of.
http://www.cyberpowerpc.com/system/Back_To_School_2011/
All the stats are here but in customization I added a NVIDIA GeForce GT 430 1GB 16X PCI Express video card.

41
Modification Help / "Onfire" Function on Pickup
« on: August 15, 2011, 09:41:40 AM »
A friend of mine would like to know how do you make an item do the "onfire" function when you pick it up.

42
Off Topic / Is this PC good?
« on: August 01, 2011, 04:49:45 PM »
I was reading PC Gamer Magazine and found an add for a gaming PC for 569$. Since I'm not good with this kind of stuff I wanted to know if this computer could run L4D2 or Portal 2 and maybe some other games like Battlefield or AVA.
Stats:
GA-870A-USB3 Motherboard
ATI Radeon HD 6450 1 GB Video Card DirectX 11 support
4GB DDR3-1333 Memory
1TB SATA-III 7200 RPM Hard Drive
120mm Radiator
HD Surround sound
450W Power Supply
AMD Atlon II Dual Core CPU

43
Off Topic / Listening to music while checking forums?
« on: July 31, 2011, 09:04:25 PM »
For some reason now I always listen to music checking forums. It's like habit now. Anybody else do this?

44
Games / Call Of Duty: Black Ops Escalation DLC Review
« on: June 11, 2011, 10:02:06 AM »


Call of Duty Black Ops Escalation is the 2nd DLC for Black Ops. It features 4 new maps and a new installment in the zombie series "Call Of The Dead".

Zombies
play as the zombie-killing dream-team of Sarah Michelle Gellar, Robert Englund, Michael Rooker, and Danny Trejo against a new and unnerving zombie menace. Set in a mysterious, ice-covered, remote Siberian island and inspired by legendary writer and director George A. Romero, a group of four fearless explorers fight for their lives amidst an army of bloodthirsty Soviet zombies.(Taken from the website).

I had quite fun playing this map. George Romero follows you around the whole time and can get annoying. If you shoot him or get hit by him he gets mad and you have to lead him to water which if you stay in to long you freeze to death. This map is more of a challange than most maps. Includes new weapons and a new perk.

Multiplayer
Includes Stockpile, Zoo, Hotel, and Convoy

I havent played much of the multiplayer. The only map I didnt play was Convoy. I was kinda dissapointed in the multiplayer maps besides Zoo. Hotel is an okay map to. Stockpile is more of an objective gamemode map. Like I said I can't say much on the maps.

More Info: http://www.callofduty.com/blackops/dlc2/burgerman-video

Rating: 7/10

Is it worth 15$? Yes. Let me clarify this. If you have alot of friends who play and you enjoy the COD series it is.

45
Off Topic / I fell in love with a computer today
« on: May 22, 2011, 07:08:50 PM »
Today I went to some place were you could try out new video games or what so and I went on one of there PCs. I've been dieing for a PC and was going to build one in July. So I was playing games on it, shocked on how smoothly it ran games and I found it its for sale. 500$ for just CPU and 650$ with monitoer and speakers and a keyboard+mouse. I have 334$ and I am selling a crappy laptop I got from Comcast, my DSi, and Wii. Question is: Should I buy the CPU and get the assesorys cheaper from my guitar teacher who works for some computer shop or buy the 650$ one.

Pages: 1 2 [3] 4 5 6 7