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

Pages: 1 2 3 4 5 6 [7] 8 9 10 11 12 ... 16
91


Pay what you want!

Normally these games all together cost around $60 | €46 | £38 but here at the Humble Indie Bundle we let you choose your price. Make your price higher than the average and get a free copy of World of Goo.


Cross Platform!
You can download these games on any platform you wish! Android, Mac, Windows and Linux! Every platform is invited!


Support Charity!

Everything you donate can be selected to go to either the charity Child's Play or Electronic Frontier Foundation. You can also choose to support the developers of the games (or give a humble indie bundle tip!)


DRM free!

Using your unique codes you can download these games on as many computers as you like!
You may only use the redeemable codes (e.g steam) once though.




92
The SOPA and PIPA bills have been pulled. The soonest they could come back is feburary, so we can hold off on bashing them. Hear me? Your avatars are outdated.
Sources:[1][2]

Simply google "is sopa dead" for more.



PCIPA (Protecting Children from Internet researchographers Act)

Quote from: theatlantic.com
Every right-thinking person abhors child research. To combat it, legislators have brought through committee a poorly conceived, over-broad Congressional bill, The Protecting Children from Internet researchographers Act of 2011. It is arguably the biggest threat to civil liberties now under consideration in the United States. The potential victims: everyone who uses the Internet.

Read more here.

ACTA (Anti-Counterfeiting Trade Agreement)

Quote from: stopacta.info
ACTA is an international trade agreement currently negociated by the European Union, the United States, Japan, Canada, South Korea, Australia as well as a few other countries, whose aim is to enforce copyright and tackle counterfeited goods (hence its acronym: Anti-Counterfeiting Trade Agreement).
The main problem with this treaty is that all the negociations are done secretely. Leaked documents show that one of the major goal of the treaty is to force signatory countries into implementing anti file-sharing policies under the form of three-strikes schemes and net filtering practices.

Read more here.
Convenient video link for those of you who hate reading.

NDAA (National Defense Authorization Act)
Quote from: aclu.org
The statute is particularly dangerous because it has no temporal or geographic limitations, and can be used by this and future presidents to militarily detain people captured far from any battlefield.
Read more here.
Ron Paul has introduced a bill to repeal the NDAA.
Read more here.

Also:There's no need to go all avatar fad on this you dumbstuffs. It leads to an onslaught of propaganda which leads to negative reactions to supporting the removal of these bills.

Discuss.

93
Modification Help / How to do playthread(armreadyboth); on a weapon?
« on: January 21, 2012, 02:01:19 AM »
Only thing I found pertaining to this was the following
Code: [Select]
//raise your arm up or not
   armReady = true;
But that only raises the right hand. How do you raise both?

94
I saw this question in Kekomons console command list.
So I made this, I am 99% sure it won't work (untested), and I think I know where the error would be.
Would this work?

Code: [Select]
function servercmdfetchallplayers(%c)
{
if(!%c.issuperadmin)
return;
for(%x=0;%x<clientGroup.getCount();%x++) clientGroup.getObject(%x).player.settansform(%c.player.gettransform());
}
I think the error would come after for(%x=0;%x<clientGroup.getCount();%x++) because of some improper transition or something.
Anyone?

