Special Aircraft Service

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1] 2 3   Go Down

Author Topic: High Quality Screen125.exe with Randomiser Program  (Read 19698 times)

0 Members and 1 Guest are viewing this topic.

SAS~Monty27

  • SAS Team
  • member
  • Offline Offline
  • Posts: 3852
  • Action and Adventure!
    • SPEEDMACHINE
High Quality Screen125.exe with Randomiser Program
« on: June 13, 2011, 07:52:32 PM »

You can have all of these Launch Screens and live with one for a while, or change it every time you start Il2, with a simple click. No copying, moving or re-naming, everything is automated, convenient and can be changed in a second!

With 125 new very high quality, hi-res Launch Screens, re-sampled, colour treated and re-mastered for a high level of clarity and texture.  Choose from any of 100 Screens, illustrated in the attached PDF, or let the program generate a random Launch Screen.  Each screen is presented within a dark border with the 1946 LOGO, for widescreen monitors, use with Ecran-Wide.

The numbers at the top left corners do not appear in the sim, they are a reference for the randomiser program. There are some well known paintings here, and a number of lesser known, all of them stunning...

Please read the enclosed PDF for a full explanation of this simple utility along with a preview of every screen.



Download:
Offline until further notice

Logged

SAS~Monty27

  • SAS Team
  • member
  • Offline Offline
  • Posts: 3852
  • Action and Adventure!
    • SPEEDMACHINE
Re: High Quality Screen100.exe with Randomiser Program
« Reply #1 on: June 16, 2011, 07:05:03 AM »

Thanks crazyflak, I'm checking the download now.

Meanwhile sure, here's Backgrounds 3 & 5 separately...
Logged

~Wolf~

  • member
  • Offline Offline
  • Posts: 113
  • Location: Germany
Re: High Quality Screen100.exe with Randomiser Program
« Reply #2 on: June 16, 2011, 08:38:00 AM »

hi

please upload it to filefront or another upload server
because this link is broken

(bandwidth exceeded)

Logged

SAS~Monty27

  • SAS Team
  • member
  • Offline Offline
  • Posts: 3852
  • Action and Adventure!
    • SPEEDMACHINE
Re: High Quality Screen100.exe with Randomiser Program
« Reply #3 on: June 16, 2011, 04:30:21 PM »

hi

please upload it to filefront or another upload server
because this link is broken

(bandwidth exceeded)

Oops! Sorry guys, fixed it all now, good ol' Mediafire.
Logged

Spinnetti

  • member
  • Offline Offline
  • Posts: 473
Re: High Quality Screen100.exe with Randomiser Program
« Reply #4 on: June 16, 2011, 06:08:58 PM »

That didn't take long! Hey, is your .exe a compiled .bat file? I'd like to tune it. I don't know how to do the randomizer that works in Win 7, but my old mod goes a bit further. Its just part of a .bat that fires up my trackir, sets the overclock on my video, randomly pics the screens  then starts up IL2. The difference is, it changes ALL of the mission screens by country, mission home and the launch screen, thus every time I launch I get a new nice surprise... I noticed you used a folder for every picture, and a .mat for each picture - you don't need to do that. You can have a single folder with all the pictures for your setup, and leave the existing .mat in place. Saves lots of files and folders... anyway, if your randomizer is editable and you are willing, I'd like to borrow to update my setup which I've grown rather fond of... I can post my solution back up too if you like.

As an example, I just had a series of commands in my batch file that updated the mission, startup and so on. Here's the first couple... rand file just picks any file in the target folder with a .tga extension and copies  to the same folder with the name of background.tga (actually its got a character limit so truncates the last letter - the move command fixes it). This way, you can name the files however you like. The next line just puts it where it needs to go. That way you have folders of images anywhere and named however you like and use a single batch program to pick and copy (%root%is my IL2 folder). The randfile program is really small so a copy goes in each picture folder. Problem is my "Randfile" function doesn't work in Win 7, so I'm looking for a replacement.
:::::::::::::::::::::::::::::::::
::Changing Startup SPlashscreen::
:::::::::::::::::::::::::::::::::
cd %root%\MODS\UI - Random Splash Screen - Spinnetti 20090829\Splash Screens
RANDFILE *.tga background.tga
move backgrou.tga "%root%\MODS\STD\gui\background.tga

