View Full Version : The Witcher Mod (Unicode Version)
Dante1995
31-08-2014, 10:03
movedhttp://fileforums.com/showthread.php?p=434203&posted=1#post434203
gatosky1620
31-08-2014, 12:23
Selectlanguageform unknow identifir
why?
Dante1995
31-08-2014, 12:45
Selectlanguageform unknow identifir
why?
click compiler.bat
the setup is ok bro :)
:
y_thelastknight
31-08-2014, 13:28
Selectlanguageform unknow identifir
why?
Use Inno Setup Enhanced Edition v5.5.1u
you can get it here (http://fileforums.com/showpost.php?p=429689&postcount=72). uploaded by pakrat2k2, like the post and download it.. :p
Dante1995
31-08-2014, 13:39
Use Inno Setup Enhanced Edition v5.5.1u
you can get it here (http://fileforums.com/showpost.php?p=429689&postcount=72). uploaded by pakrat2k2, like the post and download it.. :p
is already inside you do not need to download anything
gatosky1620
Example 1
1) click Compiler.bat
Example 2
1) open Inno Unicode ee and click tools >options >associate >ok
y_thelastknight
31-08-2014, 13:43
is already inside you do not need to download anything
oh kk.. but he didn't use that mate.
Dante1995
03-09-2014, 05:52
even one I like (ok!'ll versions closed no problem) ;)
y_thelastknight
03-09-2014, 10:55
Sorry i forget to like your main post.. :D
Dante1995
03-09-2014, 12:42
Sorry i forget to like your main post.. :D
not intended for programmer :)
Razor12911
03-09-2014, 13:29
lol, bro, if your work is cool and great, you gotta get something, too bad cause you can't get hugs, well not from me(thats gay) and a thanks is better.
Dante1995
03-09-2014, 13:42
Razor12911
No problem again, I will use the config.ini file and no source code :)
gatosky1620
04-09-2014, 16:00
in the witcher+isdone how agregate a font.ttf file, because i use
this code but is not reconized
[Files]
Source: "MyFont.ttf"; Flags: dontcopy
[Code]
#ifdef UNICODE
#define AW "W"
#else
#define AW "A"
#endif
const
FR_PRIVATE = $10;
FR_NOT_ENUM = $20;
function AddFontResourceEx(lpszFilename: string;
fl: DWORD; pdv: Cardinal): Integer;
external 'AddFontResourceEx{#AW}@gdi32.dll stdcall';
function RemoveFontResourceEx(lpFileName: string;
fl: DWORD; pdv: Cardinal): BOOL;
external 'RemoveFontResourceEx{#AW}@gdi32.dll stdcall';
var
FontFlags: DWORD;
[Code]
procedure InitializeWizard;
var
FontName: string;
begin
// extract the font file to the temporary folder
ExtractTemporaryFile('MyFont.ttf');
// this combination specifies the reservation of this font for use
// in the setup process and that this font cannot be enumerated
FontFlags := FR_PRIVATE or FR_NOT_ENUM;
// add the font resource
if AddFontResourceEx(ExpandConstant('{tmp}\MyFont.ttf '),
FontFlags, 0) <> 0 then
begin
// note, that this is the name of the font, which doesn't have
// to match to the font file name
FontName := 'My Font Name';
// the global setting of the WizardForm.Font property causes many
// of its child controls to inherit this font; except those listed
// below; their default font has changed and they lost the ability
// to inherit the font from their parent so we must do it manually
WizardForm.Font.Name := FontName;
WizardForm.WelcomeLabel1.Font.Name := FontName;
WizardForm.PageNameLabel.Font.Name := FontName;
WizardForm.FinishedHeadingLabel.Font.Name := FontName;
end;
end;
procedure DeinitializeSetup;
begin
// remove the font resource
RemoveFontResourceEx(ExpandConstant('{tmp}\MyFont. ttf'),
FontFlags, 0);
end;
Whit witcher + isdone why the difference
http://i2.minus.com/jdYE7ScSK5TuX.jpg
http://i6.minus.com/jdhN9I52PPPmE.jpg
How i do this with thewitcher+ISDone
a. Times and file description above progress bar
b. Porcent label the center of the progress bar
http://i3.minus.com/jgzj5uEl7uis5.jpg
Andrey167
06-09-2014, 12:02
Do you plan to add isdone?
gatosky1620
06-09-2014, 12:18
Do you plan to add isdone?
isdone already add
Andrey167
06-09-2014, 12:36
isdone already add
Nope isdone files in the archive you downloaded above
Dante1995
06-09-2014, 13:06
ISDone
1) no button finishedpage (uninstall)
2) no font external
3) fix finishepage = is default font
4) fix firewallhelper (?)
gatosky1620
06-09-2014, 14:37
Nope isdone files in the archive you downloaded above
is the thewitcher+isdone by dante
Andrey167
07-09-2014, 08:53
No work Isdone?
Dante1995
07-09-2014, 12:50
No work Isdone?
it works fine, I create my own unpacked know ... I put only the files for unpacked what I create. (it is set up as I said) just add your files ;)
gatosky1620
08-09-2014, 15:29
I have add polish and porbrasilian language in the autorun, but when i click it the polish flag send the setup with portugese language and whe i click it the brasilian flag send the setup with russian language.
I test everithin and the problem is in the next line:
SelectLanguageForm.LangCombo.ItemIndex := ???????
pakrat2k2
08-09-2014, 16:31
look in lng.iss it hasn't been defined for polish or Portuguese languages. They need to be added into that file. ( basically copy then translate the Russian section into polish & Portuguese.
Dante1995
08-09-2014, 16:33
I have add polish and porbrasilian language in the autorun, but when i click it the polish flag send the setup with portugese language and whe i click it the brasilian flag send the setup with russian language.
I test everithin and the problem is in the next line:
SelectLanguageForm.LangCombo.ItemIndex := ???????
Upd...
gatosky1620
08-09-2014, 17:43
HOW i agree compact mode and png image as music on off
http://i4.minus.com/j6qrgaTbiqJwi.jpg
Dante1995
08-09-2014, 17:56
HOW i agree compact mode and png image as music on off
http://i4.minus.com/j6qrgaTbiqJwi.jpg
it seems that PeterF and its installer, involving many guys in the forum :D
no sorry I have much work to do, I will stop here with this installer ;)
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.