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.


Messages - Trinick.

Pages: 1 ... 3 4 5 6 7 [8] 9 10 11 12 13 14
106
Off Topic / Re: What The forget Is South America Doing?
« on: November 29, 2012, 08:11:51 PM »
It's not that we hate him its that that's probably the dumbest comment I've ever read in my entire loving life.

107
Off Topic / Re: What The forget Is South America Doing?
« on: November 29, 2012, 08:05:43 PM »
Peavy22: South America as in Africa or southern states
Peavy22: I'm guessing you mean Africa and such

What the forget?

108
Off Topic / Re: The EDM Megathread - Wednesday Monstercat release!
« on: November 29, 2012, 07:55:18 PM »
I bought it on Amazon at $1,200.

I'm 16 with a less limited income.

Frankly, DJing is expensive. Sorry. You can get stuff ass gear for $200 but nobody will respect you and you'll end up learning some terrible habits due to the poor functionality of these stuffty controllers.

Think of it this way; if you're showing up at a venue with a $1,000+ laptop that just holds the tracks, why would you use $200 equipment that you're actually using to mix and edit the music?

109
Off Topic / Re: The EDM Megathread - Wednesday Monstercat release!
« on: November 29, 2012, 07:14:43 PM »


XDJ-Aero you say?

110
General Discussion / Re: RTB Dedicated Hosting Service
« on: November 29, 2012, 06:30:52 PM »
I thought if you were coming from another hosting service you got a free month or something?
If you have a billing history with another Blockland hosting service you can provide billing records for a free month of service.

111
Off Topic / Re: Done with HW but has to sit here
« on: November 29, 2012, 06:27:11 PM »
Why do you have to sit there? Are you tied to your seat? If so, that's child abuse and you should use this time to contact the CPA instead of an internet lego forum.

112
Drama / Re: DotDotCir-Square is back
« on: November 29, 2012, 06:21:22 PM »
Money obviously is irrelevant. People like us who repeatedly get perma'd obviously don't care about the pennies they have to spend here and there to renew their forum subscription.

113
Off Topic / Re: How much do you weigh?
« on: November 29, 2012, 06:16:56 PM »
108, 5'10. BMI 15.5. Normal is 18.5-25.

114
Off Topic / Re: Do I have a sleeping disorder?
« on: November 29, 2012, 06:12:43 PM »
You have a sleeping disorder called Hypochondria. You should really see a doctor, and not just ask the blockland forums.
hypochondriasis*

115
General Discussion / Re: RTB Dedicated Hosting Service
« on: November 29, 2012, 06:10:42 PM »
Oh, come on. It's a $6 fee. Why do you need a free trial? It's actually more than kind on their part to allow you to cancel.

Also, if you purchase mid-way through the month will you prorate or charge every 30 days from the purchase date?

116
Off Topic / Re: The EDM Megathread - Wednesday Monstercat release!
« on: November 29, 2012, 06:06:52 PM »
So, today I learned my partner in my audio tech class is actually friends with Ephixa.

So does anyone here do any actual DJing?
ye

117
Off Topic / Re: Post your thoughts of the above user's signature.
« on: November 29, 2012, 04:13:39 AM »
You need more internets.

118
General Discussion / Re: RTB Dedicated Hosting Service
« on: November 29, 2012, 03:52:41 AM »
Damn Lub, fantastic progress on the homepage. Inb4 you lock me out again.


also: nice cats


Registration Complete

Good work you loving cunt, now go activate with email

LMFAO


edit: i'll stop now before i break something

119
I don't see why you ignored my second post. You wanted code to list every possible combination of coins (limited by the values provided) that totals  a certain value. I gave you code that does that.

120
Code: [Select]
function findValue(%total, %quota1, %quota2, %quota3, %quota4)
{
%dholder = new scriptObject();
%squota1 = %quota1;
%squota3 = %quota3;
%squota2 = %quota2;
%squota4 = %quota4;


for(%quota1=%squota1;%quota1 >= 0;%quota1--)
{
for(%i=1;%i<5;%i++) %quota[%i] = %squota[%i];
%input = %total;
%input *= 100;

%quarters = mFloor(%input / 25);
if(%quarters > %quota1) %quarters = %quota1;
%input1 = %input-%quarters*25;

for(%quota2=%squota2;%quota2 >= 0;%quota2--)
{
%dimes = mFloor(%input1 / 10);
if(%dimes > %quota2) %dimes = %quota2;
%input2 = %input1 - %dimes*10;

for(%quota3=%squota3;%quota3 >= 0;%quota3--)
{
%nickels = mFloor(%input2 / 5);
if(%nickels > %quota3) %nickels = %quota3;
%input3 = %input2 - %nickels*5;

for(%quota4=%squota4;%squota4>=0;%squota4--)
{
if(%input3 > %quota4)
break;
%dholder.list[%dholder.listc++-1] = %quarters SPC %dimes SPC %nickels SPC %input3;
}
}
}
}
return %dholder;
}
I haven't tested it but I think based on logic that should work.

Note: I've modified this post like 15 times finding small errors so don't expect it to work, just derive logic from it or think of it as something that needs to be fixed.

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