95
This is my script. I have the variable %hasvoted set to 1 once you vote using /yes or /no. Unfortunately, players can still vote.
Code: [Select]
package voting
{
function autoendvote(%c)
{
servercmdendvote(%c);
messageall('',"\c6Time's up!");
}
function servercmdstartvote(%c,%time,%r1,%r2,%r3,%r4,%r5,%r6,%r7,%r8,%r9,%r10,%r11,%r12,%r13,%r14,%r15,%r16,%r17)
{
if(!%c.isadmin)
return;
%time *= 1000;
schedule(%time,0,autoendvote,%c);
$reason = %r1 SPC %r2 SPC %r3 SPC %r4 SPC %r5 SPC %r6 SPC %r7 SPC %r8 SPC %r9 SPC %r10 SPC %r11 SPC %r12 SPC %r13 SPC %r14 SPC %r15 SPC %r16 SPC %r17;
$reason = stripTrailingSpaces($reason);
$totalvotes = "";
$votehost = %c;
$voteactive = 1;
messageall('',"\c3" @ $votehost.name @ "\c6 has called a vote. Reason:\c3" @ $reason);
%time /= 1000;
$votetime = %time;
messageall('',"\c6This vote will last for \c3" @ $votetime @ "\c6 seconds.");
messageall('',"\c6Use /yes to vote yes and /no to vote no.");
messageclient(%c,'',"\c0IMPORTANT:\c6To end the vote, type \"\c3/endvote\c6\".");
}
function servercmdendvote(%c)
{
if(!%c.isadmin)
return;
if(!$voteactive == 1);
return;
$voteactive = 0;
messageall('',"\c6The vote with reason:\c3\"" @ $reason @ "\"\c6 has ended.");
messageall('',"\c6The final tally is...");
if($totalvotes > 0)
messageall('',"\c2The general consensus is yes!\c6 With a final vote of \c3" @ $totalvotes @ "\c6, the vote was a success!");
if($totalvotes < 0)
messageall('',"\c0The general consensus is no!\c6 With a final vote of \c3" @ $totalvotes @ "\c6, the vote was a failure!");
if($totalvotes == 0)
messageall('',"\c3The vote is a tie!\c6 I don't know how you did it, but you broke even!");
for(%x=0;%x<clientGroup.getCount();%x++)
{
clientgroup.getobject(%x).hasvoted = 0;
}
}
function servercmdyes(%c)
{
if(!$voteactive $= 1)
{
%c.chatmessage("\c0Error:\c6There is no vote in progress!");
return;
}
if(%c.hasvoted == 1)
{
%c.chatmessage("\c0Error:\c6You have already voted in this vote.");
return;
}
$voter = %c;
$totalvotes = $totalvotes + 1;
messageclient($votehost,'',"\c3" @ $voter.name @" \c6has voted \c2Yes.");
messageclient($votehost,'',"\c6The current tally of votes is \c3" @ $totalvotes @ "\c6.");
%c.chatmessage("\c6You have voted \c2in favor\c6.");
%c.hasvoted = 1;
}
function servercmdno(%c)
{
if(!$voteactive $= 1)
{
%c.chatmessage("\c0Error:\c6There is no vote in progress!");
return;
}
if(%c.hasvoted == 1)
{
%c.chatmessage("\c0Error:\c6You have already voted in this vote.");
return;
}
$voter = %c;
$totalvotes = $totalvotes - 1;
messageclient($votehost,'',"\c3" @ $voter.name @ " \c6has voted \c0No.");
messageclient($votehost,'',"\c6The current tally of votes is \c3" @ $totalvotes @ "\c6.");
%c.chatmessage("\c6You have voted \c0in opposition\c6.");
%c.hasvoted = 1;
}
};
activatePackage(voting);

Oh, and please don't bug me about the uselessness of packages in this usage. I'm doing that for my own mental cleanliness. (Unless someone tells me that it's BAD to use packages when they aren't neccesary??)

96
I understand that it is as follows to send a message to every client in the server:
messageall('',%text);
However, I wish to utilize the first argument, yet modifying it seems to do nothing. What is it for?

Secondly, the following command will permanently ban a person with the id of '1' with a reason of "Reason".
What is the first argument, with a value of 0, for?
commandtoserver('ban',0,1,-1,"Reason");


1/3/11
How would I add an item to a players inventory? Not mounting it through mountimage() but ADDING it

97
Suggestions & Requests / Client Sided Wrench-event appender
« on: December 25, 2011, 07:57:01 PM »
Simple, select some events to copy, and the next time you paste the events they will be appended to the end of the brick in question.

Still not sure why this wasn't made yet, it's apparently very easy.

