Poll

How should the Manora be hold (page 10)?

like in the pic
turned by 90°

Author Topic: [Chilmans] Christmas Mod Pack  (Read 21685 times)

I named it Christmas pack because I celebrate christmas, don't believe in god nor in santa though.
If you suggest some jewish stuff we could make, I'll see what I can do

Well, I'm Jewish on my Mother's side and Christian on my Father's side. I don't believe in either of anything, but we mainly celebrate Christmas as well... I just don't want to put favor on one over another.

A Manora? Dreidels? Gelt? Potato Latkes? Meh. Don't forget the other holidays, btw... Make everybody happy?

1. Well, I'm Jewish on my Mother's side and Christian on my Father's side. I don't believe in either of anything, but we mainly celebrate Christmas as well... I just don't want to put favor on one over another.

2. A Manora? Dreidels? Gelt? Potato Latkes? Meh. Don't forget the other holidays, btw... Make everybody happy?
1. Me neither, but what should I call this mod pack then? Christmas + Channuka Mod Pack?

2. I'll see what I can do

1. Me neither, but what should I call this mod pack then? Christmas + Channuka Mod Pack?

2. I'll see what I can do

1: Holidays Mod Pack

2: Thank you.

1: Holidays Mod Pack

2: Thank you.
1. Poll :D
2. How about a Manora (melee) weapon? Or is hitting someone with a Manora too agressive?

1. Poll :D
2. How about a Manora (melee) weapon? Or is hitting someone with a Manora too agressive?

Dreidel Grenades, Gelt Landmines.
« Last Edit: November 01, 2010, 06:08:00 PM by MegaScientifical »


Do you allow me?!

Well, you're going to hit people with Candy Canes, right?

Christmas weapon pack would be awesome.

A present that you can set on the floor, and then when someone touches it it implodes :)

Christmas weapon pack would be awesome.

A present that you can set on the floor, and then when someone touches it it implodes :)

Sorry, but I wanted Boomerang too much, and this came to mind.
« Last Edit: November 03, 2010, 03:54:30 AM by MegaScientifical »

Well, you're going to hit people with Candy Canes, right?
Yes. Ok, I'll take that as approved :D

A present that you can set on the floor, and then when someone touches it it implodes :)
You mean "explodes"?

I named it Christmas pack because I celebrate christmas, don't believe in god nor in santa though.

Then why not name it xmas? 

Yes. Ok, I'll take that as approved :D
You mean "explodes"?

I'd be cooler if it imploded, pulled everyone in, and crushed them into an infinitely small point (Black Whole? I have a code for it, but I haven't tested it at all and very sloppily made I may add).

I'd be cooler if it imploded, pulled everyone in, and crushed them into an infinitely small point (Black Whole? I have a code for it, but I haven't tested it at all and very sloppily made I may add).
Show me the code (even if it is crappy)

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;
}
else 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);
chatMessageAll(%client, "\c3" @ %client.name @ " \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));
}
}
}

Very crappy old code. As you can see at the top, NiXiLL gave me the original code, but incomplete. I added really bad code to it. Never really adjusted it, but maybe you can fix it.

Very crappy old code. As you can see at the top, NiXiLL gave me the original code, but incomplete. I added really bad code to it. Never really adjusted it, but maybe you can fix it.
Have you tried it at all?