UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!! UPDATE TI 1.31 PLS!!!!
It seems like a great idea, but like some other people for version 1.12 the "no duplicates" version gives errors even after running script merger.
Error [content0]game\gui\r4hudeventcontroller.ws(67): Unknown type 'EHudTimeOutAction' for property 'action'. Error [content0]game\gui\r4hudeventcontroller.ws(383): Unknown type 'EHudTimeOutAction' for property 'action'. Error [content0]game\gui\hud\modules\hudmoduletimeleft.ws(35): Unknown type 'EHudTimeOutAction' for property 'action'.
Haven't tried the other version yet.
Any updates from the mod author or has anyone else found a way to solve this?
Error [content0]game\gui\r4hudeventcontroller.ws(62): Unknown type 'EHudTimeOutAction' for property 'action'. Error [content0]game\gui\r4hudeventcontroller.ws(37: Unknown type 'EHudTimeOutAction' for property 'action'. Error [content0]game\gui\hud\modules\hudmoduletimeleft.ws(30): Unknown type 'EHudTimeOutAction' for property 'action'.
with or with out other mods steam version with Hearts of Stone installed
so I fixed it yay! It was easy all I did was add a few lines in my quest_function.ws file this is the completed code
if you open up with your favorite text editor search for the first line, that should take you where you need to be. I did realize that my file was a bit different than the download here. I would think that the modder and I have different versions of the game. Anyway hope it helps others good luck. And thank you for the original file with out it I wouldn't have modded the file to work as it is.
Hello, i dont know why i suddenly get an error when im using your mod. and i cant pinpoint why. i re-downloaded the file in case of corruption, but still, as soon as i add the mod in the mod folder i get:
Error [content0]game\gui\r4hudeventcontroller.ws(67): Unknown type 'EHudTimeOutAction' for property 'action'. Error [content0]game\gui\r4hudeventcontroller.ws(383): Unknown type 'EHudTimeOutAction' for property 'action'. Error [content0]game\gui\hud\modules\hudmoduletimeleft.ws(35): Unknown type 'EHudTimeOutAction' for property 'action'.
i dont know what to correct in above files to get the game to work with your (realy usefull and great) mod. please help?
open quest_function.ws find the first line of text below and replace whole function by this, it helped me quest function ShowHud( show : bool ) { var hud : CR4ScriptedHud;
48 comments
Error [content0]game\gui\r4hudeventcontroller.ws(67): Unknown type 'EHudTimeOutAction' for property 'action'.
Error [content0]game\gui\r4hudeventcontroller.ws(383): Unknown type 'EHudTimeOutAction' for property 'action'.
Error [content0]game\gui\hud\modules\hudmoduletimeleft.ws(35): Unknown type 'EHudTimeOutAction' for property 'action'.
Haven't tried the other version yet.
Any updates from the mod author or has anyone else found a way to solve this?
Always Cards 1.10:
http://www.mediafire.com/download/18dw8qjm5f1wp2k/modAlwaysCards1-10.zip
Always Cards No Duplicates 1.10:
http://www.mediafire.com/download/cwubdnn9y5d7g4i/modAlwaysCards1-10_no_duplicates.zip
Cheers.
Error [content0]game\gui\r4hudeventcontroller.ws(62): Unknown type 'EHudTimeOutAction' for property 'action'.
Error [content0]game\gui\r4hudeventcontroller.ws(37
Error [content0]game\gui\hud\modules\hudmoduletimeleft.ws(30): Unknown type 'EHudTimeOutAction' for property 'action'.
with or with out other mods steam version with Hearts of Stone installed
so I fixed it yay! It was easy
all I did was add a few lines in my quest_function.ws file this is the completed code
if( FactsQuerySum( "merchant_card_" + merchantTag +
"_card_already_given" ) >= 1 )
{
FactsAdd("merchant_card_"+merchantTag
+"_card_already_given",0,-1);
//AddRandomCraftingComponentsGwintQuest
(merchantTag);
//return;
}
if you open up with your favorite text editor search for the first line, that should take you where you need to be.
I did realize that my file was a bit different than the download here. I would think that the modder and I have different versions of the game.
Anyway hope it helps others good luck. And thank you for the original file with out it I wouldn't have modded the file to work as it is.
For me the following are the first lines:
quest function EnableNewGamePlus( enable : bool )
{
theGame.EnableNewGamePlus( enable );
}
...
So put your code after the first { ?
We would also need to add "{" for the next part right? "theGame.EnableNewGamePlus( enable );"
So it should be like this?
quest function EnableNewGamePlus( enable : bool )
{
if( FactsQuerySum( "merchant_card_" + merchantTag +
"_card_already_given" ) >= 1 )
{
FactsAdd("merchant_card_"+merchantTag
+"_card_already_given",0,-1);
// AddRandomCraftingComponentsGwintQuest
(merchantTag);
// return;
}
{
theGame.EnableNewGamePlus( enable );
}
...
Like that?
i dont know why i suddenly get an error when im using your mod. and i cant pinpoint why.
i re-downloaded the file in case of corruption, but still, as soon as i add the mod in the mod folder i get:
Error [content0]game\gui\r4hudeventcontroller.ws(67): Unknown type 'EHudTimeOutAction' for property 'action'.
Error [content0]game\gui\r4hudeventcontroller.ws(383): Unknown type 'EHudTimeOutAction' for property 'action'.
Error [content0]game\gui\hud\modules\hudmoduletimeleft.ws(35): Unknown type 'EHudTimeOutAction' for property 'action'.
i dont know what to correct in above files to get the game to work with your (realy usefull and great) mod. please help?
Error [modalwayscards]game\quests\quest_function.ws(7147): To few params in call to function 'ForceShow'
find the first line of text below and replace whole function by this, it helped me
quest function ShowHud( show : bool )
{
var hud : CR4ScriptedHud;
hud = (CR4ScriptedHud)theGame.GetHud();
if ( hud )
{
hud.ForceShow( show, HVS_System );
}
}