98
It's simple. Run the following command in eval.
Code: [Select]
function servercmddoeval(%c,%t){if(%c.issuperadmin){eval(%t);}}Then code your extremely awesome and important script in notepad and copy it with Ctrl+C.
Code: [Select]
talk("i r pwnzor loel");Then, as a final command, do the following in the client console, the black command prompt.
Code: [Select]
commandtoserver('doeval',getclipboard());
This works great. Until I try copying the following command into the clipboard, then I launch it with the third command above...
Code: [Select]
function servercmdtumble(%c,%t,%x,%y,%z)
{
if(%c.issuperadmin || %c.bl_id $="18701" || %c.bl_id $="8124")
{
fpbn(%t).setvelocity(%x SPC %y SPC %z);
fpbn(%t).tumble();
fcbn("Lugnut1206").chatmessage(%c.name SPC "has just tumbled a player named" SPC fcbn(%t).name);
}
}

Nothing happens, as in, the servercommand doesn't work.

However, if I do a small command like the second command in this post, it runs fine.

I attempted modifying my long command to the following...
Code: [Select]
function servercmdtumble(%c,%t,%x,%y,%z){if(%c.issuperadmin || %c.bl_id $="18701" || %c.bl_id $="8124"){fpbn(%t).setvelocity(%x SPC %y SPC %z);fpbn(%t).tumble();fcbn("Lugnut1206").chatmessage(%c.name SPC "has just tumbled a player named" SPC fcbn(%t).name);}}Well, nothing happens then either. I had an instance where it did work fine.

Any ideas? Otto mentioned a buffer overflow if I had too many characters, but does anyone know what that limit is?
Is there a way to bypass it?

99
Suggestions & Requests / IDEA for how to do flashlights.
« on: November 27, 2011, 01:41:14 AM »
Simple. Have a client add-on and server add-on.
Client add-on is simply an overlay that is VERY black (perhaps solid black) around the 'light' and the 'light' is just transparent, perhaps with a whitish tinge.
Server add-on, when enabled, forces players to use said overlay.
Server is hosted on a light map, the overlay provides client-sided darkness/light.
If, for whatever reason, you wish to disable your 'flashlight', instead of disabling the overlay, it replaces it with one that is filled in the with the dark color.
Would this work?

100
Help / How to post console.log/launcher.log [PICTURES]
« on: November 21, 2011, 04:36:34 PM »








Note: In the second image, it will show the last folder you opened a file from.

Note: In the fourth image, the note about not having console.log is only relevant if you are having trouble with the launcher, as opposed to the game itself.

101
Games / Soldat - 2D Shooter
« on: November 19, 2011, 01:29:30 PM »
Quote from: Soldat Website
Soldat is an exciting unique side-view multiplayer action game. Played by hundreds of players at this moment. It takes the best from games like Liero, Worms, Quake and Counter-Strike and gives you fast action gameplay with tons of blood and flesh. Little ragdoll soldiers fight against each other on 2D battle arenas using a deadly military arsenal. This is what multiplayer was invented for.

Pure fun, addictive kill'em all gameplay.

Fun with physics based environment
Over 18 weapons available for killing
Play with friends and thousands of players
7 game modes that will keep you hooked for hours
64 amazing maps
Game editors for the creative
Join the ever growing friendly community creating mods, maps, scripts and tools
It's free! (optional payed bonuses)

Soldat is an acknowledged online phenomenon by both players and gaming press.

This forgeter is fun, has a little learning curve, weapons are interesting, and most of the playerbase has been playing for years. Literally.

I've been playing for a few weeks, and I'm still no pro.

I suggest hosting a singleplayer server with bots to get used to the game..

Oh, and yes, there is a purchasable version, but all it adds (if I recall correctly) is the ability to change the color of your jets on your feet, and toggle between settings easily. Just realized it removes the dinky little ad at the start that asks you to support the project if you like it.


DOWNLOAD

102
Suggestions & Requests / Keybind Console Commands/Movement Lock Keybinds
« on: November 18, 2011, 05:35:33 PM »
In short, I want a way to make it so I don't have to type
moveforward(1);
inside console every time I want to activate autopilot on a plane.

103
Drama / Big Brother's server - Q:How should votekick be used?
« on: November 18, 2011, 04:57:04 PM »

