16
Help / Re: Physics vehicles limit not increasing?
« on: April 06, 2012, 06:07:20 PM »
Why do you need it higher if you can only drive one vehicle at a time?
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.
Those commands look right to meaddVelocity has to have an X, Y, and Z. Not just one number.
Server crashed, but I'm going to lay a few updates in, and might have to make a new city, it appears that the old city looks boring, no worries Jasa and I discussed a few things that we're going to do, we're going to do a small city layout, and hoping for great builds.I would like to add to that.
package NoBaseplates
{
function GameConnection::onClientEnterGame(%client)
{
Parent::onClientEnterGame(%client);
messageClient(%client,'',"\c4This server is running the No Baseplates for Non Admins script. This means non-admins cannot build any brick in the baseplate section.");
}
function fxDTSBrick::OnPlant(%this)
{
parent::OnPlant(%this);
%client = %this.getGroup().client;
if(%this.getDataBlock().category $= "Baseplates" && !%client.isAdmin && %this.isPlanted)
{
MessageClient(%client, '', "\c6Non-admins aren't allowed to plant any bricks in the baseplate section.");
return %this.delete();
}
}
};
ActivatePackage(NoBaseplates);
Rewrote the code. Not sure if this works.