The Official Rant Thread
- Remnant Samurai
- Posts: 882
- Joined: Mon Jan 28, 2008 7:29 am
- Location: Land Of The Long White Cloud
- Contact:
Re: The Official Rant Thread
Well I have pretty much backed up my files and such but not the programs.
I am gonna upgrade to 7 because Vista eats my ram and I want to use photoshop smoothly
I am gonna upgrade to 7 because Vista eats my ram and I want to use photoshop smoothly

-
- Posts: 1974
- Joined: Sun Jan 27, 2008 4:50 am
Re: The Official Rant Thread
Why do so many people want windows 7?
In Soviet Russia, DS touches you. Say it again and I'll do more than touch. ~DS -Oh babyDemonicSandwich wrote:See that? You see that how it is highlighted down here but it's not highlighted right there? Ah, I guess that's what I get for pirating it.
A cat was licking itself to the sound of potato chips.
- JacksonCougar
- Huurcat
- Posts: 2460
- Joined: Thu Dec 06, 2007 11:30 pm
- Location: Somewhere in Canada
- Grimdoomer
- Admin
- Posts: 1835
- Joined: Sun Dec 09, 2007 9:09 pm
Re: The Official Rant Thread
Yea and the memory leaks from hell are gone!!!!
Don't snort the magic, we need it for the network.
- Eaton
- Posts: 608
- Joined: Mon Apr 21, 2008 7:44 pm
- Location: USA
- Contact:
Re: The Official Rant Thread
Because it's better than XP and Vista combined.xxpenguinxx wrote:Why do so many people want windows 7?
- Click16
- Posts: 1941
- Joined: Mon Dec 31, 2007 4:36 am
- Location: United States
Re: The Official Rant Thread
True dat. I love windows 7. I know its not fit for my PC, but for the most part, it runs smoothly.Eaton wrote:Because it's better than XP and Vista combined.

- Gary
- Posts: 1946
- Joined: Thu Feb 14, 2008 10:17 pm
- Location: USA, FL
- Contact:
Re: The Official Rant Thread
Though, doesn't it expire?, I was thinking of installing it on my brother's computer, as his is corrupted and goes to a blue screen saying that it has to dump the memory to prevent damage to the computer often...
- Remnant Samurai
- Posts: 882
- Joined: Mon Jan 28, 2008 7:29 am
- Location: Land Of The Long White Cloud
- Contact:
-
- Posts: 1974
- Joined: Sun Jan 27, 2008 4:50 am
Re: The Official Rant Thread
Windows 7 can't load misfit model...Click16 wrote:True dat. I love windows 7. I know its not fit for my PC, but for the most part, it runs smoothly.Eaton wrote:Because it's better than XP and Vista combined.
In Soviet Russia, DS touches you. Say it again and I'll do more than touch. ~DS -Oh babyDemonicSandwich wrote:See that? You see that how it is highlighted down here but it's not highlighted right there? Ah, I guess that's what I get for pirating it.
A cat was licking itself to the sound of potato chips.
- Remnant Samurai
- Posts: 882
- Joined: Mon Jan 28, 2008 7:29 am
- Location: Land Of The Long White Cloud
- Contact:
-
- Posts: 1974
- Joined: Sun Jan 27, 2008 4:50 am
Re: The Official Rant Thread
No matter what it just won't open.Creative_Monkey wrote:compatibility mode?
In Soviet Russia, DS touches you. Say it again and I'll do more than touch. ~DS -Oh babyDemonicSandwich wrote:See that? You see that how it is highlighted down here but it's not highlighted right there? Ah, I guess that's what I get for pirating it.
A cat was licking itself to the sound of potato chips.
- Click16
- Posts: 1941
- Joined: Mon Dec 31, 2007 4:36 am
- Location: United States
Re: The Official Rant Thread


Its my graphics drivers. When using windows update, it will support Aero, but wont load many 3d modeling applications. when using ATI Drivers, it will load 3d modeling programs, but does not support aero. I will find a fix to this!

-
- Posts: 1974
- Joined: Sun Jan 27, 2008 4:50 am
Re: The Official Rant Thread
THEN STOP USING WINDOWS 7, ALL YOUR COMPATIBILITY ISSUES WILL BE SOLVED!
In Soviet Russia, DS touches you. Say it again and I'll do more than touch. ~DS -Oh babyDemonicSandwich wrote:See that? You see that how it is highlighted down here but it's not highlighted right there? Ah, I guess that's what I get for pirating it.
A cat was licking itself to the sound of potato chips.
- Grimdoomer
- Admin
- Posts: 1835
- Joined: Sun Dec 09, 2007 9:09 pm
Re: The Official Rant Thread
I honestly don't know what the fuck is wrong with my maps. Between Mutation, Entity, and the sparkle barf of a map layout UberAnalyzeTool is showing me... I can't tell what is messed up and where 