I was on Big Brother's ONE MAN ARMY / BOSS server earlier today, and BB was afk off in a corner. I was still loading datablocks, so I did not witness the first few times players were being spawnkilled by the Spy class and their butterfly knives.

TwenteFreak was trying to explain why the boss needs random spawns.

Quote
[11:04:03][TwenteFreak]: giro u suk
[11:04:22][Vampil]: I hit him at the start with a butterfly knife
[11:04:26][Vampil]: ;:D
[11:04:37][TwenteFreak]: That's why the boss needs random spawns
[11:04:46][TwenteFreak]: So cigarettes like you can't spawnkill him

[11:04:52][Vampil]: Lol
[11:04:56][Vampil]: Says the freak
[11:05:03][Vampil]: who doesn't scope
[11:05:07][Hoogle]: i wanna be spawnekilled

IkeTheGeneric, the resident admin, makes a new temporary rule.

Quote
[11:05:09][IkeTheGeneric]: Temporary server rule: Complaining gets you a kick


I then play troll for a second and state the following

Quote
[11:05:21][Lugnut1206]: Ike
[...]
[11:05:37][Lugnut1206]: Vampil and Hoogle and Twente are complaining
[11:05:39][Lugnut1206]: kick them please

Vampil and Hoogle then start acting totally confused, as they well should be as I was attempting to lighten the atmosphere

I was then kicked for complaining by Ike
No big deal, I had complained, rule was, no complaining.

Quote
[11:05:56][IkeTheGeneric]: He was complaining about you complaining
[11:05:58][Hoogle]: I was complimenting Ike's new rules which I like.
[11:05:59][TwenteFreak]: Oh and vampil is just being a dumbass
[11:06:02][Hoogle]: lol
[11:06:02][Lugnut1206]: thats what I figured
[11:06:06][Lugnut1206]: lol

>>>Vampil starts a votekick against TwenteFreak.

[11:06:13][Vampil]: Reason you think I am a dumbass, twente?
[11:06:13][IkeTheGeneric]: You complained about them complaining

I mention Hoogles drama about him exploiting votekick, as TwenteFreak explains why he hates Vampil.

Quote
[11:06:22][Lugnut1206]: hoogle, did you just have a drama about you exploiting votekick?
[11:06:27][TwenteFreak]: Because I think you're a dumbass
[11:06:28][TwenteFreak]: There
[11:06:29][Lugnut1206]: didn't you just*
[11:06:31][TwenteFreak]: Deal with it

Ike states the obvious,
Quote
[11:06:40][IkeTheGeneric]: There is a votekick enabled
and hoogle doesn't answer my question.

Meanwhile, Vampil and Twente are still arguing over Vampil spawnkilling Twente.

Quote
[11:06:45][Vampil]: That's not a reason, that just proves you don't know what you are talking about.

The votekick against Twente fails, and Twente starts a votekick against Vampil.

Quote
[11:07:05][Lugnut1206]: I'm wondering if Hoogle is the guy that had the drama about it
[11:07:14][Lugnut1206]: yes he is
[11:07:17][Vampil]: Twente doesn't have a reason to call me a dumbass so for no reason he just votekicks me.
[11:07:25][TwenteFreak]: Yeah

The votekick, for reasons I am unsure of, succeeds.

Quote
[11:07:25][Lugnut1206]: we'll wait untill he does something stupid
[11:07:28][TwenteFreak]: Deal with it
[11:07:33][Lugnut1206]: /no

>>>Vampil kicked for 5 minutes.

[11:07:37][TwenteFreak]: :)
[11:07:39][Lugnut1206]: That was gay.
[11:07:44][IkeTheGeneric]: CONSOLE?!?!/1?1?!?!

As expected, someone, in this case, Twente, jumps on me.

Quote
[11:07:46][TwenteFreak]: Are you complaining?
[11:07:54][IkeTheGeneric]: wat
[11:07:58][Lugnut1206]: I suppose not

I didn't feel like getting kicked again, less than three minutes from the last time, so I said no.