::::::::::::::::::::::::::::::::::::::
::Generate a new main mission screen::
::::::::::::::::::::::::::::::::::::::
cd %root%\Mods\UI - Random Splash Screen - Spinnetti 20090829\Mission Home Screens
RANDFILE *.tga background.tga
move backgrou.tga "%root%\Missions\background.tga

::::::::::::::::::::::::::::::::::::::
::Generate a new Splashscreen for DE::
::::::::::::::::::::::::::::::::::::::
cd %root%\MODS\UI - Random Splash Screen - Spinnetti 20090829\Single Mission Screens\DE
RANDFILE *.tga background.tga
move backgrou.tga "%root%\Missions\Single\DE\background.tga"


Thanks....
Logged

SAS~Monty27

  • SAS Team
  • member
  • Offline Offline
  • Posts: 3852
  • Action and Adventure!
    • SPEEDMACHINE
Re: High Quality Screen100.exe with Randomiser Program
« Reply #5 on: June 16, 2011, 07:51:42 PM »

Does this randomiser work for you on Win7?

I have used separate folders rather than a single folder, because it works.

This is my randomiser component:

SET NAT=%Random%
IF %NAT% GTR 9 SET /A NAT = 1%NAT:~-2,2% - 100
SET NAT
IF '%NAT%'=='0' GOTO 0
IF '%NAT%'=='1' GOTO 1
IF '%NAT%'=='2' GOTO 2

---------------------etc

I did it this way because it is more important (personally) to be able to choose the screen directly. I don't really like surprises! So the %Random% steers straight back to the %Choice%. Its the choice thats random, or a specific choice if you prefer, not always random.
Logged

Spinnetti

  • member
  • Offline Offline
  • Posts: 473
Re: High Quality Screen100.exe with Randomiser Program
« Reply #6 on: June 17, 2011, 05:15:15 PM »

Does this randomiser work for you on Win7?

I have used separate folders rather than a single folder, because it works.

This is my randomiser component:

SET NAT=%Random%
IF %NAT% GTR 9 SET /A NAT = 1%NAT:~-2,2% - 100
SET NAT
IF '%NAT%'=='0' GOTO 0
IF '%NAT%'=='1' GOTO 1
IF '%NAT%'=='2' GOTO 2

---------------------etc

I did it this way because it is more important (personally) to be able to choose the screen directly. I don't really like surprises! So the %Random% steers straight back to the %Choice%. Its the choice thats random, or a specific choice if you prefer, not always random.

Hmm. Thanks.. I'll have look up those commands to exactly what that's doing, but thanks for the head start..
Logged

falcofalco

  • member
  • Offline Offline
  • Posts: 5
Re: High Quality Screen100.exe with Randomiser Program
« Reply #7 on: September 02, 2011, 07:32:48 AM »

Attention in the two files is a Trojan horse.ESET SMART SECURITY >:(
Logged

falcofalco

  • member
  • Offline Offline
  • Posts: 5
Re: High Quality Screen100.exe with Randomiser Program
« Reply #8 on: September 02, 2011, 10:08:04 AM »

Two download, always alert for Trojan horse.  Infiltrate into the Windows folder.
Logged

renmik

  • member
  • Offline Offline
  • Posts: 59
Re: High Quality Screen100.exe with Randomiser Program
« Reply #9 on: September 04, 2011, 11:26:32 AM »

Hi Guys,

cool stuff, also the pics are really great, thank you!!

Seems, I missed the answer... :
Would you like to add the option to get
a random background on every game startup,
without clicking the randomiser, pls?

Don't get me wrong, I'm not lazy, but I also like surprises :D
Thx in advance
Logged

SAS~Malone

  • flying as #46 with the FAC
  • Editor
  • member
  • Offline Offline
  • Posts: 14562
  • proud member of that 'other' site
Re: High Quality Screen100.exe with Randomiser Program
« Reply #10 on: September 06, 2011, 02:12:17 AM »

or, if there was a way to get this to automatically run each time you quit il2, it'd also work great.
Logged
.....taking fun seriously since 1968.....  8)

Paulo Hirth

  • member
  • Offline Offline
  • Posts: 877
  • MOD is Life!
Re: High Quality Screen100.exe with Randomiser Program
« Reply #11 on: November 22, 2011, 08:07:36 AM »

 Very good! Thank you Mont27!
Logged
Pages: [1] 2 3   Go Up
 

Page created in 0.034 seconds with 26 queries.