1
Gallery / Re: Where The forget Did THAT Come From? - Weird, Strange, And Odd Pictures.
« on: September 03, 2009, 03:15:12 PM »
I think I have you beat.

This was like a year ago,
graphic driver update helped.
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.
I think I have you beat.
Connecting to server...
Looking for someone you can chat with. Hang on.
You're now chatting with a random stranger. Say hi!
Omegle is not a dating site. Please try to have interesting conversations here!
Stranger: heyy, male,17, here looking for a female with a webcam :)...and msn
You: hey, shemale, 50
Your conversational partner has disconnected.
Thats a russian bomb not a American one.I am very well aware of that.
-Cannibalism
what do you use to make it
Eh, this is one of those things where a lot of people need to have the mod to make it accurate.
RTB should make something like this, and make it so that you can see the rating in the server list.
/resetVehicles
function serverCmdrespawnallvehicles(%obj)
{
if(!%client.isAdmin|| %client.isSuperAdmin)
return;
if($Server::BrickCount > 0)
messageAll('Msgrespawn', "There is nothing to respawn.");
%groupCount = MainBrickGroup.getCount();
for(%i = 0; %i < %groupCount; %i++)
{
%group = MainBrickGroup.getObject(%i);
%count = %group.getCount();
for(%j = 0; %j < %count; %j++)
{
%brick = %group.getObject(%j);
if(!(%brick.getType() & $TypeMasks::FxBrickAlwaysObjectType))
continue;
if(%brickData.uiName $= "Vehicle Spawn")
{
fxDTSBrick::spawnVehicle(%brick)
}
}
}
}