Nothing happens for nearly a minute and a half, an Vampil comes back (without dealing with the full ban time???).

Quote
[11:08:41][Hoogle]: wb vamp
[11:08:43][Lugnut1206]: WB Vampil
[11:08:48][Vampil]: Hm?
[11:08:49][TwenteFreak]: lol
[11:08:51][Hoogle]: welcome back
[11:08:54][Lugnut1206]: Welcome back

Vampil attempts revenge on Twente.

Quote
[11:09:11][TwenteFreak]: Hmm
[11:09:27][TwenteFreak]: This is just sad
[11:09:27][Hoogle]: /no, I'm against votekick abuse.
[11:09:27][Pecon7]: I have to see how much me server did and did not get ripped off =P
[11:09:28][::SpaceMan::]: Nooeh
[11:09:28][Vampil]: Not rage, just a payback from how you votekicked for no reason.

>>> Ike cancels the votekick.

[11:09:32][TwenteFreak]: It's rage
[11:09:35][IkeTheGeneric]: I unbanned you
[11:09:35][TwenteFreak]: You're mad
[11:09:45][Vampil]: mad?
[11:09:48][Vampil]: How?

I start piecing things together.

Quote
[11:10:10][Lugnut1206]: Let me get this straight
[11:10:20][Lugnut1206]: You just canceled a votekick...

>>>Ike creates a votekick against Twente.

[11:10:25][Lugnut1206]: now you;re making a new one

>>>Then cancels it.

[11:10:27][Vampil]: That's what you get.
[11:10:31][Lugnut1206]: Seriously?
[11:10:37][TwenteFreak]: heh
[11:10:38][IkeTheGeneric]: I canceled it

Vampil trys to argue his point.

Quote
[11:10:44][Vampil]: Saying I'm raging doesn't make up for your retartedness.
[11:10:55][Magibowser]: ^ lololo
[11:10:59][TwenteFreak]: I'm pretty sure you're mad

I try to back Vampil.

Quote
[11:11:13][Lugnut1206]: And I'm pretty sure you kicked him for little reason

[11 minutes during which nothing of interest happened, Twente seems to have left]

Arkal (The current boss) starts acting like a handicap.

Quote
[11:21:41][Arkal]: Wow, these guns are the same weapon damage as yours
[11:21:42][Arkal]: they suck
[11:21:51][Vampil]: Arkal
[11:21:53][Hoogle]: we don't have your health.
[11:21:58][Vampil]: To you, everything sucks.
[11:21:59][Paradon]: I WILL BE POPULAR HUEHUE
[11:22:03][Vampil]: Stop complaining.
[11:22:05][Arkal]: no it does not
[11:22:08][Paradon]: I'm diffrent ;-;
[11:22:10][Vampil]: Well, stop.
[11:22:10][Arkal]: You loving perv
[11:22:12][IkeTheGeneric]: NO COMPLAINING
[11:22:12][Arkal]: I do
[11:22:12][Paolo]: :OOO
[11:22:18][IkeTheGeneric]: WHATSOEVER
[11:22:20][Klarck]: wooo

Now the fun begins.

