Author Topic: Implosion Bomb  (Read 2878 times)

I think there should be an implosion bomb that sucks in everything within a certain radius of the bomb, and have an rtb pref of that radius.

....This would actually be pretty sweet. Laggy, but sweet.

....This would actually be pretty sweet. Laggy, but sweet.
gota agree with this :D


how would it be laggy? but i would have it suck for a while (5-10 seconds), then explode and push them away with a high velocity and damage

Make a sucker-weapon. It casts a ray towards you aim , attracting any bricks (FakeKill) that are small enough , and players. Would rock.

Been discussed before, not sure if it's possible or what.


There was a black hole bomb topic awhile back, we figured it wouldn't be good, Brb, fetching link

Edit:http://forum.blockland.us/index.php?topic=90677.0
« Last Edit: June 08, 2010, 04:30:15 PM by No, FROHman Elite! »

i want a wepon that makes a giant explosion and explodes the entire bedroom

i want a wepon that makes a giant explosion and explodes the entire bedroom
bigger mini nuke? wait if its that big might as well call it a nuke!
« Last Edit: June 08, 2010, 04:45:50 PM by U.S. Air Marshall »

Actually, I think it was NiXiLL or Fooly Cooly who gave me a weird code for making a Blackhole. It worked by impulsing all players within a radius toward a point. AKA, wouldn't really lag when done.

Shouldn't be too hard to adapt the script, although I've never been able to test it since no one joins my server when I want to test it. :cookieMonster:

Actually, I think it was NiXiLL or Fooly Cooly who gave me a weird code for making a Blackhole. It worked by impulsing all players within a radius toward a point. AKA, wouldn't really lag when done.

Shouldn't be too hard to adapt the script, although I've never been able to test it since no one joins my server when I want to test it. :cookieMonster:
'twas me. :3

Black hole bomb?
Also, It would be good for deletion. If you have a crapload of x64 cubes and use the bomb...now you have a little rubber toy ball.

Code: [Select]
//NiXiLL
function serverCmdCreateBlackHole(%client, %size) {
if(!%client.isadmin) {
messageClient(%client, "Admin Only");
return;
}
else if(!isObject(%client.player)) {
messageClient(%client, "You do not exist!");
return;
}
if(%size > 5000 || %size < 5) {
messageClient(%client, "Force must be between 5 and 5000");
return;
}
%force = %size*2;
schedule(250, 0, BlackHole, %client, %size, %force);
messageAll(-1,"\c3"@%client.getPlayerName()@" \c0has created a black hole!");
}
function BlackHole(%client, %size, %force) {
//for(%i = 0; %i < ClientGroup.getCount(); %i++) {
// %c = ClientGroup.getObject(%i);
// if(isObject(%c.player) && %c != %client)
// %c.player.applyImpulse(0, vectorScale(vectorNormalize(vectorSub(%client.player.getPosition(), %c.player.getPosition())), %force));
//}
initContainerRadiusSearch(%client.player.getPosition(),%size,$TypeMasks::PlayerObjectType);
while((%targetObject = containerSearchNext()) != 0) {
if(%targetObject != %client.player) {
if(!isObject(%targetObject)) {break;}
%targetObject.applyImpulse(0, vectorScale(vectorNormalize(vectorSub(%client.player.getPosition(), %targetObject.getPosition())), %force));
}
}
}

Quote from: MSN
Lumii :3 says:
*nu
*i refuse
*i won't post my own crappy code
*besides
*<3 ruby
*</3 TQS
*i should post a ruby topic