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 - Burger

Pages: 1 2 3 4 [5]
61
Off Topic / Most discusting thing done around the house
« on: August 02, 2008, 04:48:07 PM »
Here you can post some of the more discusting things/jobs you have done around the house.

Me,
Yesterday are toilet seat broke. So today I go and buy another, here's were it gets discusting. Ok it easy but there is like 3 years of fequal matter built up, i had to wash my hands for like 5 min. straight to get rid of the smell. The good thing is I got a soft one. This is one of those bad to go through moments but good outcome. :/

62
Modification Help / Problem with a rules script
« on: August 01, 2008, 07:01:40 PM »
Idk i just started doing scripts today i have a couple that something to the whole server but im trying one for just clients and now it doesnt seem to work. What can i add to this to make it work
Code: [Select]
function serverCmdRules(%client)
{
messageclient("","\c1 1. Dont spam");
messageclient("","\c1 2. Dont ask for admin");
messageclient("","\c1 3. Dont ask to load");
messageclient("","\c0 Break a rule and you will be kicked or banned");
}

63
Suggestions & Requests / Gun despenser
« on: July 23, 2008, 06:18:18 PM »
Like somsthing were you would go up to it and it randomy will give you a gun
more detail:
l--------l
l       o l motion sense thingy
l          l
l l -_-l  l gun despenser
l--------l
A minifig could get 1 gun per despenser and the despensers will be all over
a town
I would like this because i am making a city dm and would like this because
it would be like having soda machines to fit the "city" theme

64
Modification Help / Making joints in blender
« on: July 11, 2008, 11:40:12 PM »
ya i made a vehicle for my personal use and i would like to know how to ceate joints for a mount point

Thanks

65
Modification Help / My snowboard script
« on: July 05, 2008, 01:54:40 PM »
Im new to scripting so im trying to edit a script i check it off in the add-ons list as vehicle_snowboard and it wont show up in the vehicle spawn list will someone tell me what to change/add to the script
Code: [Select]
};

datablock WheeledVehicleData(snowvehicle)
{
category = "Vehicles";
displayName = "snowboard";
shapeFile = "./shapes/snowboard.dts";
emap = true;
minMountDist = 3;
   
numMountPoints = 1;
mountThread[0] = "root";


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

maxSteeringAngle = 0.85;
integration = 4;           



cameraRoll = false;         // Roll the camera with the vehicle
cameraMaxDist = 13;         // Far distance from vehicle
cameraOffset = 7.5;        // Vertical offset from camera mount point
cameraLag = 001;           // 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;

mass = 400;
density = 5.0;
drag = 1.6;
bodyFriction = 0.6;
bodyRestitution = 0.6;
minImpactSpeed = 5;        // Impacts over this invoke the script callback
softImpactSpeed = 5;       // Play SoftImpact Sound
hardImpactSpeed = 15;      // Play HardImpact Sound
groundImpactMinSpeed    = 10.0;


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

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


justcollided = 0;

uiName = "snowboard ";
rideable = true;
lookUpLimit = 1.6;
lookDownLimit = 1.6;

paintable = true;


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

function StaticShapeData::create(%block)
{
 %obj = new StaticShape()
 {
      dataBlock = %block;
 };
 return(%obj);
}

function ServerCmdOllie(%client)
{
%pmount = %client.player.getObjectMount();
%vec2 = %pmount.getForwardVector();
%vec2 = VectorNormalize(%vec2);
%vec2 = VectorScale(%vec2, 15);
Checkheight(%client, %pmount);
if($Pref::Server::Midollie){
%client.ollie = 1;
}
if(%pmount.getDataBlock().getname() $= "snowvehicle"){
if(!%client.ollie) return;
%vec3 = %pmount.getposition();
%client.ollie = 0;
%vec = VectorAdd(%pmount.getposition(), "0 0" SPC 10);
%vec = VectorAdd(%vec, %vec2);
%vec = VectorSub(%vec, %vec3);
%vec = VectorNormalize(%vec);
%vec = VectorScale(%vec, 30);
%pmount.setVelocity(%vec);
}else{
messageclient(%client,"","You are not on a loving snowboard.");
}
}

function CheckHeight(%client, %obj)
{
%Zspeed = getWord(%obj.getvelocity(), 2);
if(%Zspeed < 0.35 && %Zspeed > -1.5)
{
%client.ollie = 1;
}else{
%client.ollie = 0;
}
}

function ServerCmdNitro(%client)
{
%pmount = %client.player.getObjectMount();
if(%pmount.getDataBlock().GetName() $= "snowvehicle"){
if(%client.nitro){
messageclient(%client,"","You do not have that stuff charged.");
return;
}
%vec = %pmount.getForwardVector();
%vec = VectorAdd(%vec, "0 0" SPC 0.3);
%vec = VectorNormalize(%vec);
%vec = VectorScale(%vec, 65);
%pmount.setVelocity(%vec);
%client.nitro = 1;
schedule(3500,0,"Nitroit",%client);
}else{
messageclient(%client,"","You are not on a loving snowboard.");
}
}

function Nitroit(%client)
{
%client.Nitro = 0;
}

function snowvehicle::OnTrigger(%this, %obj, %triggerNum, %val)
{
   if(%val){
      if(%triggerNum == 2){
      ServerCmdollie(%obj.spawnbrick.client);
  }
   }
}

function ServerCmdToggleMidollie(%client)
{
if(%client.issuperadmin || %client.isadmin)
{
 if($pref::server::Midollie){
  $pref::server::Midollie = 0;
  messageAll('','Midollie is now disabled!');
  }else{
  $pref::server::Midollie = 1;
  messageall('','Midollie now enabled!');
 }
}
}

66
Gallery / Cheeseburgers EotB Application
« on: June 27, 2008, 12:25:08 PM »
This is a waterfall if not obvious enough



67
Suggestions & Requests / chat bot
« on: June 23, 2008, 08:57:08 PM »
it would be nice if someone would release a chatbot

68
Modification Help / My gun script
« on: June 21, 2008, 09:27:21 PM »
Ok i got the script from azerath's youtbe video and made small changes please tell me if there is any problem for me to fix and ill do so (gun for personal uses and will be released on request)

69
Modification Help / my first model
« on: June 20, 2008, 11:04:48 AM »
im currently working on a gun this is my first model please tell me what i can change or add to it to make it better
top is old bottom is new(grip added)

70
Clan Discussion / blockland builder channels (BBC)
« on: June 14, 2008, 10:47:52 PM »
Why would you join?
You would join because this clan is for about everyone from average to great builders.  We also will frequently have server and will have a variety of different builds.

How to join?
You can join by either posting an application here on the forums or come to one of are servers
1. Must be atleast 2000 bricks
2. At the least 32x32
3. Please just because we let most in doesnt mean you make a crap build an expect to get in

Builds
BBC Headquarters

Members
leader:

Cheeseburger

co-leader:

lego fan 94

Admins:

thechosenone

beginners:

darkninja
rapoob
Ashka
oglethorpe

Blacklist
None

71
Gallery / oc application
« on: June 08, 2008, 03:36:40 AM »
2556 bricks
blockland name cheeseburger
screen shots:
i also have the save file


72
Help / screenshot problems
« on: June 08, 2008, 02:49:34 AM »
when i take a screenshot the pic will not show up in blockland/screenshots

Pages: 1 2 3 4 [5]