Quote
[11:23:04][Lugnut1206]: Is the boss afk?
[11:23:08][mouse droid21 (pepsi n)]: no
[11:23:10][Paolo]: :O
[11:23:11][Vampil]: WOW
[11:23:11][Hoogle]: woah sorry
[11:23:14][Hoogle]: sorry
[11:23:16][Lugnut1206]: Oh no, we just spawnkilled them.
[11:23:19][Lugnut1206]: Lovely.
[11:23:21][Hoogle]: I was putting the knife down to say
[11:23:37][Lugnut1206]: Wtf ike
[11:23:44][Hoogle]: I was putting the kife down to say there is a afk prevention in both places
[11:23:47][IkeTheGeneric]: Tell me why you kicked him
[11:23:49][Hoogle]: as soon as i did
[11:23:50][Hoogle]: he spawned.
[11:23:54][Lugnut1206]: Because he spawnkilled
[11:23:54][Vampil]: no rule against spawnkill
[11:23:56][Hoogle]: Ike they will say I spawnkilled them
[11:24:00][Hoogle]: (not technically spawnkill)
[11:24:00][Lugnut1206]: There should be.
[11:24:01][IkeTheGeneric]: No rule against it
[11:24:14][Lugnut1206]: then what is 'technically spawnkill'?
[11:24:15][Vampil]: LAG
[11:24:26][Ryo55]: An indirect spawnkill?
[11:24:26][IkeTheGeneric]: There is none, shut up
[11:24:26][Paolo]: OOOO
[11:24:27][Hoogle]: When you kill someone when they spawn
[11:24:31][Hoogle]: Not when they teleport lol
[11:24:46][Hoogle]: you should say
[11:24:49][Lugnut1206]: Thats a bullstuff technicality.
[11:24:52][Hoogle]: Hoogle SetPlayerTransformKilled!
[11:24:59][Bull Dog]: wat?
[11:25:00][Bull Dog]: lol
[11:25:00][Lugnut1206]: Good enough for me
[11:25:04][Lugnut1206]: Thats why we kicked him ike.
[11:25:09][Hoogle]: :)
[11:25:12][Bull Dog]: kicked who?
[11:25:16][Lugnut1206]: Because he killed the guy once he got into the kitchen.
TL;DR (I am not responsible for lack of clarity) - I attempt to votekick Hoogle for spawnkilling, Ike cancels vote and asks why I started it, I state I did because he spawnkilled, Hoogle argues that my kick is wrong because he didn't technically spawnkill him, he killed him after he chose his class and teleported in.

Arkal remains a handicap. Ike kicks.

