Thread Rating:
  • 2 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
GFXImprover v2.1
#11
@g-man I release bugged stuff all the time.
Also, I'm okay with this release (for once)
I was hating on the other thread because it was just a re-release of something I already posted
EDIT: G-man I am dissappoint.... (FTP login data in program)
Also, You say that i'm continuely 'spamming' your threads, I just give my opinion on the stuff you do,
This is a pretty useful tool altough it has a few flaws
Reply

#12
(02-05-2012, 12:53)jariz Wrote: @g-man I release bugged stuff all the time.
Also, I'm okay with this release (for once)
I was hating on the other thread because it was just a re-release of something I already posted
EDIT: G-man I am dissappoint.... (FTP login data in program)
Also, You say that i'm continuely 'spamming' your threads, I just give my opinion on the stuff you do,
This is a pretty useful tool altough it has a few flaws

naah @JariZ i really want (BELIEVE ME MASTEEER) to rent a server but I have no time besides i faced some problems while i was trying to do that... im really trying to stop using FTP asap but not ready for it yet.

thanks for your opinion.
(02-05-2012, 10:05)d0h! Wrote:
(02-05-2012, 08:49)Pozzuh Wrote: What's the mw3 graphic tweak?

i see the difference. check the weapon and the wall next to it.

well it tweaks some dvars in config.
OKAY, it tweaks all nice dvars in config but thanks to IW not all of them are working. This is said in readme:
Quote:Important to mention that MW3 improvements do not work FULLY as modifying configs fully is impossibru yet (say thanks to InfinityWard).

[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
Reply

#13
@g-man This isn't gonna work on 64 bits, and nearly all gamers have 64 bit, you need to read the steam registery key
Reply

#14
it just sets the graphics @ high on mw3?
Black Ops Mods:

RPG(rocket launcher) mod
Get the Specials

Old aliasses:

eliteCVDelite
CVD

Reply

#15
(02-05-2012, 16:45)jariz Wrote: @g-man This isn't gonna work on 64 bits, and nearly all gamers have 64 bit, you need to read the steam registery key

You mean Program Files (x64) and not just Program Files or what?
me have good old x86 Troll
[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
Reply

#16
(02-05-2012, 20:03)G-Man Wrote:
(02-05-2012, 16:45)jariz Wrote: @g-man This isn't gonna work on 64 bits, and nearly all gamers have 64 bit, you need to read the steam registery key

You mean Program Files (x64) and not just Program Files or what?
me have good old x86 Troll

Use radiobuttons, make one for 64 and one for 32 and modify the code to work with them Big Grin

[Image: lQDUjba.jpg]
Reply

#17
(02-05-2012, 20:10)OrangePL Wrote:
(02-05-2012, 20:03)G-Man Wrote:
(02-05-2012, 16:45)jariz Wrote: @g-man This isn't gonna work on 64 bits, and nearly all gamers have 64 bit, you need to read the steam registery key

You mean Program Files (x64) and not just Program Files or what?
me have good old x86 Troll

Use radiobuttons, make one for 64 and one for 32 and modify the code to work with them Big Grin

yep, easy to come to such suggestion. but idk whats the problem is. does x64 has another steam path or what? :S
[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
Reply

#18
This program won't work if:
- Steam isn't installed on C/D drive
- If you got 64 bit

Nice idea, bad program

Also @g-man @OrangePL why do it the hard way when you can do it the easy way
CSHARP Code
  1. static string steam = null;
  2. static bool read()
  3. {
  4. RegistryKey k = Registry.LocalMachine;
  5. string x = "";
  6. if (cpu == 64) x = "SOFTWARE\\Wow6432Node\\Valve\\Steam";
  7. else x = "SOFTWARE\\Valve\\Steam";
  8.  
  9. RegistryKey a = k.OpenSubKey(x);
  10. if (a == null) return false;
  11. else { try { steam = (string)a.GetValue("InstallPath"); return true; } catch { return false; } }
  12. }
Reply

#19
My instalation folder is on D:Steam and before that was on E: you need to autodetect the instalation folder or so that we can select the folder.
Reply

#20
CSHARP Code
  1. int cpu = 0;
  2. string cpuraw = Environment.GetEnvironmentVariable("PROCESSOR_ARCHITECTURE");
  3. cpu = 0;
  4. if (cpuraw == "x86") cpu = 32;
  5. else if (cpuraw == "AMD64") cpu = 64;
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.