Jump to content


Photo

BP 181 bugs?


  • Please log in to reply
100 replies to this topic

#81 horred the plague

horred the plague

    Scourge of the Seven Seas

  • Modder
  • 1899 posts

Posted 25 February 2014 - 10:21 AM

This gets more baffling. Today w/ bp scripts my brand new PC was attacked, but an imported bg2 pc was not. I toggled the scripts back and forth---on a brand new pc w/ vanilla scripts firebeard walked right out of the area w/o attacking or talking. In a second game like this he was just randomly walking around the area.

 

 

Unfortunately you're right. I tested it specifically. All of a sudden, literally after 12 years and w/ dozens of other modders using this,

 

IF

    True()

THEN

        RESPONSE #100

END

 

suddenly no longer works on BG2. It works fine on BGEE, I put the exact same scripts in and assigned them to firebeard. I removed ToB-ex, it's not the culprit.

 

 

and

 

 

IF

    True()

THEN

    RESPONSE #100

        NoAction()   

END

 

still prevents the subsequent scripts from firing.

 

 

I don't know why, I can't help caring but I totally give up--totally frustrated. Absolutely blown away, that a key function can work perfectly for many many many years and suddenly not, when nobody changed a damn thing.

 

THE BOTTOM LINE:

 

With this not working, BP will NOT work on BG2. So, after 12 years and 1000's of happy players, BP NO LONGER CAN SUPPORT THIS ANCIENT $%&*ING GAME. My advice: Buy BGEE and BG2EE and throw your crusty decade-old disc's in the garbage.

 


My support for BG2:ToB officially ends today. I can't fight back, when I'm boxing at shadows. When Spellhold has a BG2EE category, I'll move this mod out of the BG2 section and into that one. Sorry to all my fans....I'm at a loss for words, if I leave out the swear words.



#82 Cahir

Cahir
  • Modder
  • 133 posts

Posted 25 February 2014 - 10:31 AM

Sorry for interrupting this thrilling this discussion, but does it all mean, that BP 181 works flawlessly with BG(2)EE?

 

Cause ye know, I've already thrown away my dusty old vanilla BG(2) discs some time ago :devil:



#83 horred the plague

horred the plague

    Scourge of the Seven Seas

  • Modder
  • 1899 posts

Posted 25 February 2014 - 11:29 AM

Sorry for interrupting this thrilling this discussion, but does it all mean, that BP 181 works flawlessly with BG(2)EE?

 

Cause ye know, I've already thrown away my dusty old vanilla BG(2) discs some time ago :devil:

 

Well, I can't say "flawlessly" w/ a straight face...but this bug definitely does not happen there. I just hotwired BP onto BGEE, and tested the same situation. Firebeard acted as intended--no unusual behavior whatsoever. Not even the infamous fire shield bug.

 

 

The plot thickens. I tried the ultimate shutoff on ToB, and still it cast through it:

 

IF
    True()
THEN
    RESPONSE #100
END

 

I'm talking with what remains of my scripting colleagues about this, and they are equally as baffled. BP is not the only mod using this trick, so the potential for chaos is widespread. We all know this used to work! I've tested Win98/XP compatibility modes, I tried a clean BGMAIN after uninstalling tob-ex.

 

Nothing is working. If we can figure out what's causing it, I can support ToB again. I didn't pull support lightly, nor willingly. There's no script workaround that can help this problem--zero.  Still trying to solve it.


Edited by horred the plague, 25 February 2014 - 11:32 AM.


#84 pro5

pro5
  • Modder
  • 722 posts

Posted 25 February 2014 - 11:43 AM

Um, are you sure you're not overreacting on this, Horred?

When I tested the behavior of the empty execution blocks earlier (after you clarified that they should stop current script but move on to the next one in script stack), I confirmed that they are in fact working as you describe. Just not in the first AI round, when they fall through. I'll do more testing in the next few days to be sure, but if this is correct - it's hardly an insurmountable problem, OnCreation() triggers should help.

Also, I have to ask, is it possible it always worked like this and the "fire shield" and other buffs firing (which you admitted happened), for instance, was caused by it? After all, Firebeard is only casting offensive spells first because he doesn't have buffs like Ghost Armor memorized, otherwise the script would prioritize them...

Edited by pro5, 25 February 2014 - 11:44 AM.


#85 horred the plague

horred the plague

    Scourge of the Seven Seas

  • Modder
  • 1899 posts

Posted 25 February 2014 - 12:04 PM