Don't snort the magic, we need it for the network.
- Grimdoomer
- Admin
- Posts: 1835
- Joined: Sun Dec 09, 2007 9:09 pm
Re: The Official Rant Thread
So I figured out the problem. Heh, you have to love C# fuck ups.
Who knows whats wrong with the segment above?
These two lines is whats wrong. Even though rr does infact read a byte[], for some reason, bw doesnt write anything, nor does it write when its supposed to write padding. Yea, makes a shit load a sense.... Not.
Code: Select all
// Write new Pointer
#if (WritePointers)
mw.BaseStream.Position = r.Translation + (x * 176) + 40;
mw.Write((int)bw.BaseStream.Length);
#endif
// Write Raw with Padding
rr.BaseStream.Position = Offset;
bw.Write(rr.ReadBytes(Size));
bw.Write(new byte[Padding(512)]);
Code: Select all
bw.Write(rr.ReadBytes(Size));
bw.Write(new byte[Padding(512)]);
Don't snort the magic, we need it for the network.
- troymac1ure
- Keeper of Entity
- Posts: 1282
- Joined: Sat Aug 09, 2008 4:16 am
- Location: British Columbia, Canada, eh
- Contact:
Re: The Official Rant Thread
Grimdoomer wrote:So I figured out the problem. Heh, you have to love C# fuck ups.
Who knows whats wrong with the segment above?Code: Select all
// Write new Pointer #if (WritePointers) mw.BaseStream.Position = r.Translation + (x * 176) + 40; mw.Write((int)bw.BaseStream.Length); #endif // Write Raw with Padding rr.BaseStream.Position = Offset; bw.Write(rr.ReadBytes(Size)); bw.Write(new byte[Padding(512)]);
These two lines is whats wrong. Even though rr does infact read a byte[], for some reason, bw doesnt write anything, nor does it write when its supposed to write padding. Yea, makes a shit load a sense.... Not.Code: Select all
bw.Write(rr.ReadBytes(Size)); bw.Write(new byte[Padding(512)]);
?? Padding doesn't return a value, therefore you are creating a new byte array of zero length.
What are you trying to pad?? The number of Bytes read to 512?
Code: Select all
bw.Write(rr.ReadBytes(Size));
bw.Write(new byte[512- (Size % 512)]);
- Grimdoomer
- Admin
- Posts: 1835
- Joined: Sun Dec 09, 2007 9:09 pm
Re: The Official Rant Thread
Code: Select all
public int Padding(int Size)
{
int pad = Size - ((int)bw.BaseStream.Position % Size);
if (pad == Size)
pad = 0;
return pad;
}
Don't snort the magic, we need it for the network.
- Grimdoomer
- Admin
- Posts: 1835
- Joined: Sun Dec 09, 2007 9:09 pm
Re: The Official Rant Thread
Fucking Sound Raw.....
Don't snort the magic, we need it for the network.
- Aumaan Anubis
- Staff
- Posts: 1812
- Joined: Thu Dec 13, 2007 12:18 am
- Contact:
Re: The Official Rant Thread
How could Pandora do this to me...

It's only July 13!

It's only July 13!
- NotZachary82
- Posts: 1846
- Joined: Thu Dec 20, 2007 8:39 pm
Re: The Official Rant Thread
How often do you listen to music on Pandora? 

- Aumaan Anubis
- Staff
- Posts: 1812
- Joined: Thu Dec 13, 2007 12:18 am
- Contact:
Re: The Official Rant Thread
Approximately 3.07 hours a day?
And I'm not coming back every 1st of the month to listen to their music.
Guess I'll go check out Last.fm.
And I'm not coming back every 1st of the month to listen to their music.
Guess I'll go check out Last.fm.
- Grimdoomer
- Admin
- Posts: 1835
- Joined: Sun Dec 09, 2007 9:09 pm
- NotZachary82
- Posts: 1846
- Joined: Thu Dec 20, 2007 8:39 pm
Re: The Official Rant Thread
What's with Rework3d?
- Remnant Samurai
- Posts: 882
- Joined: Mon Jan 28, 2008 7:29 am
- Location: Land Of The Long White Cloud
- Contact:
Re: The Official Rant Thread
Or try playlist.comAumaan Anubis wrote:Approximately 3.07 hours a day?
And I'm not coming back every 1st of the month to listen to their music.
Guess I'll go check out Last.fm.
Also for those with Windows 7 and have compatibility issues there is Virtual Windows XP that comes with W7. If you want it PM me with your version (32 or 64bit)
ALSO: Modern Warfare 2 Collectors Packs here - http://www.youtube.com/watch?v=FMSS12iY1X0&e

- Grimdoomer
- Admin
- Posts: 1835
- Joined: Sun Dec 09, 2007 9:09 pm
Re: The Official Rant Thread
Xzodias fucking plugins 

Don't snort the magic, we need it for the network.