Hoppy's Megamod with BGT105 & much, much more
#41
Posted 11 January 2008 - 04:48 PM
UPDATE:Weidu Log part 2
TotSC quests done>no problems
Finished NTotSC quests> no problem
Defeated Sarevok and entered Shadows of Amn via Bert in the Palace>No problems
Shadows of Amn started and dream sequence to Check the Bodies>OK
Scrolling left to Right in AR3500(new Candlekeep) crashes; a duplicate issue as Alexandar reported in CTB forum. My scrn resolution is 800x600 for game but monitor is
1440x900. Maybe I should install the widescreen mod or try different resolutions? The crash does not happen if I scroll up/down and is a minor issue.
Just thought of the hanging cut scene in CTB with Imoen. What if there were just two more cows in the area that could have the same scripts to give the fresh milk, thus getting the chores done a bit faster for say 8 milk pails? If I talk to Imoen at HR13 and play, when we finish the HR is 18 which is time to go for the lesson. Just a thought.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#42
Posted 13 January 2008 - 11:53 AM
Now I have my hands full. Some mod(s) overwrites CC to the point where I have no Adario NPC(TDD) Bolivar NPC(SOS) and no Melynda for CtB quest (Helping Melinda). The Bouncers are instantly killed as I enter, Forp is not in the BCS at all for TDD quest. MAJOR incompatibilities going on here.
So, I did this to the end of 0406.BCS, all just additions of the snips (BAF) from CtB, SoS, and TDD
IF Global("Adario","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Adario","GLOBAL",1) CreateCreature("ADARIO12",[786.1528],0) // Adario Kalvaras END IF Global("spawn_Forp","AR0406",0) XPGT(Player1,779999) THEN RESPONSE #100 CreateCreature("DDgull01",[1487.1649],8) // Forp SetGlobal("spawn_Forp","AR0406",1) END IF Global("wmSpawnJoluv","GLOBAL",0) THEN RESPONSE #100 CreateCreature("wmart1",[1337.1751],4) // Joluv SetGlobal("wmSpawnJoluv","GLOBAL",1) END IF Global("CbMadameSpawned","AR0406",0) THEN RESPONSE #100 CreateCreature("CBSCHOOK",[282.979],3) // Melynda SetGlobal("CbMadameSpawned","AR0406",1) Continue() END IF Global("BOLIVAR","GLOBAL",0) LevelLT(Player1,16) THEN RESPONSE #100 SetGlobal("BOLIVAR","GLOBAL",1) CreateCreature("BOLIVR09",[426.1462],8) // Bolivar Continue() END IF Global("BOLIVAR","GLOBAL",0) LevelGT(Player1,15) LevelLT(Player1,21) THEN RESPONSE #100 SetGlobal("BOLIVAR","GLOBAL",1) CreateCreature("BOLIVR15",[426.1462],8) // Bolivar Continue() END IF Global("BOLIVAR","GLOBAL",0) LevelGT(Player1,20) THEN RESPONSE #100 SetGlobal("BOLIVAR","GLOBAL",1) CreateCreature("BOLIVR20",[426.1462],8) // Bolivar Continue() END
NOW IT WORKS!!
New thing: TDD NPC's Kivan, Kagain and Yeslick have Global's of 0 to spawn them, if not in BG1 party or in other words not imported. They should still spawn if their respected globals are set to 0 again. Ex. ("Kagain", "GLOBAL",0), but right now they have globals of 1112849 (I made up a number but it was like that)
How do I go about about resetting those Globals back to 0 via BCS scripting (not CLUA or Shadowkeeper)
I was trying
IF Global("EndOfBG1","GLOBAL",2) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",0) END
In the same area AR0020, I am trying to get the GLOBAL to reset to 0 so the following will happen
IF Global("Kagain","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",1) CreateCreature("KAGAIN11",[547.494],12) // Kagain Continue() END
Thanks in advance for any advice!!
Edited by Hoppy, 13 January 2008 - 12:11 PM.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#43
Posted 13 January 2008 - 01:15 PM
Global("EndOfBG1","GLOBAL",2)
THEN
RESPONSE #100
SetGlobal("Kagain","GLOBAL",0)
END
will loop you constantly - try finding a variable set by TDD (I have no clue what, but something that only TDD does).
Then try
IF
Global("EndOfBG1","GLOBAL",2)
Global("<<WHATEVER TDD SETS THAT SHOWS USAGE>>","GLOBAL",<<WhateverNumber>>)
Global("HoppysTTDNPCFix","GLOBAL",0)
THEN
RESPONSE #100
SetGlobal("Kagain","GLOBAL",0)
SetGlobal("HoppysTTDNPCFix","GLOBAL",1)
END
If you don't have a global from TDD that applies, you can install one on detection of TDD by copyibg the block only if TDD is installed.
#44
Posted 13 January 2008 - 01:41 PM
Thank you.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#45
Posted 13 January 2008 - 01:47 PM
Thanks man,
That is exactly what was happening, the looping.
There are a few blocks for Kagain to spawn
IF Global("KagainPartyBG1","GLOBAL",1) Global("BP_KagainBG1Check","GLOBAL",0) THEN RESPONSE #100 SetGlobal("BP_KagainBG1Check","GLOBAL",1) AddXPObject("Kagain",50000) GiveItemCreate("HELM12","Kagain",1,0,0) // Helmet GiveItemCreate("LEAT04","Kagain",1,0,0) // Studded Leather Armor GiveItemCreate("SHLD03","Kagain",1,0,0) // Medium Shield GiveItemCreate("AX1H01","Kagain",1,0,0) // Battle Axe SmallWait(10) ActionOverride("Kagain",FillSlot(SLOT_HELMET)) ActionOverride("Kagain",FillSlot(SLOT_ARMOR)) ActionOverride("Kagain",FillSlot(SLOT_SHIELD)) ActionOverride("Kagain",FillSlot(SLOT_WEAPON)) SmallWait(10) ActionOverride("Kagain",SetGlobal("IWasKickedOut","LOCALS",1)) ActionOverride("Kagain",ChangeAIScript("",OVERRIDE)) ActionOverride("Kagain",SetDialog("KAGAIP")) ActionOverride("Kagain",EquipMostDamagingMelee()) ENDAnd
IF Global("KagainPartyBG1","GLOBAL",1) Global("BP_KagainBG1Check","GLOBAL",0) THEN RESPONSE #100 SetGlobal("BP_KagainBG1Check","GLOBAL",1) SetGlobal("Kagain","GLOBAL",1) ActionOverride("Kagain",SetDialog("KAGAINDD")) ActionOverride("Kagain",ChangeAIScript("KAGAINDD",OVERRIDE)) ActionOverride("Kagain",SetNumTimesTalkedTo(0)) AddXPObject("Kagain",50000) GiveItemCreate("HELM12","Kagain",1,0,0) // Helmet GiveItemCreate("LEAT04","Kagain",1,0,0) // Studded Leather Armor GiveItemCreate("SHLD03","Kagain",1,0,0) // Medium Shield GiveItemCreate("AX1H01","Kagain",1,0,0) // Battle Axe SmallWait(10) ActionOverride("Kagain",FillSlot(SLOT_HELMET)) ActionOverride("Kagain",FillSlot(SLOT_ARMOR)) ActionOverride("Kagain",FillSlot(SLOT_SHIELD)) ActionOverride("Kagain",FillSlot(SLOT_WEAPON)) SmallWait(10) ActionOverride("Kagain",EquipMostDamagingMelee()) END
And from the TDD command used for all associated NPC's that are brought from BG1(Kivan, Yeslick, but Xzar and Monty are extensions from the original quest and Harpers)
IF Global("Kagain","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",1) CreateCreature("KAGAIN11",[547.494],12) // Kagain Continue() END
Edited by Hoppy, 13 January 2008 - 01:54 PM.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#46
Posted 13 January 2008 - 01:51 PM
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#47
Posted 13 January 2008 - 02:15 PM
AR0020.bcs should read as such:woops, only the last one has the create creature action. If I manually do it by console (set GV to 0) it works so I will try your code suggestion.
IF Global("KagainPartyBG1","GLOBAL",1) Global("BP_KagainBG1Check","GLOBAL",0) THEN RESPONSE #100 SetGlobal("BP_KagainBG1Check","GLOBAL",1) SetGlobal("Kagain","GLOBAL",1) ActionOverride("Kagain",SetDialog("KAGAINDD")) ActionOverride("Kagain",ChangeAIScript("KAGAINDD",OVERRIDE)) ActionOverride("Kagain",SetNumTimesTalkedTo(0)) AddXPObject("Kagain",50000) GiveItemCreate("HELM12","Kagain",1,0,0) // Helmet GiveItemCreate("LEAT04","Kagain",1,0,0) // Studded Leather Armor GiveItemCreate("SHLD03","Kagain",1,0,0) // Medium Shield GiveItemCreate("AX1H01","Kagain",1,0,0) // Battle Axe SmallWait(10) ActionOverride("Kagain",FillSlot(SLOT_HELMET)) ActionOverride("Kagain",FillSlot(SLOT_ARMOR)) ActionOverride("Kagain",FillSlot(SLOT_SHIELD)) ActionOverride("Kagain",FillSlot(SLOT_WEAPON)) SmallWait(10) ActionOverride("Kagain",EquipMostDamagingMelee()) END IF Global("Kagain","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",1) CreateCreature("KAGAIN11",[547.494],12) // Kagain Continue() END1st block is from BGT/Compat/TDD/Replace/xAR0020.baf
2nd Block is from TDD/snip/tAR0020.baf along with some other stuff including other Adario stuff. It may be difficult to re-construct everything that got wiped by some other mod's overwrites,,, good luck.
Edited by erebusant, 13 January 2008 - 02:17 PM.
It takes a village...
#48
Posted 13 January 2008 - 02:16 PM
IF
Global("EndOfBG1","GLOBAL",2)
Global("<<WHATEVER TDD SETS THAT SHOWS USAGE>>","GLOBAL",<<WhateverNumber>>) here would be ("Kagain","GLOBAL", x)*
Global("HoppysTTDNPCFix","GLOBAL",0)
THEN
RESPONSE #100
SetGlobal("Kagain","GLOBAL",0)
SetGlobal("HoppysTTDNPCFix","GLOBAL",1)
END
* as of my BG2 game, the Kagain GLOBAL is 11132882
How can I get the game to recognize the value of x as in this case, the rather large number? And in other cases, that number won't be the same in the transfer from BG1 to BG2.
Edited by Hoppy, 13 January 2008 - 02:17 PM.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#49
Posted 13 January 2008 - 02:25 PM
Thanks erebusant. Only the Copper Coronet got wiped out of all my xtra NPC's. Auren, Nina and the above ones to boot. So, I found those and replaced, they work. All other associated areas did not get erased from checking script BAF's from other small mods. For now...
Re:the TDD NPC spawns, My BCS shows like you wrote but I am trying to figure how to reset the GLOBAL for Kagain back to 0 because it is way up there right now. Well, without CLUA command. Is there a way to code in the BCS to erase a GLOBAL?
Or can I ask in the IF block, whether the Global is greater then 1?
Edited by Hoppy, 13 January 2008 - 02:34 PM.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#50
Posted 13 January 2008 - 03:04 PM
I fixed that funky mother F thanks to cmorgan and erebusant's help.
Me fix for all ye swashbucklers
IF Global("EndOfBG1","GLOBAL",2) GlobalGT("Kagain","GLOBAL",1) Global("HoppysTDDNPCFix","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",0) SetGlobal("HoppysTDDNPCFix","GLOBAL",1) END
I put that right before this in original BCS
IF Global("Kagain","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",1) CreateCreature("KAGAIN11",[547.494],12) // Kagain Continue()
Now I will do same for 0900 BCS and Yeslick global
Shar Teel will remain unaffected because no global similarities as with Xzar and Monty.
Kivan will have to use this fix if Kivan and Deheriana is not installed
SWEEEEEEET!!!! GAME ON ! Global GT is the key.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#51
Posted 13 January 2008 - 08:00 PM
But what was it in your installation that caused all these overwrites? That is the key thing to find out or others will have the same problem instead of being able to avoid it.YAAAAAAAY!!!!
I fixed that funky mother F thanks to cmorgan and erebusant's help.
Me fix for all ye swashbucklersIF Global("EndOfBG1","GLOBAL",2) GlobalGT("Kagain","GLOBAL",1) Global("HoppysTDDNPCFix","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",0) SetGlobal("HoppysTDDNPCFix","GLOBAL",1) END
I put that right before this in original BCSIF Global("Kagain","GLOBAL",0) THEN RESPONSE #100 SetGlobal("Kagain","GLOBAL",1) CreateCreature("KAGAIN11",[547.494],12) // Kagain Continue()
Now I will do same for 0900 BCS and Yeslick global
Shar Teel will remain unaffected because no global similarities as with Xzar and Monty.
Kivan will have to use this fix if Kivan and Deheriana is not installed
SWEEEEEEET!!!! GAME ON ! Global GT is the key.
It takes a village...
#52
Posted 13 January 2008 - 09:18 PM
The Globals for Kagain, Yeslick and the rest I "think" are being set by BG1 NPC proj. As those enormous numbers are like dialog counters seen in Romance GLOBALS and the like.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#53
Posted 14 January 2008 - 06:22 AM
which is why modders now use community prefixes and do heavy research on who else does what in both vanilla and modded games now. Because it would stink to have a great mod, only to find that when you have set your global named "chapter" to 5 in BG, and nothing works because the game uses "chapter"...
Edited by cmorgan, 14 January 2008 - 06:23 AM.
#54
Posted 14 January 2008 - 08:55 AM
Some of them are actually vanilla stuff, too, I think - BG sets things like "coran" and "kivan" as timers for their "hey, pay attention to my quest or I will leave FOREVAR..."
which is why modders now use community prefixes and do heavy research on who else does what in both vanilla and modded games now. Because it would stink to have a great mod, only to find that when you have set your global named "chapter" to 5 in BG, and nothing works because the game uses "chapter"...
That is a good point and it looks like BG1 NPC has some unique Globals of its own to combat that "shared global" mixup. Your suggestion of the code worked perfectly to get the desired result of Kagain and Yeslick spawning via the area BCS. There is a BGT Tweak too that imports all of the NPC's from BG1 that I have installed and I will check that, so the key for whatever is importing the NPC, to set those generic globals back to 0.
Now that I am in SoA parts now, I am feeling nostalgic for the BG1 NPC project, I wouldn't change a thing besides the normal "housekeeping".
I have almost rebuilt the Crapper Coronet area BCS from scratch, so the rest is just small potatoes
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#55
Posted 16 January 2008 - 03:59 PM
Just finished slave quests and the slaver ship related to Hendak. At the dialog he says thanks for freeing the kids, XP is fine and gives gold +sword and reputation increase of 1. Instantly at the end of the dialog, Reputation decreases 2! WTF!! Thanks for a job well done?
I looked in Hendak DLG and found the reference to where this is happening and it says the normal bits and reputationinc of 1. Nowhere can I find the Rep decrease of 2. I think I restored the AR0406BCS pretty damn well I must say but can't find the cause. I only know at this point that RE (Romantic Encounters) adds some stuff to his dialog, but I checked his whole file.
Just weird s***
Any Ideas?
Edit: got it, Yarraena was the cause. Her joining and leaving affects reputation like Viconia, but it was very late so that is why I was confused. She was acquired in Chateau Irenicus and the Rep didn't change then.
Edited by Hoppy, 21 January 2008 - 07:34 PM.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#56
Posted 20 January 2008 - 03:16 PM
I wonder if there is still some stuff going on from the previous BG1 part that is confusing things. Any ideas coding ninjas?
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#57
Posted 21 January 2008 - 07:43 PM
IF
Global("EndOfBG1","GLOBAL",2)
GlobalGT("Yeslick","GLOBAL",1)
Global("HoppysTDDNPCFix2","GLOBAL",0)
THEN
RESPONSE #100
SetGlobal("Yeslick","GLOBAL",0)
SetGlobal("HoppysTDDNPCFix2","GLOBAL",1)
END
Probably not a problem if starting a fresh BG2 game with out the transition from BG1.
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#58
Posted 25 January 2008 - 04:49 AM
I HAVE THE CHOICE OF SENDING KAGAIN TO:
1) The Friendly Arm
2) Jovial Juggler
3) Elfsong
But, I don't have to do that because I can CLUA to those places and see him there. Why is Kagain (Fighter) and Kagain (Trollslayer) getting sent to the same place? Got it! They all use KAGAINP.DLG which is changed by one mod component that I can't name right now because I am sleepy........
"If you think that a size of the mod indicates an amount of bugs that it introduces and their severity you're totally wrong...
Try not to use next time a load of shitty "super-mega-improving-tweaking-revising" small mods that you have installed and try to meet Wulfgar once again." - King Diamond
The Definitive Guide to Trolls
"Finding food and a place to sleep is your own business. I imagine Paul the Cat should have some fun with you, too" - Potencius in The Darkest Day
"You have been warned, little bastard!" -Khelben to a young <CHARNAME>in Check the Bodies
There are those who will snivel, and offer nothing in return except criticism, meanwhile never lifting a finger to do other than to cut other peoples labor down simply for the fact that they lack the capability to put anything of their own together. -erebusant
#59
Posted 25 January 2008 - 08:12 AM
Could the KAGAINP.DLG be due to BG1NPC?
#60
Posted 25 January 2008 - 09:27 AM