Success! It's a cludgy workaround, but it's worked in 3 tests in a row:

 

 

IF
    OR(2)
        !Allegiance(Myself,EVILCUTOFF)
        !Detect([GOODCUTOFF])
    Global("TOB_SUXX","LOCALS",0)
THEN
    RESPONSE #100
        SetGlobal("TOB_SUXX","LOCALS",1)
END

IF
    OR(2)
        !Allegiance(Myself,EVILCUTOFF)
        !Detect([GOODCUTOFF])
    Global("TOB_SUXX","LOCALS",1)
THEN
    RESPONSE #100
END

 

This adds a 1-second delay to the scripts, but at least in firebeard's case he's a non-combatant so it won't affect a battle.

 

Now, what remains is devising some weidu code to change this in all the scripts, but only in a ToB install. That, you're going to have to wait for, when I can ration the time out. I can write IE scripts from memory, but not weidu scripts--need much document perusal. So until then BP is closed for ToB, but works fine on BG2EE.

 

Phew...at least it can live on. Other scriptors who used this function: BEWARE!!

 

We eliminated all but one theory: the new GoG.com installation broke this function. The original vanilla scripts never use it, so maybe they totally overlooked its usefulness when recompiling the engine.

 

 

My other assertion still remains: Scrap this old game and play EE instead! Not only does this function work, it's a way better engine, way better for modding on, has very active dev support and is getting better & better all the time.


Edited by horred the plague, 25 February 2014 - 12:05 PM.


#86 pro5

pro5
  • Modder
  • 722 posts

Posted 25 February 2014 - 12:33 PM

We eliminated all but one theory: the new GoG.com installation broke this function. The original vanilla scripts never use it, so maybe they totally overlooked its usefulness when recompiling the engine.
I'm pretty sure my ToB copy is not GoG, it's a backup I created ages ago from some ancient CD version.

For your WeiDU code, this should do the trick
<<<<<<<< ...\p5-inlined\src.baf
IF
  OR(2)
	!Allegiance(Myself,EVILCUTOFF)
	!Detect([GOODCUTOFF])
THEN
  RESPONSE #100
END
>>>>>>>>

<<<<<<<< ...\p5-inlined\dest.baf
IF
    OR(2)
        !Allegiance(Myself,EVILCUTOFF)
        !Detect([GOODCUTOFF])
    Global("TOB_SUXX","LOCALS",0)
THEN
    RESPONSE #100
        SetGlobal("TOB_SUXX","LOCALS",1)
END

IF
    OR(2)
        !Allegiance(Myself,EVILCUTOFF)
        !Detect([GOODCUTOFF])
    Global("TOB_SUXX","LOCALS",1)
THEN
    RESPONSE #100
END
>>>>>>>>

SILENT
COPY_EXISTING_REGEXP GLOB ~BP.*\.bcs~ ~override~
	R_B_B ~...\p5-inlined\src.baf~ ~...\p5-inlined\dest.baf~
BUT_ONLY
VERBOSE
This won't catch other shutoff blocks, obviously, so you might need to repeat this for every one of them.

#87 horred the plague

horred the plague

    Scourge of the Seven Seas

  • Modder
  • 1899 posts

Posted 25 February 2014 - 12:41 PM

We eliminated all but one theory: the new GoG.com installation broke this function. The original vanilla scripts never use it, so maybe they totally overlooked its usefulness when recompiling the engine.
I'm pretty sure my ToB copy is not GoG, it's a backup I created ages ago from some ancient CD version.

For your WeiDU code, this should do the trick
<<<<<<<< ...\p5-inlined\src.baf
IF
  OR(2)
	!Allegiance(Myself,EVILCUTOFF)
	!Detect([GOODCUTOFF])
THEN
  RESPONSE #100
END
>>>>>>>>

<<<<<<<< ...\p5-inlined\dest.baf
IF
    OR(2)
        !Allegiance(Myself,EVILCUTOFF)
        !Detect([GOODCUTOFF])
    Global("TOB_SUXX","LOCALS",0)
THEN
    RESPONSE #100
        SetGlobal("TOB_SUXX","LOCALS",1)
END

IF
    OR(2)
        !Allegiance(Myself,EVILCUTOFF)
        !Detect([GOODCUTOFF])
    Global("TOB_SUXX","LOCALS",1)
THEN
    RESPONSE #100
END
>>>>>>>>

SILENT
COPY_EXISTING_REGEXP GLOB ~BP.*\.bcs~ ~override~
	R_B_B ~...\p5-inlined\src.baf~ ~...\p5-inlined\dest.baf~
