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

Pages: 1 [2] 3 4 5 6 7 ... 266
16
Games / Re: Looking for some help in Terraria
« on: October 05, 2014, 01:31:22 PM »
Yes, the only way to host server for Terraria is a dedicated server. So in essence, you should have two copies of Terraria running.

I lied, I didn't realize there was a Host & Play option. You did that and he still couldn't join?

17
Games / Re: Looking for some help in Terraria
« on: October 05, 2014, 01:25:47 PM »
But now i'm connected by cable instead of a router

I didn't even see this. Yeah, what the guy above me said. If you're plugged directly into the modem, then you have absolutely no need to portforward. Portforwarding is just a way to tell a/the router where to send information.

18
Games / Re: Looking for some help in Terraria
« on: October 05, 2014, 01:19:23 PM »
I can host, I've recently got back into Terraria as well.

19
Off Topic / Re: My sister has been being a douche lately.
« on: July 06, 2014, 02:47:30 AM »
tell her to knock it off
ask your parents about it
avoid the slap
wear a scary mask all the time
tape a fake hand to your face for free high-fives
carry a spray bottle and spray her before she tries to slap you
say "HA! I blocked your hand with my face!" extremely loudly at her every time she does it
crawl everywhere across the ground for one day
get a really annoying app that plays a fart sound every time she slaps you
get a really annoying app that plays a crowd laugh track every time she slaps you
fall over on the floor and pretend to have died when she slaps you
fill your mouth with water and the next time she slaps you you'll spit it out all over her

or do all the above and see how far you get through the list before she stops

This actually made me laugh

20
Off Topic / Re: Post real life pictures of yourself.
« on: June 20, 2014, 12:23:22 AM »
This thread will live forever.

21
Gallery / Re: Blur's Modern Villa
« on: March 24, 2014, 07:29:03 PM »
Why are you bumping this, it's in the gallery.

22
Help / Re: My blockland is randomly crashing.
« on: March 09, 2014, 12:14:49 PM »
Disable all but default add-ons.
If it still crashes, you get to re-install.
If it does not crash, you get to burn your add-ons folder.

23
Off Topic / Re: Processor Upgrade
« on: December 25, 2013, 11:48:48 AM »
So, uh, update, I have ~$200 to spend on a CPU, and I can't find any recent articles/stuff for research.

So what get? I also have ~$100 for a new motherboard, so no brand limitations.

24
Off Topic / Re: Laptop releases alot of heat when playing a game.
« on: December 23, 2013, 10:22:21 PM »
Probably a busted fan, those are pretty cheap.

25
Off Topic / Re: Processor Upgrade
« on: December 23, 2013, 06:56:32 PM »
Yeah, I just did a little research, I'll get the 6300.

26
Off Topic / Re: Processor Upgrade
« on: December 22, 2013, 06:01:38 PM »
A885GM-A2.

I lied, my current motherboard does not support AM3+. The good thing about this is that I will probably get a new one for xmas.

Which can be found here. This one does support AM3+.

27
Off Topic / Re: Processor Upgrade
« on: December 22, 2013, 06:23:45 AM »
The mobo I have supports AM3+

28
Off Topic / Processor Upgrade
« on: December 22, 2013, 12:03:01 AM »
I was curious if an upgrade from this to this would result in a worthwhile upgrade right now, instead of waiting an unspecified amount of time for the money to get this.

29
Off Topic / Re: C++ Programmin Quick Help
« on: November 28, 2013, 12:30:55 AM »
Well, first off, = is not a boolean operator.

What you meant to do was while(z == z), but which may as well be while(true)

Also, moving the window is going to be a very expensive operation. You should probably just put that right before the loop.

One last thing, I don't see a cout.

It works either way for my purposes.

Moving the window is the whole reason for the while loop. and it certainly does not seem nearly as expensive as cout.

I wanted to point out what was in the while loop while it works as intended.


i'm not a c++ guy, but in my experience, assuming "cout" does what I think it does (writes to console window/stdout?) having a lot of those will slow your program down tremendously.
the simple solution is to make it run less often, like trinick suggested.

I only want one cout line.

30
Off Topic / Re: C++ Programmin Quick Help
« on: November 28, 2013, 12:19:33 AM »
This is my current code:
Code: [Select]
while (z = z)
{
x++;
y++;

if (x == xx)
x = (x - xx) * (-1);

if (y == yy)
y = (y - yy) * (-1);

MoveWindow(window,x,y,100,100,1);
Sleep(0);
}
The sleep is for troubleshooting reasons.
When this loop is ran the window appears all over the screen as it happens too fast for the eye to actually follow.

However if I add a cout line in there, it slows down so much that the window only moves every 2 seconds.

Pages: 1 [2] 3 4 5 6 7 ... 266