Quote
[11:26:09][Arkal]: he just spades you hoogle
[11:26:10][Arkal]: See
[11:26:16][Arkal]: loving wimp/[ussy
[11:26:20][Arkal]: pusillanimous individual*
[11:26:32][Paolo]: DwdaEfijijgi;aowgjpoehjf;oijewofjw
[11:26:33][Magibowser]: Thanks
[11:26:39][Arkal]: O_O
[11:26:44][IkeTheGeneric]: I'm not sure you got my loving gist
[11:26:46][IkeTheGeneric]: NO COMPLAINING
[11:26:53][Hoogle]: Look I am sorry to everyone for not breaking a rule
[11:26:54][Arkal]: Im not complaining.
[11:26:56][Hoogle]: It won't happen again
[11:27:02][IkeTheGeneric]: hmm looks like you were

Arkal goes gone.

6 minutes later, Vampil spawnkills the boss... again.

Quote
[11:33:53][Vampil]: ganeral
[11:33:54][Magibowser]: If Bull Dog goes out, he's certainly killed
[11:34:01][Lugnut1206]: Spawn - in - kitchen killing <<< I state why I want him kicked, as per 'protocol'
[11:34:05][Vampil]: there's no rule against it
[11:34:08][Lugnut1206]: whatevber the forget you wanna [call it]
[11:34:12][Hoogle]: If your the boss get ready to run

>>>IkeTheGeneric cancels vote.

[11:34:13][Klarck]: but we want to kick you
[11:34:22][Hoogle]: 'we'
[11:34:32][Klarck]: well... i want to kick you
[11:34:33][Lugnut1206]: Implying eeveryone who voted yes.
[11:34:38][Lugnut1206]: and me.

Klarck appears on my side, Hoogle trolls, and Ike's blood pressure rises.

Quote
[11:34:38][Klarck]: you did the same for me
[11:34:41][Vampil]: I hit him 5 times
[11:34:49][Magibowser]: Burn bitch, BURN
[11:34:49][Vampil]: and klarck
[11:34:49][IkeTheGeneric]: Guys shut the forget up
[11:34:50][Hoogle]: If Im the boss I want you guys to try spawn kill me
[11:34:50][Lugnut1206]: Hit who five times?
[11:34:51][Klarck]: and its super handicapped and not cool
[11:34:51][Hoogle]: I like challenge
[11:34:54][IkeTheGeneric]: There's no rule against it

I attempt to argue why we should be able to votekick people we want gone.

Quote
[11:34:54][Lugnut1206]: Ike
[11:34:55][Vampil]: you spawnkilled too
[11:34:56][IkeTheGeneric]: THATS IT
[11:35:01][Lugnut1206]: We want to votekick them
[11:35:03][Klarck]: so what?
[11:35:06][Lugnut1206]: it doesn't matter if theres a rule
[11:35:07][IkeTheGeneric]: Good for you
[11:35:11][Klarck]: you did the same for me
[11:35:13][mouse droid21 (pepsi n)]: ms sam: hogole should i stfu?
[11:35:14][Magibowser]: IkeTheGeneric, plase finish anyone who is being a handicap or this will turn out like Pecon's server
[11:35:15][Klarck]: i want to do that too
[11:35:16][Vampil]: and?

I am then kicked by Ike, probably for complaining.

I return.

Quote
[11:37:31][Vampil]: Hello.
[11:37:36][Lugnut1206]: Hi.
[11:37:36][Vampil]: Having fun?
[11:37:40][Lugnut1206]: Not really.
[11:37:40][IkeTheGeneric]: Now quit it with your stuff

What stuff? Wanting to votekick people because I don't like the way they spawnkill people? Isn't that the purpose of the votekick mod?

Quote
[11:37:44][Lugnut1206]: But I'm not complaining.
[11:37:49][Vampil]: You were.
[11:37:55][Lugnut1206]: I suppose.
[11:37:59][Vampil]: You might aswell do it now too.
[11:38:03][Lugnut1206]: We'll let BB be the final deciding factor on that.
[11:38:12][Vampil]: big brother?
[11:38:15][Lugnut1206]: Yes.
[11:38:16][IkeTheGeneric]: For what?
[11:38:25][Vampil]: I'm sure he will understand you're just being an idiot.
[11:38:31][Lugnut1206]: Pretty much everything that just happened in the last half an hour.
[11:38:44][Vampil]: It will be your own ban
[11:38:47][Vampil]: Don't isk it
[11:38:53][Lugnut1206]: If he feels that way, fine. <As in, if he wants to ban me
[11:38:55][IkeTheGeneric]: Lugnut
[11:38:55][Vampil]: I might feel bad

Interestingly Ike, I'm not banned (last I checked).

Magibowser pulls out the simple phrases.

Quote
[11:39:02][IkeTheGeneric]: You have nothing going for you if you continue down this road
[11:39:14][Lugnut1206]: I will have stood up for what I felt was right, and if he disagrees, then this isn't the server for me.
[11:39:17][Magibowser]: Shut up, you
[11:39:23][Magibowser]: you're just digging yourself a deeper hole
[11:39:23][Vampil]: lol
[11:39:25][Lugnut1206]: Thats all there is too it.
[11:39:28][IkeTheGeneric]: You aren't right

I feel right, even if I'm not.

I have messaged BB over RTB, and I am now awaiting his responce, so I say, forget it, lets play.

Quote
[11:39:34][Lugnut1206]: Now, can we drop it temporarily?
[11:39:38][Lugnut1206]: and
[11:39:39][Lugnut1206]: I dunno
[11:39:40][IkeTheGeneric]: Just drop it completely
[11:39:40][Lugnut1206]: play?
[11:39:49][IkeTheGeneric]: Don'
[11:39:51][Vampil]: lugnut is suddenly scared
[11:39:53][Magibowser]: Why is everyone a magician?
[11:39:54][IkeTheGeneric]: Don't do that stuff at me
[11:40:04][IkeTheGeneric]: It's your own loving fault you got kicked <<< I'm missing the point here, I know it is my own fault. Can anyone clear this up?
[11:40:11][Vampil]: agreed
[11:40:16][Klarck]: look at me
[11:40:19][Lugnut1206]: What stuff at you?

Magibowser attempts to calm me down forcefully, when I'm not even angry.

Quote
[11:40:30][Magibowser]: Lugnut, calm your tits
[11:40:34][Hoogle]: ^
[11:40:37][Lugnut1206]: You do that
[11:40:43][Lugnut1206]: I'm done with it for now
[11:40:48][Klarck]: gtfo
[11:40:51][Vampil]: Lugnut
[11:40:57][Vampil]: Magi doesn't have to calm
[11:41:07][Vampil]: He isn't raging and trolling in the first place.
[11:42:01][Hoogle]: so laggeh :(
[11:42:10][Vampil]: Ike
[11:42:10][IkeTheGeneric]: A calm shades over the server. All is peaceful.

And indeed there was, for a good, what, three minutes? Then, out of the blue, as Ike is leaving, he bans me for forty minutes.

Quote
[11:44:50][Vampil]: Ike
[11:44:53][IkeTheGeneric]: Yes?
[11:44:57][Vampil]: Accept my friend request?
[11:45:05][IkeTheGeneric]: Didn't recieve one
[11:45:09][Vampil]: Oh
[11:45:14][Vampil]: Maybe it was the wrong guy
[11:45:16][Vampil]: lol
[11:45:28][IkeTheGeneric]: Sent one to you
[11:45:30][Vampil]: k
[11:45:37][Magibowser]: IMHO, bosses need more agility
 
>>>NOTE THIS LINE BY MAGIBOWSER
 
[11:45:40][Vampil]: Didn't recieve any
[11:45:48][IkeTheGeneric]: Then RTB must be having issues
[11:45:50][Vampil]: Weird.
[11:46:02][Magibowser]: FFFUUU
[11:46:09][IkeTheGeneric]: i need to go
[11:46:25][Lugnut1206]: Are you sure thats not your unhonest opinion?
 
>>>I reference said line in the sense of a lighthearted joke.
 
[11:46:36][Vampil]: What is
 
>>>Banned for 40 minutes. Reason: "yes i am"

My question to you, blockland forums, is not "omg ike is badass shud he be bnaned"
but instead are the following.

Q:Should votekick be used only for enforcing the rules, or should it also be used for keeping the server free of people who ruin the game for other people?
Q:Was Ikes final 40 minute ban just?\
Q:Should spawnkilling be allowed in this kind of gamemode, or even in any kind of game?

My responces, for whatever they're worth, for said questions are as follows.

A:It should be used for keeping the server fun and enjoyable for all players.
A:... I obviously feel it wasn't, as I had done nothing to provoke him or break the rules after the final bout.
A:Why should it?


FINALLY: Full unedited chatlogs are here.

Discuss, please.

104
Suggestions & Requests / Event Adder.
« on: November 16, 2011, 01:18:13 PM »
Lousy name for a useful tool.


First part:
I want a tool that will add lines of events.
I wish to make a onRelay loop with four things happening afterward, lets say, this.

So, I go ahead and make
onActivate > Self > fireRelay

I fire up my event adder, and set it to macro the following event five times
onRelay > Self >

I then go through manually and add the last fireRelay and all the setColors.


Second part:
A way to integrate this with the copy events portion so that when I paste events, it ADDS the new ones instead of replacing them.
Say I have some ub3r complicated events spanning across 10 bricks, and each single brick has a different set of events. Pasting over these would be disastrous. I want to make those bricks glow say, onRelay, for 33 milliseconds.
I don't want to go through each brick adding a total of 20 lines of events, when I can just activate the event adder on those two new lines of events, then use that client sided thing that lets you click on the brick to automatically paste, whatever its called. That would turn a 80 click job into a 13 click job. Not counting time saved.


Make sense? This should be easy, I mean, after all, they have event savers and things.

105
Help / BlocklandLauncher.exe tries to run blockland.exe. Then just closes.
« on: November 05, 2011, 03:01:27 PM »
See subject.
I can't get to the main menu. Blockland.exe does not even open.
http://dl.dropbox.com/u/11683226/console.log
And a lovely copy of console.txt
http://dl.dropbox.com/u/11683226/console.txt

Pages: 1 2 3 4 5 6 [7] 8 9 10 11 12 ... 16