BUT_ONLY
VERBOSE
This won't catch other shutoff blocks, obviously, so you might need to repeat this for every one of them.

 

Well aware of that, which is why there's no quick fix available. This will take a lot of time; there's over 300 scripts in the mod to dissect. This is time I don't have currently, nor in the forseeable near future. Nor, at present, even the inclination--I didn't break this and I no longer even play ToB. Thus, I have to pull support for ToB--at the very least, for a GoG version. Use at your own risk, fair warning issued.

 

I can't prove nor disprove that GoG claim, only going on first hand experience over the years. My last BGT run was on my original disc install, and it worked fine. It works fine on the EE engines (both games) right this minute. This GoG install does not work fine, as we've both noted.

 

However, @pro5 I greatly appreciate your diligence in reporting, your support and your code offer. When I do find time, I'll base the work off of it (and naturally, pass along the credits).


Edited by horred the plague, 25 February 2014 - 12:44 PM.


#88 horred the plague

horred the plague

    Scourge of the Seven Seas

  • Modder
  • 1899 posts

Posted 25 February 2014 - 02:42 PM

And further we go down the rabbit hole...

 

I tried all sorts of stuff, and narrowed it down to 1 line. A very simple script confirmed my results.

 

Remove the Continue() from the following block:

 

IF
    Global("NOBREACH","LOCALS",0)
    !HaveSpell(WIZARD_BREACH)
    !HaveSpell(WIZARD_SPELL_STRIKE)
    !HaveSpell(WIZARD_PIERCE_SHIELD)
    !HaveSpell(WIZARD_RUBY_RAY_OF_REVERSAL)
    !HaveSpell(WIZARD_WARDING_WHIP)
    !HaveSpell(WIZARD_PIERCE_MAGIC)
    !HaveSpell(WIZARD_SECRET_WORD)
    !HaveSpell(WIZARD_SPELL_THRUST)
THEN
    RESPONSE #100
        SetGlobal("NOBREACH","LOCALS",1)
        Continue()
END

 

And that global stagger proposed in the prior thread is no longer needed. It's something to do w/ Continue(), and it doesn't affect EE games. Nor, did it affect the original disc installs. Continue() is causing it to ignore that shutoff, and just plough right over it.

 

This should be a lot easier to address than the other work-around, thankfully. Stopping for today; I'll get something together in the next few days.



#89 pro5

pro5
  • Modder
  • 722 posts

Posted 25 February 2014 - 08:32 PM

Now that you mention it... all we had to do was look in the IESDP under Continue(). :)
Use of continue in a script block will cause the parser to treater subsequent empty response blocks as though they contained a Continue() command - this parsing can be stopped by including a NoAction() in the empty response block.
Good to know EE fixes that.
 
However, @pro5 I greatly appreciate your diligence in reporting, your support and your code offer.
No problem, glad it all worked out in the end.

#90 Quiet

Quiet
  • Member
  • 189 posts

Posted 22 April 2014 - 10:31 PM

There was a problem with the installation of the component "Kensai Ryu's Improved Crypt King":
ERROR: error compiling [bp/baf/new_bad/bpundead.baf]: Sys_error("bp/baf/new_bad/bpundead.baf: No such file or directory")

Solution: in file bp/lib/bp_encounters.tph line 1927:
COMPILE ~bp/baf/new_bad/bpundead.baf~
need change to:
COMPILE ~bp/baf/new_baf/undead/bpundead.baf~


#91 rainagel

rainagel
  • Member
  • 18 posts

Posted 11 July 2014 - 09:13 PM

Hi, guys.

I got an error installing the Ritual component from BP1.81 - 4672 with BWI.bat.

The .bat reported [BP/Ritual/tAR3000.baf] parse error at line 7 column 16-54

After opening that .baf I found this:

ActionOverride(Player1,LeaveAreaLUAPanic("sola0002","",[677.502],NW))
ActionOverride(Player1,LeaveAreaLUA("sola0002","",[677.502],NW))
ActionOverride(Player2,LeaveAreaLUA("sola0002","",[677.502],NW))
ActionOverride(Player3,LeaveAreaLUA("sola0002","",[677.502],NW))
ActionOverride(Player4,LeaveAreaLUA("sola0002","",[677.502],NW))
ActionOverride(Player5,LeaveAreaLUA("sola0002","",[677.502],NW))
ActionOverride(Player6,LeaveAreaLUA("sola0002","",[677.502],NW))
which I believe should be
ActionOverride(Player1,LeaveAreaLUAPanic("sola0002","",[677.502],2))
ActionOverride(Player1,LeaveAreaLUA("sola0002","",[677.502],2))
ActionOverride(Player2,LeaveAreaLUA("sola0002","",[677.502],2))
ActionOverride(Player3,LeaveAreaLUA("sola0002","",[677.502],2))
ActionOverride(Player4,LeaveAreaLUA("sola0002","",[677.502],2))
ActionOverride(Player5,LeaveAreaLUA("sola0002","",[677.502],2))
ActionOverride(Player6,LeaveAreaLUA("sola0002","",[677.502],2))

:shifty:



#92 horred the plague

horred the plague

    Scourge of the Seven Seas

  • Modder
  • 1899 posts

Posted 27 July 2014 - 06:09 AM

I've seen this one before in other components, and this comes right from Tactics. (Only thing we did to Tactics was fix bugs, like this one, and make it install smoother). BGEE/BG2EE will parse this no problem, and some versions of BG2 also will parse it.

 

Attached File  dir.ids   111bytes   322 downloads

 

Here's the dir.ids file from the bg2ee game attached. This should make the installer work. w/o it "should" parse to zero, which is also fine. Facing isn't even used in BG beyond screen effect.



#93 hook71

hook71
  • Member
  • 280 posts

Posted 21 August 2014 - 10:11 AM

Bug that might be BP-related reported here: http://forum.baldurs...eld-on-level-up

 

Looks like Big Picture overwrites MFIST7.ITM/MFIST8.ITM with two-handed versions in BGII:EE.



#94 Elve

Elve
  • Member
  • 11 posts

Posted 04 May 2015 - 10:33 AM

Now that you mention it... all we had to do was look in the IESDP under Continue(). :)

Use of continue in a script block will cause the parser to treater subsequent empty response blocks as though they contained a Continue() command - this parsing can be stopped by including a NoAction() in the empty response block.
Good to know EE fixes that.
 
However, @pro5 I greatly appreciate your diligence in reporting, your support and your code offer.
No problem, glad it all worked out in the end.

 

So, what would be the "right" fix for this problem? Adding NoAction() to all those empty blocks?



#95 -dsa-

-dsa-
  • Guest

Posted 13 May 2015 - 02:09 PM

dsdsasda

#96 micbaldur

micbaldur

    Retired Perkele, Ultimate BWP player

  • Member
  • 1692 posts

Posted 01 July 2015 - 06:21 AM

Component "Kensai Ryu's Brown Dragon" has cre typo at BP/BrownDragon/bAR1900.BAF.

 

It has KRDRGBRN and it probably should be BPDRGBRN. More info here.

 

There is also problem at Sahuagin City with Ettin because BP creates Mage Construct (CONST01.CRE) with same script name SAHOTY01. More info here.

 

Lollorian has fixed these in BWP Fixpack.


CHARNAMEs excellent adventures in the world of BWP expert-install here

 

Thanks to Leonardo Watson for making this possible


#97 agb1

agb1
  • Member
  • 1623 posts

Posted 14 December 2015 - 09:16 PM

@horred - we are trying to identify stable components of BP that can be used with or instead of SCS components in BGT games.

 

Observations so far can be found here, mixed with other mod issues:

 

http://www.shsforums...ritized-bg1-bg2

 

I see above that you've withdrawn support for the old engine, but your comments would still be appreciated if you have any insight on the issues we are seeing.

 

Thanks!


BiG World Fixpack (community collection of mod fixes and compatibility patches, with user-friendly cross-platform script)

 

BiG World Setup (tool to automate best-practice installation of Infinity Engine mods on Windows, with conflict analysis)

Latest version:    https://bitbucket.or.../get/master.zip


#98 agb1

agb1
  • Member
  • 1623 posts

Posted 09 February 2016 - 03:02 PM

BP's Improved Watcher's Keep component (#1750) modifies creatures to use items (DAGG25 and DAGG26 at least, maybe others) that are only installed by BP's Add magic Bags and Throwing Daggers to Stores component (#35).


BiG World Fixpack (community collection of mod fixes and compatibility patches, with user-friendly cross-platform script)

 

BiG World Setup (tool to automate best-practice installation of Infinity Engine mods on Windows, with conflict analysis)

Latest version:    https://bitbucket.or.../get/master.zip


#99 -Laufey-

-Laufey-
  • Guest

Posted 25 March 2016 - 01:57 AM

Hi, I'm hoping that perhaps somebody knows how to help me with some installation issues I'm having with this mod. I'm trying to install it to BG2 EE, and it's a clean installation where I haven't yet installed any other mods that could conflict with it. Some components do work, but not the core components. For what it's worth, I've had the same issue with both Steam version and Beamdog downloaded version of the game.  Here is my debug file:

 

 

WeiDU v 23800 Log
 
 Setup-BP.exe
[./chitin.key] loaded, 847192 bytes
[./chitin.key] 186 BIFFs, 60118 resources
WARNING: parsing log [WeiDU.log]: Sys_error("WeiDU.log: No such file or directory")
 
Choose your language:
 0 [English]
 1 [Deutsch]
 2 [Francais]
 3 [Espanol]
 4 [Italiano]
 5 [Russian]
Using Language [English]
[English] has 1 top-level TRA files
[bp/language/english/setup.tra] has 673 translation strings
 
Please choose the language in which you wish to play the game.
If you later wish to play the game in a different language you will need to edit the file weidu.conf and reinstall your mods.
 0 [German]
 1 [English]
 2 [Spanish]
[.\lang\en_us/dialog.tlk] loaded, 11589335 bytes
[.\lang\en_us/dialog.tlk] 103044 string entries
 
Using .\lang\en_us/dialog.tlk
 
Would you like to display the components from [Core Component (Required)]?
[Y]es, [N]o?
Would you like to display the components from [Miscellaneous Tweaks]?
[Y]es, [N]o?
Would you like to display the components from [Creature Enhancements]?
[Y]es, [N]o?
Would you like to display the components from [Encounter Enhancements]?
[Y]es, [N]o?
Would you like to display the components from [Modder Contributions]?
[Y]es, [N]o?
Would you like to display the components from [Tactics Mod Additions]?
[Y]es, [N]o?
Would you like to display the components from [ToB Enhancements]?
[Y]es, [N]o?
Install Component [Big Picture, core component (required for most subcomponents)]?
[I]nstall, or [N]ot Install or [Q]uit?
Installing [Big Picture, core component (required for most subcomponents)] [v181-b4610]
Copying 1 file ...
[bp/sfx/core/BPINVISB.EFF] loaded, 272 bytes
Copied [bp/sfx/core/BPINVISB.EFF] to [override/BPINVISB.EFF]
[bp/sfx/core/gauth01.eff] loaded, 272 bytes
Copied [bp/sfx/core/gauth01.eff] to [override/gauth01.eff]
[bp/sfx/core/snare5.eff] loaded, 272 bytes
Copied [bp/sfx/core/snare5.eff] to [override/snare5.eff]
[bp/sfx/core/SPIN935C.EFF] loaded, 272 bytes
Copied [bp/sfx/core/SPIN935C.EFF] to [override/SPIN935C.EFF]
[bp/sfx/core/SPTREANT.EFF] loaded, 272 bytes
Copied [bp/sfx/core/SPTREANT.EFF] to [override/SPTREANT.EFF]
Copying 1 file ...
BIFF may be in hard-drive CD-path [./lang/en_us/DATA/ITEMS.BIF]
BIFF may be in hard-drive CD-path [./cache/DATA/ITEMS.BIF]
[./DATA/ITEMS.BIF] 795256 bytes, 2070 files, 0 tilesets
Copied [sw1h01.itm] to [override/iplot01k.itm]
Copying 1 file ...
Copied [sw1h01.itm] to [override/iplot04g.itm]
Copying 1 file ...
Copied [sw1h01.itm] to [override/iplot04h.itm]
Copying 1 file ...
Copied [sw1h01.itm] to [override/iplot04i.itm]
BIFF may be in hard-drive CD-path [./lang/en_us/DATA/AREAS.BIF]
BIFF may be in hard-drive CD-path [./cache/DATA/AREAS.BIF]
[./DATA/AREAS.BIF] 2545224 bytes, 318 files, 0 tilesets
BIFF may be in hard-drive CD-path [./lang/en_us/DATA/25AREAS.BIF]
BIFF may be in hard-drive CD-path [./cache/DATA/25AREAS.BIF]
[./DATA/25AREAS.BIF] 659152 bytes, 85 files, 0 tilesets
BIFF may be in hard-drive CD-path [./lang/en_us/DATA/NEERA.BIF]
BIFF may be in hard-drive CD-path [./cache/DATA/NEERA.BIF]
[./DATA/NEERA.BIF] 59145828 bytes, 1858 files, 11 tilesets
 
BG2EE Detected. Just adding spells.
Creating 1 directory
Creating 1 directory
Creating 1 directory
Creating 1 directory
Copying 1 file ...
ERROR: error loading [BPSeries/source/AICompile.exe]
Stopping installation because of error.
Stopping installation because of error.
Stopping installation because of error.
Stopping installation because of error.
 
ERROR Installing [Big Picture, core component (required for most subcomponents)], rolling back to previous state
Unable to Unlink [bp/backup/0/OTHER.0]: Unix.Unix_error(1, "unlink", "bp/backup/0/OTHER.0")
[bp/backup/0/UNSETSTR.0] SET_STRING uninstall info not found
Will uninstall   9 files for [BP/SETUP-BP.TP2] component 0.
Uninstalled      9 files for [BP/SETUP-BP.TP2] component 0.
BIFF may be in hard-drive CD-path [./lang/en_us/DATA/25SCRIPTS.BIF]
BIFF may be in hard-drive CD-path [./cache/DATA/25SCRIPTS.BIF]
[./DATA/25SCRIPTS.BIF] 4565076 bytes, 1020 files, 0 tilesets
BIFF may be in hard-drive CD-path [./lang/en_us/DATA/ORPHAN.BIF]
BIFF may be in hard-drive CD-path [./cache/DATA/ORPHAN.BIF]
[./DATA/ORPHAN.BIF] 2462144 bytes, 70 files, 0 tilesets
BIFF may be in hard-drive CD-path [./lang/en_us/DATA/DEFAULT.BIF]
BIFF may be in hard-drive CD-path [./cache/DATA/DEFAULT.BIF]
[./DATA/DEFAULT.BIF] 2820780 bytes, 507 files, 0 tilesets
Unable to Unlink [bp/backup/0/READLN.0]: Unix.Unix_error(20, "unlink", "bp/backup/0/READLN.0")
Unable to Unlink [bp/backup/0/READLN.0.TEXT]: Unix.Unix_error(20, "unlink", "bp/backup/0/READLN.0.TEXT")
ERROR: Unix.Unix_error(20, "stat", "BPSeries/source/AICompile.exe")
PLEASE email the file SETUP-BP.DEBUG to www.shsforums.net/forum/192-big-picture/
Using Language [English]
[English] has 1 top-level TRA files
[bp/language/english/setup.tra] has 673 translation strings
 
Install Component [Big Picture, core component (required for most subcomponents)]?
[I]nstall, or [N]ot Install or [Q]uit? Saving This Log:
 
NOT INSTALLED DUE TO ERRORS Big Picture, core component (required for most subcomponents)
 
  WeiDU Timings
OUTER_INNER_PATCH_SAVE           0.000
parsing .tra files               0.000
<<<<<<<<                         0.000
unmarshal BIFF                   0.000
adding translation strings       0.000
load TLK                         0.000
tp2 uninstall                    0.000
DEFINE_PATCH_FUNCTION            0.000
DEFINE_ACTION_FUNCTION           0.000
OUTER_SPRINT                     0.000
OUTER_SET                        0.000
INCLUDE                          0.000
BUT_ONLY                         0.000
MKDIR                            0.000
process_patch2                   0.000
DEFINE_ACTION_MACRO              0.000
OUTER_INNER_PATCH                0.000
ACTION_IF                        0.000
PRINT                            0.000
READ_*                           0.000
loading files                    0.000
LAUNCH_ACTION_FUNCTION           0.000
saving files                     0.000
DEFINE_PATCH_MACRO               0.000
COPY                             0.000
Parsing TP2 files                0.016
eval_pe                          0.016
unmarshal KEY                    0.031
Parsing TPA files                0.047
unmarshal TLK                    0.094
stuff not covered elsewhere      0.109
TOTAL                            0.313

 

 



#100 The Imp

The Imp

    Not good, see EVIL is better. You'll LIVE.

  • Member
  • 5150 posts

Posted 25 March 2016 - 04:10 AM

Extract this archive to your game directory to fix that ... the report of the file being broken is incorrect.

 

But then again:

Installing [Big Picture, core component (required for most subcomponents)] [v181-b4610]

According to this, that's the WRONG version, use the ...11


Edited by The Imp, 25 March 2016 - 04:10 AM.

Yep, Jarno Mikkola. my Mega Mod FAQ. Use of the BWS, and how to use it(scroll down that post a bit). 
OK, desert dweller, welcome to the sanity, you are free to search for the limit, it's out there, we drew it in the sand. Ouh, actually it was still snow then.. but anyways.