Jump to content

Dialogs


CoM_Solaufein

Recommended Posts

http://forums.gibberlings3.net/index.php?showtopic=10003

 

a whole tutorial and breakdown -

 

if you want to skip to the end, and do the manual check by researching the BGT docs instead of just grabbing the bgt_cmp_vars.tph || tutu_cmp_vars.tph work already done,

 

IF BGT THEN

OUTER_SPRINT ~my_dv_or_file_that_needs_a_specific_name~ ~myBGTdv~

ELSE

IF TUTU THEN

OUTER_SPRINT ~my_dv_or_file_that_needs_a_specific_name~ ~myTUTUdv~

ELSE FAIL

 

If you take a look at bg1npc you will see a full treatment; Ascension64 also uses a modified version in UB (for BGT and Tutu);

 

it does have some forum presence on several forums now for research, but to reverse engineer it you might as well start where we started, with bg1npc.

 

 

Seeing as you are an Old Guard and Grand Master, and a site hoster to boot, if you have specifics you can post, I would be very willing to assist with checking the list and modiying a .tph for you - the only drawback is it would be better to work from a posted list here on this thread. I am behind in helping several other folks out (and my own stuff is slower than molasses). If you were to post some things up here, it would be easier for multiple folks to recheck and help.

 

I'll swing by tomorrow with code examples it you want them posted here instead of grabbing them from UB/BG1NPC.

Link to comment

For those of you who might also be interested, he's talking about cross-platform variables that will allow you to only code it once for BGT/Tutu. The tutorial he links will get you there, but it will involve no small amount of head-scratching along the way. Stay with it, though, since it really is a lot easier, in the end.

Link to comment

.rar of mymod\lib\ lib.rar

 

Contents

Library: g3_bgt_cpmvars.tpa

Usage: In .tp2, determine if BGT, then

/* Declaration of BGT Platform Variables */
ACTION_IF FILE_EXISTS_IN_GAME ~AR7200.are~ THEN BEGIN
/* tp2, d, and baf parsing variables */
OUTER_SPRINT "tutuorbgt" "BGT"
OUTER_SPRINT "tutu_var" ""
OUTER_SPRINT "tutu_scripta" "A"

<snip>

/* DVs are the same for Tutu/BGT, except for Imoen */
OUTER_SPRINT "IMOEN_DV" "imoen2"

<snip>

/* Set Post Dialogue Files */
OUTER_SPRINT "AJANTIS_POST" "AJANTP"

<snip>

/* Set BGT BanterFiles */
OUTER_SPRINT "AJANTIS_BANTER" "BAJANT"

<snip>

/* BGT Chapters */
OUTER_SPRINT "tutu_prologue"  "1"

<snip>

/* BGT NPC override script compilation */
OUTER_SPRINT "ALORA_BCS" "ALORA"

<snip>

/* BGT Areas */
OUTER_SPRINT "NBaldursGate_TempleofHelm" "ARA002"

<snip>

/* AREA_SCRIPTS (Only Includes Partial List Of Ones BG1 NPC Utilized) */
OUTER_SPRINT "BelchingDragonTavern_BCS" "AR3709"

<snip>

/* Tutu Areas */
OUTER_SPRINT "NBaldursGate_TempleofHelm" "FW0002"

<snip>

/* AREA_SCRIPTS (BG1 NPC Only) */
OUTER_SPRINT "BelchingDragonTavern_BCS" "_AR4809"

<snip>

 

Library: g3_tutu_cpmvar.tpa

Usage: In .tp2, determine if Tutu, then

/* Declaration of Tutu Platform Variables */
 ACTION_IF FILE_EXISTS_IN_GAME ~FW0100.are~ THEN BEGIN
/* tp2, d, and baf parsing variables based on conversion */
OUTER_SPRINT "tutuorbgt" "Tutu"
OUTER_SPRINT "tutu_var" "_"
OUTER_SPRINT "tutu_scripta" "_"

<snip>

/* DVs are the same for Tutu/BGT, except for Imoen */
OUTER_SPRINT "IMOEN_DV" "imoen"

<snip>

/* Set Post Dialogue Files */
OUTER_SPRINT "AJANTIS_POST" "_AJANTP"

<snip>

/* Set Tutu BanterFiles */
OUTER_SPRINT "AJANTIS_BANTER" "_BAJANT"

<snip>

/* Set Tutu Joined Dialogue Files */
OUTER_SPRINT "AJANTIS_JOINED" "_AJANTJ"

<snip>

/* Tutu NPC override script compilation */
OUTER_SPRINT "AJANTIS_BCS" "_AJANTIS"

<snip>

 

 

Library: g3_fluid_cpmvars.tpa

Usage: In .tp2, determine if BGT, then INCLUDE ~mymod\lib\g3_tutu_cpmvars.tpa~

Purpose: Sets values for predefined variables that represent initial states for BGT and Tutu on some dialogs compiled by BGT that do not follow normal state numbers. For more information, search SHS's BGT forum for thread posts regarding fluid states..

 

Library: macro_tutu_items_to_bgt.tph

Usage: In .tp2, determine if BGT, then

 

/* BGT compatability macro */

INCLUDE ~myMod/LIB/macro_tutu_items_to_bgt.tph~

 

You may need to check and add more blocks - simple enough, just follow the format in the file and add more in the middle to swap in your own. The sample

	PATCH_IF ("%item%" STRING_COMPARE_CASE "_AROW01" = 0) BEGIN
  WRITE_ASCII ("%itm_off%" + (0x14 * "%index%")) "AROW01" #8
END ELSE

and let's add a fictional one:

	PATCH_IF ("%item%" STRING_COMPARE_CASE "TUTURES" = 0) BEGIN
  WRITE_ASCII ("%itm_off%" + (0x14 * "%index%")) "BGTRES" #8
END ELSE

 

and on the creatures that are distributed with Tutu resources/items, call on the macro - or do it at the end all at once (this block looks to see if the game is BGT, then looks for all creatures that start with either X# or P#, and patches all of them:

  /* Patching all creatures in component for Tutu > BGT items */
 ACTION_IF FILE_EXISTS_IN_GAME ~AR7200.are~ THEN BEGIN
COPY_EXISTING_REGEXP GLOB ~^[XP]#.+\.cre$~ ~override~
  PATCH_IF (SOURCE_SIZE > 0x2d3) BEGIN
   LAUNCH_PATCH_MACRO ~tutu_items_to_bgt~
  END
BUT_ONLY_IF_IT_CHANGES
 END

 

ids_entries_animate.tpa

from Fixpack - adds to animate.ids

 

ids_entries_gtimes.tpa

from Fixpack - adds to gtimes.ids, so you can script things like

RealSetGlobalTimer("mytimer","GLOBAL",TEN_TURNS)

 

tob2soa.tph

from Fixpack - adds ToB scripting materials that work in SoA to a SoA install, so your code won't fail if you use one of these and the user does not have ToB installed...

 

tutu_area_script_assign.tph

for Tutu v4 installs, so only call it if Tutu is detected. BioWare did not assign scripts to all areas in the game. This assigns the appropriate area scripts to all Tutu v4 areas. EasyTutu already includes this fix. Running it a second time will not harm anything, so running it on Easytutu is no problem - the code will not duplicate effort, just do nothing if area scripts are already assigned.

Link to comment

Well you could get it rolling by posting a list of stuff you are touching, and we could help determine if you need the work -

 

the quick way is to open up NotePad++ or WordPad or another powerful editor, ask it to 'find in files', and browse to your project folder.

 

Then, for DVs, try finding something like this - ("

 

I just ran this on your Dark Horizons, BG version (even though you already have a BGt version), and it pops up like this:

 

E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR0514.baf (8 hits)
Line 2: 	Global("mirrordone","GLOBAL",1)
Line 3: 	Global("CMaddMaria","GLOBAL",0)
Line 6: 		CreateCreature("CM01A514",[4300.1126],4)
Line 7: 		CreateCreature("CM02A514",[4306.1165],4)
Line 8: 		CreateCreature("CM03A514",[4231.1082],5)
Line 9: 		CreateCreature("CM04A514",[4168.1107],6)
Line 10: 		CreateCreature("CM05A514",[4266.1158],6)
Line 11: 		SetGlobal("CMaddMaria","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR0700.baf (12 hits)
Line 2: 	Global("CMaddWinton","GLOBAL",0)
Line 5: 		CreateCreature("CM0700A",[1510.1597],3)
Line 6: 		SetGlobal("CMaddWinton","GLOBAL",1)
Line 10: 	Global("CMSectionEndGame","GLOBAL",1)
Line 11: 	Global("CMNikitaMike","GLOBAL",0)
Line 14: 		CreateCreature("CMRSEC02",[1196.2660],3)
Line 15: 		CreateCreature("CMRSEC04",[1200.2637],4)
Line 16: 		SetGlobal("CMNikitaMike","GLOBAL",1)
Line 20: 	Global("AcceptNikitaAid","GLOBAL",0)
Line 23: 		TriggerActivation("Door0750",FALSE)
Line 28: 	Global("AcceptNikitaAid","GLOBAL",1)
Line 31: 		TriggerActivation("Door0750",TRUE)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR0705.baf (3 hits)
Line 2: 	Global("CMaddQuincy","GLOBAL",0)
Line 5: 		CreateCreature("CMMERC02",[481.688],6)
Line 6: 		SetGlobal("CMaddQuincy","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR1000.baf (3 hits)
Line 2: 	Global("CoMHalabasher","GLOBAL",0)
Line 5: 		CreateCreature("MASAL01",[2169.526],0)
Line 6: 		SetGlobal("CoMHalabasher","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR1207.baf (4 hits)
Line 2: 	Global("MaSailors","GLOBAL",0)
Line 5: 		CreateCreature("MASAL01",[819.1018],0)
Line 6: 		CreateCreature("MASAL02",[898.1069],0)
Line 7: 		SetGlobal("MaSailors","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR1600.BAF (16 hits)
Line 2: 	Global("CMaddDruids2","GLOBAL",0)
Line 5: 		CreateCreature("CMDRU01",[3370.1707],6)
Line 6: 		CreateCreature("CMDRU04",[3462.1596],5)
Line 7: 		CreateCreature("CMDRU05",[3244.1481],2)
Line 8: 		CreateCreature("CMDRU07",[3320.1504],0)
Line 9: 		CreateCreature("CMDRU04",[3466.1401],6)
Line 10: 		CreateCreature("CMBEAR01",[3463.1621],2)
Line 11: 		CreateCreature("CMBEAR02",[3172.1377],1)
Line 12: 		CreateCreature("CMROCKY",[3132.1588],1)
Line 13: 		CreateCreature("CMDRY01",[4408.2889],4)
Line 14: 		CreateCreature("WOLFWI",[3686.2929],6)
Line 15: 		CreateCreature("WOLFWI",[3709.2956],7)
Line 16: 		CreateCreature("WOLFWI",[3692.3024],0)
Line 17:				 CreateCreature("WYVERN",[2150.988],2)
Line 18:				 CreateCreature("BEARCA",[604.1725],3)
Line 19: 		SetGlobal("CMaddDruids2","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR1700.BAF (9 hits)
Line 2: 	Global("CMaddDruids","GLOBAL",0)
Line 5: 		CreateCreature("CMDRU02",[2240.3095],0)
Line 6: 		CreateCreature("CMWYBA",[2287.3000],0)
Line 7: 		CreateCreature("CMWYBA",[2300.3125],2)
Line 8: 		CreateCreature("CM1800A1",[4096.859],0)
Line 9: 		CreateCreature("CM1800A1",[4211.890],6)
Line 10: 		CreateCreature("CM1800A1",[4023.910],2)
Line 11: 		CreateCreature("CM1800A1",[4320.862],1)
Line 12: 		SetGlobal("CMaddDruids","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR1800.baf (18 hits)
Line 2:		 Global("FLOODED","GLOBAL",2)
Line 3: 	Global("CMaddDru2","GLOBAL",0)
Line 6: 		CreateCreature("CMDRU03",[182.2071],3)
Line 7: 		CreateCreature("CMDRU06",[168.2181],0)
Line 8: 		CreateCreature("CMDRU06",[225.2187],2)
Line 9: 		CreateCreature("CMDRU06",[169.1944],4)
Line 10: 		SetGlobal("CMaddDru2","GLOBAL",1)
Line 14: 	Global("Cmaddmore1800","GLOBAL",0)
Line 17: 		CreateCreature("CMIRONE",[1852.1778],4)
Line 18: 		CreateCreature("CM1800A1",[1854.1783],6)
Line 19: 		CreateCreature("CM1800A1",[1855.1780],4)
Line 20: 		CreateCreature("IRONGU",[319.2317],5)
Line 21: 		CreateCreature("IRONGU",[1881.1823],5)
Line 22: 		CreateCreature("IRONGU",[404.2408],6)
Line 23: 		SetGlobal("Cmaddmore1800","GLOBAL",1)
Line 27: 	Global("CmaddDryad2","GLOBAL",0)
Line 30: 		CreateCreature("CMDRY01",[1045.3008],12)
Line 31: 		SetGlobal("CmaddDryad2","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR1803.baf (6 hits)
Line 2: 	Global("CMaddAR1803","GLOBAL",0)
Line 5: 		CreateCreature("CM1803A1",[975.575],3)
Line 6: 		CreateCreature("CM1803A2",[1206.749],6)
Line 7: 		CreateCreature("CM1803A3",[670.850],7)
Line 8: 		CreateCreature("CM1803A4",[797.927],9)
Line 9: 		SetGlobal("CMaddAR1803","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR1900.baf (6 hits)
Line 2: 	Global("MaOgreS","GLOBAL",0)
Line 5: 		CreateCreature("MAENC01",[570.2589],0) // Ogre Mage
Line 6: 		CreateCreature("MAENC02",[650.2508],0) // Ogre
Line 7: 		CreateCreature("MAENC03",[557.2421],2) // Ogrillon
Line 8: 		CreateCreature("MAENC04",[450.2366],0) // Brotus Bloodthirsty
Line 9: 		SetGlobal("MaOgreS","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR2100.baf (14 hits)
Line 2: 	Global("CMaddDragQuest","GLOBAL",0)
Line 5: 		CreateCreature("CMDRAG",[992.2870],3)
Line 6: 		CreateCreature("CM3A2100",[3299.1393],4)
Line 7: 		CreateCreature("CM2A2100",[3434.1450],2)
Line 8: 		CreateCreature("CM1A2100",[3307.1377],0)
Line 9: 		SetGlobal("CMaddDragQuest","GLOBAL",1)
Line 13: 	Global("CMaddAR2100","GLOBAL",0)
Line 16: 		CreateCreature("ETTERC",[4528.475],3)
Line 17: 		CreateCreature("ETTERC",[4552.507],4)
Line 18: 		CreateCreature("ETTERC",[1782.1320],2)
Line 19: 		CreateCreature("ETTERC",[1894.1360],0)
Line 20: 		CreateCreature("ETTERC",[1856.1423],2)
Line 21: 		CreateCreature("SPIDSW",[4435.535],0)
Line 22: 		SetGlobal("CMaddAR2100","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\ar2300.baf (7 hits)
Line 2: 	GlobalGT("Chapter","GLOBAL",9999993)
Line 3:		 Global("CMaddNajara","GLOBAL",0)
Line 6: 		CreateCreature("CMNAJARA",[1285.3750],3)
Line 7: 		CreateCreature("CMNAJAR2",[1245.3800],4)
Line 8: 		CreateCreature("CMNAJAR3",[1270.3800],2)
Line 9: 		CreateCreature("CMNAJAR4",[1430.3750],0)
Line 10: 		SetGlobal("CMaddNajara","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR2300Old.baf (7 hits)
Line 2: 	Global("Chapter","GLOBAL",3)
Line 3:		 Global("CMaddNajara","GLOBAL",0)
Line 6: 		CreateCreature("CMNAJARA",[1285.3750],3)
Line 7: 		CreateCreature("CMNAJAR2",[1245.3800],4)
Line 8: 		CreateCreature("CMNAJAR3",[1270.3800],2)
Line 9: 		CreateCreature("CMNAJAR4",[1430.3750],0)
Line 10: 		SetGlobal("CMaddNajara","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR2301.baf (6 hits)
Line 2: 	Global("MaThor","GLOBAL",0)
Line 5: 		CreateCreature("MATHOREN",[723.403],0)
Line 6: 		SetGlobal("MaThor","GLOBAL",1)
Line 10: 	Global("CmKFC1","GLOBAL",0)
Line 13: 		CreateCreature("CMFOOD1",[1168.502],0)
Line 14: 		SetGlobal("CmKFC1","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR2304.baf (10 hits)
Line 2: 	Global("CmMysAvatar","GLOBAL",0)
Line 5: 		CreateCreature("CMMYSTR",[317.285],0)
Line 6: 		SetGlobal("CmMysAvatar","GLOBAL",1)
Line 10:		 Global("CmMystraAt","GLOBAL",2)
Line 11: 	Global("CmMysHelp","GLOBAL",0)
Line 14: 		CreateCreature("CMSKEL03",[412.238],0)
Line 15: 		CreateCreature("CMSKEL03",[632.415],0)
Line 16: 		CreateCreature("CMSKEL04",[302.273],0)
Line 17: 		CreateCreature("CMSKEL04",[477.256],0)
Line 18: 		SetGlobal("CmMysHelp","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR2606.baf (5 hits)
Line 2: 	Global("CMaddAR2606","GLOBAL",0)
Line 5: 		CreateCreature("CMBOU07",[206.284],7)
Line 6: 		CreateCreature("RAT2",[188.209],6)
Line 7: 		CreateCreature("RAT2",[418.398],7)
Line 8: 		SetGlobal("CMaddAR2606","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\ar2800.baf (14 hits)
Line 2: 	Global("Chapter","GLOBAL",9999992)
Line 3:		 Global("CMaddAR2800","GLOBAL",0)
Line 6: 		CreateCreature("CMBOU03",[1982.924],7)
Line 7: 		CreateCreature("CMBOU04",[2111.912],6)
Line 8: 		CreateCreature("CMBOU05",[2080.885],6)
Line 9: 		SetGlobal("CMaddAR2800","GLOBAL",1)
Line 13: 	Global("CmNajaraHostile","GLOBAL",1)
Line 14: 	GlobalGT("Chapter","GLOBAL",9999994)
Line 15:		 Global("CMaddDavenport","GLOBAL",0)
Line 18: 		CreateCreature("CMSEC06",[1897.390],7)
Line 19: 		CreateCreature("CMSEC25",[1974.502],6)
Line 20: 		CreateCreature("CMSEC25",[2099.482],9)
Line 21: 		CreateCreature("CMSEC25",[1847.514],1)
Line 22: 		SetGlobal("CMaddDavenport","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR2800Old.baf (14 hits)
Line 2: 	Global("Chapter","GLOBAL",2)
Line 3:		 Global("CMaddAR2800","GLOBAL",0)
Line 6: 		CreateCreature("CMBOU03",[1982.924],7)
Line 7: 		CreateCreature("CMBOU04",[2111.912],6)
Line 8: 		CreateCreature("CMBOU05",[2080.885],6)
Line 9: 		SetGlobal("CMaddAR2800","GLOBAL",1)
Line 13: 	Global("CmNajaraHostile","GLOBAL",1)
Line 14: 	GlobalGT("Chapter","GLOBAL",4)
Line 15:		 Global("CMaddDavenport","GLOBAL",0)
Line 18: 		CreateCreature("CMSEC06",[1897.390],7)
Line 19: 		CreateCreature("CMSEC25",[1974.502],6)
Line 20: 		CreateCreature("CMSEC25",[2099.482],9)
Line 21: 		CreateCreature("CMSEC25",[1847.514],1)
Line 22: 		SetGlobal("CMaddDavenport","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR3300.baf (3 hits)
Line 2: 	Global("CMaddMagnus","GLOBAL",0)
Line 5: 		CreateCreature("CMMAGNU",[4238.614],4)
Line 6: 		SetGlobal("CMaddMagnus","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR3302.baf (8 hits)
Line 2: 	Global("CmDavenportFight","GLOBAL",0)
Line 5: 		TriggerActivation("Door3302",FALSE)
Line 10: 	Global("CmDavenportFight","GLOBAL",1)
Line 13: 		TriggerActivation("Door3302",TRUE)
Line 18: 	Global("CmDavenportFight","GLOBAL",1)
Line 19: 	Global("CmSec22Spawn","GLOBAL",0)
Line 22: 		CreateCreature("CMSEC22",[490.480],3)
Line 23:				 SetGlobal("CmSec22Spawn","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR3800.baf (4 hits)
Line 2: 	Global("CMaddAR3800","GLOBAL",0)
Line 5: 		CreateCreature("CMBOU02",[3710.3801],7)
Line 6: 		CreateCreature("CMBOU06",[3875.3800],8)
Line 7: 		SetGlobal("CMaddAR3800","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR4000.baf (9 hits)
Line 2: 	Global("CmgHalfQuest","GLOBAL",0)
Line 5: 		CreateCreature("CMGSMEAG",[2775.490],3)
Line 6: 		CreateCreature("CMGGOB1",[320.2946],4)
Line 7: 		CreateCreature("CMGGO1",[322.2946],4)
Line 8: 		CreateCreature("KOBOLD_D",[320.2904],2)
Line 9: 		CreateCreature("KOBOLD_D",[320.3037],0)
Line 10: 		CreateCreature("KOBCOMM",[230.3000],2)
Line 11: 		CreateCreature("KOBCOMM",[390.3100],0)
Line 12: 		SetGlobal("CmgHalfQuest","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR5100.baf (13 hits)
Line 2: 	Global("CMaddAR5100","GLOBAL",0)
Line 5: 		CreateCreature("CMGNOL01",[1320.1338],3)
Line 6: 		CreateCreature("CMGNOL01",[2848.1205],4)
Line 7: 		CreateCreature("GNOLL_E",[1300.1351],2)
Line 8: 		CreateCreature("GNOLL_E",[1390.1323],0)
Line 9: 		CreateCreature("GNOLL",[1250.1305],2)
Line 10: 		CreateCreature("GNOLL",[1290.1190],0)
Line 11: 		CreateCreature("CMKOB01",[590.3653],3)
Line 12: 		CreateCreature("CMKOB01",[600.3591],4)
Line 13: 		CreateCreature("CMKOB02",[360.3603],6)
Line 14: 		CreateCreature("CMKOB03",[475.3637],0)
Line 15: 		CreateCreature("CMKOB03",[360.3606],8)
Line 16: 		SetGlobal("CMaddAR5100","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR5200.baf (8 hits)
Line 2: 	Global("CMaddMoreCre5200","GLOBAL",0)
Line 5: 		CreateCreature("CMOGREM1",[210.2641],3)
Line 6: 		CreateCreature("OGREBERZ",[87.2666],4)
Line 7: 		CreateCreature("OGREBERZ",[117.2573],4)
Line 8: 		CreateCreature("OGREGR2",[286.2733],2)
Line 9: 		CreateCreature("WOLFDI",[3275.2823],3)
Line 10: 		CreateCreature("WOLFDI",[3180.2909],4)
Line 11: 		SetGlobal("CMaddMoreCre5200","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR5400.baf (13 hits)
Line 2: 	Global("CMaddAR5400","GLOBAL",0)
Line 5: 		CreateCreature("CMBOU01",[2643.572],10)
Line 6: 		SetGlobal("CMaddAR5400","GLOBAL",1)
Line 10: 	Global("MaCre","GLOBAL",0)
Line 13: 		CreateCreature("XVART",[1230.3182],0) // Xvart
Line 14: 		CreateCreature("XVART",[1290.3260],0) // Xvart
Line 15: 		CreateCreature("XVART",[1200.3143],2) // Xvart
Line 16: 		CreateCreature("XVART",[1125.3234],3) // Xvart
Line 17: 		CreateCreature("KOBOLD",[3600.3058],1) // Kobold
Line 18: 		CreateCreature("KOBOLD",[3600.3052],0) // Kobold
Line 19: 		CreateCreature("KOBOLD",[3500.3089],4) // Kobold
Line 20: 		CreateCreature("KOBOLD",[3500.2961],0) // Kobold
Line 21: 		SetGlobal("MaCre","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR5403.baf (15 hits)
Line 2: 	Global("MaMinesSN","GLOBAL",0)
Line 5: 		CreateCreature("MADURF01",[2390.951],0) // Gorken Bloodaxe
Line 6: 		CreateCreature("MADURF02",[2430.962],0) // Duergar Fighter
Line 7: 		CreateCreature("MADURT01",[2380.1108],3) // Duergar Thief
Line 8: 		CreateCreature("MADURC01",[2626.1020],3) // Duergar Cleric
Line 9: 		CreateCreature("MADURC02",[2450.1055],1) // Duergar Cleric
Line 10: 		CreateCreature("SPIDHU",[1030.2745],0) // Huge Spider
Line 11: 		CreateCreature("SPIDHU",[1300.2668],4) // Huge Spider
Line 12: 		CreateCreature("GHOUL",[850.2251],0) // Ghoul
Line 13: 		CreateCreature("GHOUL",[1000.2270],3) // Ghoul
Line 14: 		CreateCreature("KOBOLDA",[3000.1968],1) // Kobold
Line 15: 		CreateCreature("KOBOLDA",[3023.1886],0) // Kobold
Line 16: 		CreateCreature("KOBOLDA",[2911.2026],2) // Kobold
Line 17: 		CreateCreature("KOBOLDA",[2440.1846],5) // Kobold
Line 18: 		SetGlobal("MaMinesSN","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CM0750.baf (9 hits)
Line 2: 	Global("CMOversightEndGame","GLOBAL",0)
Line 5: 		TriggerActivation("Door0753",FALSE)
Line 10: 	Global("CMOversightEndGame","GLOBAL",1)
Line 13: 		TriggerActivation("Door0753",TRUE)
Line 18: 	Global("CMOversightEndGame","GLOBAL",1)
Line 19: 	Global("CMSpawn16","GLOBAL",0)
Line 22: 		CreateCreature("CMOSEC16",[625.481],3)
Line 23: 		CreateCreature("CMOSEC16",[1010.607],3)
Line 24: 		SetGlobal("CMSpawn16","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CM0751.baf (5 hits)
Line 2: 	Global("CMOversightEndGame","GLOBAL",1)
Line 3: 	Global("CMSpawn15","GLOBAL",0)
Line 6: 		CreateCreature("CMOSEC15",[884.620],3)
Line 7: 		CreateCreature("CMOSEC15",[599.310],3)
Line 8: 		SetGlobal("CMSpawn15","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CM0752.baf (5 hits)
Line 2: 	Global("CMOversightEndGame","GLOBAL",1)
Line 3: 	Global("CMSpawn752","GLOBAL",0)
Line 6: 		CreateCreature("CMOSEC15",[518.339],3)
Line 7: 		CreateCreature("CMOSEC15",[1201.616],3)
Line 8: 		SetGlobal("CMSpawn752","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CM0753.baf (23 hits)
Line 2: 	Global("CMOversightEndGame","GLOBAL",1)
Line 3:		 Global("CMaddCM0753","GLOBAL",0)
Line 6: 		CreateCreature("CMSEC08A",[886.853],6)
Line 7: 		CreateCreature("CMOSEC02",[1216.921],4)
Line 8: 		CreateCreature("CMOSEC02",[650.1029],2)
Line 9: 		CreateCreature("CMOSEC02",[582.978],6)
Line 10: 		CreateCreature("CMOSEC02",[920.579],2)
Line 11: 		CreateCreature("CMOSEC03",[795.592],6)
Line 12: 		CreateCreature("CMOSEC06",[717.788],3)
Line 13: 		CreateCreature("CMOSEC10",[979.616],4)
Line 14: 		CreateCreature("CMOSEC11",[635.730],6)
Line 15: 		CreateCreature("CMOSEC04",[675.665],6)
Line 16: 		CreateCreature("CMOSEC02",[1044.666],8)
Line 17: 		CreateCreature("CMOSEC02",[525.566],6)
Line 18: 		CreateCreature("CMOSEC02",[668.465],5)
Line 19: 		SetGlobal("CMaddCM0753","GLOBAL",1)
Line 23: 	Global("CMGeorgeEndGame","GLOBAL",1)
Line 24: 	Global("CMAddMoreSkels","GLOBAL",0)
Line 27: 		CreateCreature("CMSKEL01",[413.559],6)
Line 28: 		CreateCreature("CMSKEL01",[712.422],6)
Line 29: 		CreateCreature("SKELICE",[1161.771],2)
Line 30: 		CreateCreature("SKELFIRE",[819.948],6)
Line 31: 		SetGlobal("CMAddMoreSkels","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMBEAR02.BAF (2 hits)
Line 12: 	Global("CmBear02","GLOBAL",0)
Line 15: 		SetGlobal("CmBear02","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMCLERIC1.BAF (15 hits)
Line 2: 	Global("CmCleric1","GLOBAL",0)
Line 9: 		SetGlobal("CmCleric1","GLOBAL",1)
Line 13: 	Global("CmCleric1","GLOBAL",1)
Line 20: 		SetGlobal("CmCleric1","GLOBAL",2)
Line 25: 	Global("CmCleric1","GLOBAL",2)
Line 32: 		SetGlobal("CmCleric1","GLOBAL",3)
Line 37: 	Global("CmCleric1","GLOBAL",3)
Line 43: 		SetGlobal("CmCleric1","GLOBAL",4)
Line 48: 	Global("CmCleric1","GLOBAL",4)
Line 52: 		SetGlobal("CmCleric1","GLOBAL",5)
Line 57: 	Global("CmCleric1","GLOBAL",5)
Line 61: 		SetGlobal("CmCleric1","GLOBAL",6)
Line 66: 	Global("CmCleric1","GLOBAL",6)
Line 70: 		SetGlobal("CmCleric1","GLOBAL",7)
Line 84: 	Global("CmCleric1","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMDRU01.BAF (3 hits)
Line 2: 	Global("CmDruidHostile","GLOBAL",1)
Line 10: 	Global("CmDruidHostile","GLOBAL",0)
Line 13: 		SetGlobal("CmDruidHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMDRU02.baf (3 hits)
Line 2: 	Global("CmDruidHostile2","GLOBAL",1)
Line 10: 	Global("CmDruidHostile2","GLOBAL",0)
Line 13: 		SetGlobal("CmDruidHostile2","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMDRUID1.BAF (15 hits)
Line 2: 	Global("CmDruid1","GLOBAL",0)
Line 9: 		SetGlobal("CmDruid1","GLOBAL",1)
Line 13: 	Global("CmDruid1","GLOBAL",1)
Line 20: 		SetGlobal("CmDruid1","GLOBAL",2)
Line 25: 	Global("CmDruid1","GLOBAL",2)
Line 32: 		SetGlobal("CmDruid1","GLOBAL",3)
Line 37: 	Global("CmDruid1","GLOBAL",3)
Line 43: 		SetGlobal("CmDruid1","GLOBAL",4)
Line 48: 	Global("CmDruid1","GLOBAL",4)
Line 52: 		SetGlobal("CmDruid1","GLOBAL",5)
Line 57: 	Global("CmDruid1","GLOBAL",5)
Line 61: 		SetGlobal("CmDruid1","GLOBAL",6)
Line 66: 	Global("CmDruid1","GLOBAL",6)
Line 70: 		SetGlobal("CmDruid1","GLOBAL",7)
Line 84: 	Global("CmDruid1","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMDRUID2.BAF (15 hits)
Line 2: 	Global("CmDruid2","GLOBAL",0)
Line 9: 		SetGlobal("CmDruid2","GLOBAL",1)
Line 13: 	Global("CmDruid2","GLOBAL",1)
Line 20: 		SetGlobal("CmDruid2","GLOBAL",2)
Line 25: 	Global("CmDruid2","GLOBAL",2)
Line 32: 		SetGlobal("CmDruid2","GLOBAL",3)
Line 37: 	Global("CmDruid2","GLOBAL",3)
Line 43: 		SetGlobal("CmDruid2","GLOBAL",4)
Line 48: 	Global("CmDruid2","GLOBAL",4)
Line 52: 		SetGlobal("CmDruid2","GLOBAL",5)
Line 57: 	Global("CmDruid2","GLOBAL",5)
Line 61: 		SetGlobal("CmDruid2","GLOBAL",6)
Line 66: 	Global("CmDruid2","GLOBAL",6)
Line 70: 		SetGlobal("CmDruid2","GLOBAL",7)
Line 84: 	Global("CmDruid2","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMDRUID3.BAF (15 hits)
Line 2: 	Global("CmDruid3","GLOBAL",0)
Line 9: 		SetGlobal("CmDruid3","GLOBAL",1)
Line 13: 	Global("CmDruid3","GLOBAL",1)
Line 20: 		SetGlobal("CmDruid3","GLOBAL",2)
Line 25: 	Global("CmDruid3","GLOBAL",2)
Line 32: 		SetGlobal("CmDruid3","GLOBAL",3)
Line 37: 	Global("CmDruid3","GLOBAL",3)
Line 43: 		SetGlobal("CmDruid3","GLOBAL",4)
Line 48: 	Global("CmDruid3","GLOBAL",4)
Line 52: 		SetGlobal("CmDruid3","GLOBAL",5)
Line 57: 	Global("CmDruid3","GLOBAL",5)
Line 61: 		SetGlobal("CmDruid3","GLOBAL",6)
Line 66: 	Global("CmDruid3","GLOBAL",6)
Line 70: 		SetGlobal("CmDruid3","GLOBAL",7)
Line 84: 	Global("CmDruid3","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMDURG.baf (3 hits)
Line 2: 	Global("CmDwarfHostile","GLOBAL",1)
Line 10: 	Global("CmDwarfHostile","GLOBAL",0)
Line 13: 		SetGlobal("CmDwarfHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGEORG1.baf (1 hits)
Line 2: 	Global("CMGeorgeEndGame","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGEORGE.baf (3 hits)
Line 10: 	Global("CMGeorgeEndGame","GLOBAL",1)
Line 18: 	Global("CMGeorgeEndGame","GLOBAL",0)
Line 21: 		SetGlobal("CMGeorgeEndGame","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGEORW1.baf (15 hits)
Line 2: 	Global("CmGeorgePrep","GLOBAL",0)
Line 12: 		SetGlobal("CmGeorgePrep","GLOBAL",1)
Line 16: 	Global("CmGeorgePrep","GLOBAL",1)
Line 21: 		SetGlobal("CmGeorgePrep","GLOBAL",2)
Line 26: 	Global("CmGeorgePrep","GLOBAL",2)
Line 33: 		SetGlobal("CmGeorgePrep","GLOBAL",3)
Line 38: 	Global("CmGeorgePrep","GLOBAL",3)
Line 42: 		SetGlobal("CmGeorgePrep","GLOBAL",4)
Line 47: 	Global("CmGeorgePrep","GLOBAL",4)
Line 51: 		SetGlobal("CmGeorgePrep","GLOBAL",5)
Line 56: 	Global("CmGeorgePrep","GLOBAL",5)
Line 60: 		SetGlobal("CmGeorgePrep","GLOBAL",6)
Line 65: 	Global("CmGeorgePrep","GLOBAL",6)
Line 69: 		SetGlobal("CmGeorgePrep","GLOBAL",7)
Line 83: 	Global("CmGeorgePrep","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGHST01.BAF (15 hits)
Line 2: 	Global("CmGhost01","GLOBAL",1)
Line 11: 		SetGlobal("CmGhost01","GLOBAL",2)
Line 15: 	Global("CmGhost01","GLOBAL",2)
Line 24: 		SetGlobal("CmGhost01","GLOBAL",3)
Line 29: 	Global("CmGhost01","GLOBAL",3)
Line 37: 		SetGlobal("CmGhost01","GLOBAL",4)
Line 42: 	Global("CmGhost01","GLOBAL",4)
Line 50: 		SetGlobal("CmGhost01","GLOBAL",5)
Line 55: 	Global("CmGhost01","GLOBAL",5)
Line 61: 		SetGlobal("CmGhost01","GLOBAL",6)
Line 66: 	Global("CmGhost01","GLOBAL",6)
Line 72: 		SetGlobal("CmGhost01","GLOBAL",7)
Line 77: 	Global("CmGhost01","GLOBAL",7)
Line 85: 		SetGlobal("CmGhost01","GLOBAL",8)
Line 99: 	Global("CmGhost01","GLOBAL",8)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGHST05.BAF (15 hits)
Line 2: 	Global("CmGhost05","GLOBAL",1)
Line 11: 		SetGlobal("CmGhost05","GLOBAL",2)
Line 15: 	Global("CmGhost05","GLOBAL",2)
Line 24: 		SetGlobal("CmGhost05","GLOBAL",3)
Line 29: 	Global("CmGhost05","GLOBAL",3)
Line 37: 		SetGlobal("CmGhost05","GLOBAL",4)
Line 42: 	Global("CmGhost05","GLOBAL",4)
Line 50: 		SetGlobal("CmGhost05","GLOBAL",5)
Line 55: 	Global("CmGhost05","GLOBAL",5)
Line 61: 		SetGlobal("CmGhost05","GLOBAL",6)
Line 66: 	Global("CmGhost05","GLOBAL",6)
Line 74: 		SetGlobal("CmGhost05","GLOBAL",7)
Line 79: 	Global("CmGhost05","GLOBAL",7)
Line 87: 		SetGlobal("CmGhost05","GLOBAL",8)
Line 101: 	Global("CmGhost05","GLOBAL",8)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGHST06.BAF (15 hits)
Line 2: 	Global("CmGhost06","GLOBAL",1)
Line 13: 		SetGlobal("CmGhost06","GLOBAL",2)
Line 17: 	Global("CmGhost06","GLOBAL",2)
Line 26: 		SetGlobal("CmGhost06","GLOBAL",3)
Line 31: 	Global("CmGhost06","GLOBAL",3)
Line 39: 		SetGlobal("CmGhost06","GLOBAL",4)
Line 44: 	Global("CmGhost06","GLOBAL",4)
Line 52: 		SetGlobal("CmGhost06","GLOBAL",5)
Line 57: 	Global("CmGhost06","GLOBAL",5)
Line 63: 		SetGlobal("CmGhost06","GLOBAL",6)
Line 68: 	Global("CmGhost06","GLOBAL",6)
Line 76: 		SetGlobal("CmGhost06","GLOBAL",7)
Line 81: 	Global("CmGhost06","GLOBAL",7)
Line 91:				 SetGlobal("CmGhost06","GLOBAL",8)
Line 105: 	Global("CmGhost06","GLOBAL",8)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGHST07.baf (15 hits)
Line 2: 	Global("CmGhost07","GLOBAL",1)
Line 13: 		SetGlobal("CmGhost07","GLOBAL",2)
Line 17: 	Global("CmGhost07","GLOBAL",2)
Line 26: 		SetGlobal("CmGhost07","GLOBAL",3)
Line 31: 	Global("CmGhost07","GLOBAL",3)
Line 39: 		SetGlobal("CmGhost07","GLOBAL",4)
Line 44: 	Global("CmGhost07","GLOBAL",4)
Line 52: 		SetGlobal("CmGhost07","GLOBAL",5)
Line 57: 	Global("CmGhost07","GLOBAL",5)
Line 65: 		SetGlobal("CmGhost07","GLOBAL",6)
Line 70: 	Global("CmGhost07","GLOBAL",6)
Line 78: 		SetGlobal("CmGhost07","GLOBAL",7)
Line 83: 	Global("CmGhost07","GLOBAL",7)
Line 91: 		SetGlobal("CmGhost07","GLOBAL",8)
Line 105: 	Global("CmGhost07","GLOBAL",8)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMGHST08.baf (15 hits)
Line 2: 	Global("CmGhost08","GLOBAL",1)
Line 13: 		SetGlobal("CmGhost08","GLOBAL",2)
Line 17: 	Global("CmGhost08","GLOBAL",2)
Line 26: 		SetGlobal("CmGhost08","GLOBAL",3)
Line 31: 	Global("CmGhost08","GLOBAL",3)
Line 39: 		SetGlobal("CmGhost08","GLOBAL",4)
Line 44: 	Global("CmGhost08","GLOBAL",4)
Line 52: 		SetGlobal("CmGhost08","GLOBAL",5)
Line 57: 	Global("CmGhost08","GLOBAL",5)
Line 65: 		SetGlobal("CmGhost08","GLOBAL",6)
Line 70: 	Global("CmGhost08","GLOBAL",6)
Line 78: 		SetGlobal("CmGhost08","GLOBAL",7)
Line 83: 	Global("CmGhost08","GLOBAL",7)
Line 91: 		SetGlobal("CmGhost08","GLOBAL",8)
Line 105: 	Global("CmGhost08","GLOBAL",8)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMKIER1.BAF (5 hits)
Line 6: 		CreateCreature("WYVERNBI",[-1.-1],0)
Line 7: 		CreateCreature("WYVERNBI",[-1.-1],0)
Line 8: 		CreateCreature("WYVERNBI",[-1.-1],0)
Line 9: 		CreateCreature("WYVERNBI",[-1.-1],0)
Line 10: 		CreateCreature("WYVERNBI",[-1.-1],0)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMKIER2.baf (1 hits)
Line 2: 	Global("CmKeiranHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMMADEL.baf (15 hits)
Line 2: 	Global("CmMadeline","GLOBAL",0)
Line 11: 		SetGlobal("CmMadeline","GLOBAL",1)
Line 15: 	Global("CmMadeline","GLOBAL",1)
Line 20: 		SetGlobal("CmMadeline","GLOBAL",2)
Line 25: 	Global("CmMadeline","GLOBAL",2)
Line 32: 		SetGlobal("CmMadeline","GLOBAL",3)
Line 37: 	Global("CmMadeline","GLOBAL",3)
Line 45: 		SetGlobal("CmMadeline","GLOBAL",4)
Line 50: 	Global("CmMadeline","GLOBAL",4)
Line 54: 		SetGlobal("CmMadeline","GLOBAL",5)
Line 59: 	Global("CmMadeline","GLOBAL",5)
Line 63: 		SetGlobal("CmMadeline","GLOBAL",6)
Line 68: 	Global("CmMadeline","GLOBAL",6)
Line 72: 		SetGlobal("CmMadeline","GLOBAL",7)
Line 86: 	Global("CmMadeline","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMMARIA2.BAF (13 hits)
Line 2: 	Global("CmMariaAttack","GLOBAL",0)
Line 13: 		SetGlobal("CmMariaAttack","GLOBAL",1)
Line 18: 	Global("CmMariaAttack","GLOBAL",1)
Line 25: 		SetGlobal("CmMariaAttack","GLOBAL",2)
Line 30: 	Global("CmMariaAttack","GLOBAL",2)
Line 34: 		SetGlobal("CmMariaAttack","GLOBAL",3)
Line 39: 	Global("CmMariaAttack","GLOBAL",3)
Line 43: 		SetGlobal("CmMariaAttack","GLOBAL",4)
Line 48: 	Global("CmMariaAttack","GLOBAL",4)
Line 52: 		SetGlobal("CmMariaAttack","GLOBAL",5)
Line 57: 	Global("CmMariaAttack","GLOBAL",5)
Line 61: 		SetGlobal("CmMariaAttack","GLOBAL",6)
Line 75: 	Global("CmMariaAttack","GLOBAL",6)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMMARIAH.baf (1 hits)
Line 2: 	Global("CmMariaHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMMYSTR.baf (19 hits)
Line 2: 	Global("CmMystraAt","GLOBAL",0)
Line 13: 		SetGlobal("CmMystraAt","GLOBAL",1)
Line 17: 	Global("CmMystraAt","GLOBAL",1)
Line 26: 		SetGlobal("CmMystraAt","GLOBAL",2)
Line 31: 	Global("CmMystraAt","GLOBAL",2)
Line 39: 		SetGlobal("CmMystraAt","GLOBAL",3)
Line 44: 	Global("CmMystraAt","GLOBAL",3)
Line 52: 		SetGlobal("CmMystraAt","GLOBAL",4)
Line 57: 	Global("CmMystraAt","GLOBAL",4)
Line 65: 		SetGlobal("CmMystraAt","GLOBAL",5)
Line 70: 	Global("CmMystraAt","GLOBAL",5)
Line 78: 		SetGlobal("CmMystraAt","GLOBAL",6)
Line 83: 	Global("CmMystraAt","GLOBAL",6)
Line 91: 		SetGlobal("CmMystraAt","GLOBAL",7)
Line 95: 	Global("CmMystraAt","GLOBAL",7)
Line 104: 		SetGlobal("CmMystraAt","GLOBAL",8)
Line 109: 	Global("CmMystraAt","GLOBAL",8)
Line 117: 		SetGlobal("CmMystraAt","GLOBAL",9)
Line 131: 	Global("CmMystraAt","GLOBAL",9)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMNAJAR.baf (3 hits)
Line 2: 	Global("CmNajaraHostile","GLOBAL",1)
Line 10: 	Global("CmNajaraHostile","GLOBAL",0)
Line 13: 		SetGlobal("CmNajaraHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMOSEC04.baf (15 hits)
Line 2: 	Global("CmMage04Prep","GLOBAL",0)
Line 12: 		SetGlobal("CmMage04Prep","GLOBAL",1)
Line 16: 	Global("CmMage04Prep","GLOBAL",1)
Line 21: 		SetGlobal("CmMage04Prep","GLOBAL",2)
Line 26: 	Global("CmMage04Prep","GLOBAL",2)
Line 33: 		SetGlobal("CmMage04Prep","GLOBAL",3)
Line 38: 	Global("CmMage04Prep","GLOBAL",3)
Line 42: 		SetGlobal("CmMage04Prep","GLOBAL",4)
Line 47: 	Global("CmMage04Prep","GLOBAL",4)
Line 51: 		SetGlobal("CmMage04Prep","GLOBAL",5)
Line 56: 	Global("CmMage04Prep","GLOBAL",5)
Line 60: 		SetGlobal("CmMage04Prep","GLOBAL",6)
Line 65: 	Global("CmMage04Prep","GLOBAL",6)
Line 69: 		SetGlobal("CmMage04Prep","GLOBAL",7)
Line 83: 	Global("CmMage04Prep","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMOSEC13.baf (15 hits)
Line 2: 	Global("CmMage13Prep","GLOBAL",0)
Line 12: 		SetGlobal("CmMage13Prep","GLOBAL",1)
Line 16: 	Global("CmMage13Prep","GLOBAL",1)
Line 21: 		SetGlobal("CmMage13Prep","GLOBAL",2)
Line 26: 	Global("CmMage13Prep","GLOBAL",2)
Line 33: 		SetGlobal("CmMage13Prep","GLOBAL",3)
Line 38: 	Global("CmMage13Prep","GLOBAL",3)
Line 42: 		SetGlobal("CmMage13Prep","GLOBAL",4)
Line 47: 	Global("CmMage13Prep","GLOBAL",4)
Line 51: 		SetGlobal("CmMage13Prep","GLOBAL",5)
Line 56: 	Global("CmMage13Prep","GLOBAL",5)
Line 60: 		SetGlobal("CmMage13Prep","GLOBAL",6)
Line 65: 	Global("CmMage13Prep","GLOBAL",6)
Line 69: 		SetGlobal("CmMage13Prep","GLOBAL",7)
Line 83: 	Global("CmMage13Prep","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMOSEC14.baf (15 hits)
Line 2: 	Global("CmMage14Prep","GLOBAL",0)
Line 12: 		SetGlobal("CmMage14Prep","GLOBAL",1)
Line 16: 	Global("CmMage14Prep","GLOBAL",1)
Line 21: 		SetGlobal("CmMage14Prep","GLOBAL",2)
Line 26: 	Global("CmMage14Prep","GLOBAL",2)
Line 33: 		SetGlobal("CmMage14Prep","GLOBAL",3)
Line 38: 	Global("CmMage14Prep","GLOBAL",3)
Line 42: 		SetGlobal("CmMage14Prep","GLOBAL",4)
Line 47: 	Global("CmMage14Prep","GLOBAL",4)
Line 51: 		SetGlobal("CmMage14Prep","GLOBAL",5)
Line 56: 	Global("CmMage14Prep","GLOBAL",5)
Line 60: 		SetGlobal("CmMage14Prep","GLOBAL",6)
Line 65: 	Global("CmMage14Prep","GLOBAL",6)
Line 69: 		SetGlobal("CmMage14Prep","GLOBAL",7)
Line 83: 	Global("CmMage14Prep","GLOBAL",7)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMOVERSI.baf (1 hits)
Line 2: 	Global("CMOversightEndGame","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CmRedW01.baf (15 hits)
Line 2: 	Global("CmRedWiz1","GLOBAL",1)
Line 11: 		SetGlobal("CmRedWiz1","GLOBAL",2)
Line 15: 	Global("CmRedWiz1","GLOBAL",2)
Line 20: 		SetGlobal("CmRedWiz1","GLOBAL",3)
Line 25: 	Global("CmRedWiz1","GLOBAL",3)
Line 32: 		SetGlobal("CmRedWiz1","GLOBAL",4)
Line 37: 	Global("CmRedWiz1","GLOBAL",4)
Line 41: 		SetGlobal("CmRedWiz1","GLOBAL",5)
Line 46: 	Global("CmRedWiz1","GLOBAL",5)
Line 50: 		SetGlobal("CmRedWiz1","GLOBAL",6)
Line 55: 	Global("CmRedWiz1","GLOBAL",6)
Line 59: 		SetGlobal("CmRedWiz1","GLOBAL",7)
Line 64: 	Global("CmRedWiz1","GLOBAL",7)
Line 68: 		SetGlobal("CmRedWiz1","GLOBAL",8)
Line 82: 	Global("CmRedWiz1","GLOBAL",8)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CmRedWiz2.BAF (18 hits)
Line 2: 	Global("CmRedWiz2","GLOBAL",0)
Line 6: 		SetGlobal("CmRedWiz2","GLOBAL",1)
Line 7: 		SetGlobal("CmRedWiz1","GLOBAL",1)
Line 11: 	Global("CmRedWiz2","GLOBAL",1)
Line 18: 		SetGlobal("CmRedWiz2","GLOBAL",2)
Line 23: 	Global("CmRedWiz2","GLOBAL",2)
Line 30: 		SetGlobal("CmRedWiz2","GLOBAL",3)
Line 35: 	Global("CmRedWiz2","GLOBAL",3)
Line 39: 		SetGlobal("CmRedWiz2","GLOBAL",4)
Line 44: 	Global("CmRedWiz2","GLOBAL",4)
Line 48: 		SetGlobal("CmRedWiz2","GLOBAL",5)
Line 53: 	Global("CmRedWiz2","GLOBAL",5)
Line 57: 		SetGlobal("CmRedWiz2","GLOBAL",6)
Line 62: 	Global("CmRedWiz2","GLOBAL",6)
Line 66: 		SetGlobal("CmRedWiz2","GLOBAL",7)
Line 71: 	Global("CmRedWiz2","GLOBAL",7)
Line 75: 		SetGlobal("CmRedWiz2","GLOBAL",8)
Line 89: 	Global("CmRedWiz2","GLOBAL",8)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMSEC06.baf (3 hits)
Line 3: 	Global("CmDavenportFight","GLOBAL",0)
Line 6: 		SetGlobal("CmDavenportFight","GLOBAL",1)
Line 11:		 Global("CmDavenportFight","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMSECRED.baf (1 hits)
Line 2: 	Global("CMSectionEndGame","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\CMTRISD.baf (3 hits)
Line 3: 	Global("TristIsoldFight","GLOBAL",0)
Line 6: 		SetGlobal("TristIsoldFight","GLOBAL",1)
Line 11:		 Global("TristIsoldFight","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\DRAGDIE.baf (3 hits)
Line 14: 		SetGlobal("DragonDead","GLOBAL",1)
Line 19: 		SetGlobal("DragonDead","GLOBAL",1)
Line 23: 		SetGlobal("DragonDead","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\bams\BKFLAIL.BAM (1 hits)
Line 1: BAM V1  
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\bams\FIRE_1.bam (1 hits)
Line 34: ´A"%""	I›
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\bams\Iarm1.bam (1 hits)
Line 6: ööööö
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\bams\SK_HLM.BAM (1 hits)
Line 4: 
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\bams\ZHAM02IA.BAM (1 hits)
Line 29: %2!
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMANDREA.d (16 hits)
Line 20:  IF ~~ THEN DO ~SetGlobal("MeetingOperations","GLOBAL",1)
Line 21: ActionOverride(Player1,LeaveAreaLUAPanic("CM3376","",[757.1226],6))
Line 22: ActionOverride(Player1,LeaveAreaLUA("CM3376","",[757.1226],6))
Line 23: ActionOverride(Player2,LeaveAreaLUA("CM3376","",[813.1185],6))
Line 24: ActionOverride(Player3,LeaveAreaLUA("CM3376","",[861.1180],6))
Line 25: ActionOverride(Player4,LeaveAreaLUA("CM3376","",[837.1143],6))
Line 26: ActionOverride(Player5,LeaveAreaLUA("CM3376","",[828.1118],6))
Line 27: ActionOverride(Player6,LeaveAreaLUA("CM3376","",[906.1152],6))
Line 33:  IF ~~ THEN DO ~SetGlobal("MeetingOperations","GLOBAL",1)
Line 34: ActionOverride(Player1,LeaveAreaLUAPanic("CM3376","",[757.1226],6))
Line 35: ActionOverride(Player1,LeaveAreaLUA("CM3376","",[757.1226],6))
Line 36: ActionOverride(Player2,LeaveAreaLUA("CM3376","",[813.1185],6))
Line 37: ActionOverride(Player3,LeaveAreaLUA("CM3376","",[861.1180],6))
Line 38: ActionOverride(Player4,LeaveAreaLUA("CM3376","",[837.1143],6))
Line 39: ActionOverride(Player5,LeaveAreaLUA("CM3376","",[828.1118],6))
Line 40: ActionOverride(Player6,LeaveAreaLUA("CM3376","",[906.1152],6))
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMFOOD1.d (1 hits)
Line 5:   IF ~~ THEN REPLY @1 DO ~StartStore("cmfood1",LastTalkedToBy())
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMGEORG1.d (2 hits)
Line 11:  SAY @3 IF ~~ THEN DO ~SetGlobal("CMGeorgeEndGame","GLOBAL",1)
Line 18:  IF ~~ THEN DO ~SetGlobal("CMGeorgeEndGame","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMGEORGE.D (1 hits)
Line 32:   IF ~~ THEN DO ~SetGlobal("CmOsHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMGHST01.d (3 hits)
Line 13:  IF ~~ THEN DO ~SetGlobal("CmUlcastorGhostsHostile","GLOBAL",1)
Line 20:  IF ~~ THEN DO ~SetGlobal("CmUlcastorGhostsHostile","GLOBAL",1)
Line 27:   IF ~~ THEN DO ~SetGlobal("CmUlcastorGhostsHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMGSMEAG.d (3 hits)
Line 16: IF ~!PartyHasItem("CMRING05")
Line 22: IF ~PartyHasItem("CMRING05")
Line 25:   IF ~~ THEN DO ~TakePartyItem("CMRING05")
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMMARIA.D (1 hits)
Line 17:   SAY @6 IF ~~ THEN DO ~SetGlobal("CmMariaHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMMIRAN.D (2 hits)
Line 11:   SAY @4 IF ~~ THEN DO ~SetGlobal("CmDruidHostile","GLOBAL",1)
Line 18:   SAY @5 IF ~~ THEN DO ~SetGlobal("CmDruidHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMMYSTR.d (1 hits)
Line 5:   IF ~~ THEN REPLY @1 DO ~StartStore("cmmystr",LastTalkedToBy())
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMNAJARA.D (1 hits)
Line 15:   SAY @4 IF ~~ THEN DO ~SetGlobal("CmNajaraHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMOSEC12.D (4 hits)
Line 5: IF ~PartyHasItem("SCRSEC6")~ THEN REPLY @1 + GoIn
Line 6: IF ~!PartyHasItem("SCRSEC6")~ THEN REPLY @2 + Stupid
Line 10: SAY @3 IF ~~ THEN DO ~TakePartyItem("SCRSEC6") EscapeArea()~ JOURNAL @4 EXIT
Line 14: SAY @5 IF ~~ THEN DO ~SetGlobal("CmOsHostile","GLOBAL",1) Shout(1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMPAUL.d (2 hits)
Line 41:   SAY @13  IF ~~ THEN DO ~SetGlobal("CMSectionEndGame","GLOBAL",1) Enemy()
Line 46:   SAY @14  IF ~~ THEN DO ~SetGlobal("CMSectionEndGame","GLOBAL",1) Enemy()
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMQUEST1.D (6 hits)
Line 10: PartyHasItem("BOOK88")
Line 13:   IF ~~ THEN DO ~GiveItem("RING07",LastTalkedToBy)
Line 14: TakePartyItem("BOOK88")
Line 21: PartyHasItem("BOOK88")
Line 24:   IF ~~ THEN DO ~GiveItem("RING07",LastTalkedToBy)
Line 25: TakePartyItem("BOOK88")
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMQUINCY.D (1 hits)
Line 5:   IF ~~ THEN REPLY @1 DO ~StartStore("cmjewel",LastTalkedToBy())
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMRSEC02.d (6 hits)
Line 27:  ++ @11 DO ~SetGlobal("AcceptNikitaAid","GLOBAL",1)~ + begin3b
Line 28:  ++ @12 DO ~SetGlobal("AcceptNikitaAid","GLOBAL",1)~ + begin3b
Line 33:  ++ @14 DO ~SetGlobal("AcceptNikitaAid","GLOBAL",1)~ + begin3b
Line 34:  ++ @15 DO ~SetGlobal("AcceptNikitaAid","GLOBAL",1)~ + begin3b
Line 39:   IF ~~ THEN DO ~GiveItem("SCRSEC6",LastTalkedToBy)
Line 42: ActionOverride("cmrsec04",EscapeArea())
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMSEC06.d (2 hits)
Line 12:   IF ~~ THEN DO ~SetGlobal("CmDavenportFight","GLOBAL",1)
Line 19:   IF ~~ THEN DO ~SetGlobal("CmDavenportFight","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMSELEN.D (12 hits)
Line 4: Global("HelpSelene","GLOBAL",0)
Line 7:   IF ~~ THEN DO ~SetGlobal("HelpSelene","GLOBAL",1)~ JOURNAL @1 EXIT
Line 11: PartyHasItem("CMISC01")
Line 14:   IF ~~ THEN DO ~GiveItem("RING07",LastTalkedToBy)
Line 15: TakePartyItem("CMISC01")
Line 18: ActionOverride("CM1A2100",EscapeArea())
Line 19: ActionOverride("CM2A2100",EscapeArea())
Line 24: PartyHasItem("CMISC01")
Line 27:   IF ~~ THEN DO ~GiveItem("RING07",LastTalkedToBy)
Line 28: TakePartyItem("CMISC01")
Line 31: ActionOverride("CM1A2100",EscapeArea())
Line 32: ActionOverride("CM2A2100",EscapeArea())
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMTRIST.D (1 hits)
Line 12: DO ~SetGlobal("TristIsoldFight","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMWENDEL.D (1 hits)
Line 14:   SAY @4 IF ~~ THEN DO ~SetGlobal("CmDruidHostile2","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\CMWINTON.D (4 hits)
Line 29:   IF ~~ THEN DO ~SetGlobal("CmWintonHelp","GLOBAL",1)
Line 33: IF ~!PartyHasItem("MISC42")
Line 39: IF ~PartyHasItem("MISC42")
Line 43: TakePartyItem("MISC42")
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\kieran.d (8 hits)
Line 7: IF ~PartyGoldGT(299)~ THEN REPLY @3 DO ~TakePartyGold(300) SetGlobal("GaveKeirangold", "GLOBAL",1)~ GOTO 3
Line 11:   SAY @4 IF ~~ THEN DO ~CreateCreature("cmwybi1",[1953.3192],4) CreateCreature("cmwybi2",[1984.2985],5) Enemy() SetGlobal("CmKeiranHostile","GLOBAL",1)~
Line 11:   SAY @4 IF ~~ THEN DO ~CreateCreature("cmwybi1",[1953.3192],4) CreateCreature("cmwybi2",[1984.2985],5) Enemy() SetGlobal("CmKeiranHostile","GLOBAL",1)~
Line 11:   SAY @4 IF ~~ THEN DO ~CreateCreature("cmwybi1",[1953.3192],4) CreateCreature("cmwybi2",[1984.2985],5) Enemy() SetGlobal("CmKeiranHostile","GLOBAL",1)~
Line 17: IF ~PartyGoldGT(199)~ THEN REPLY @6 DO ~TakePartyGold(200) SetGlobal("GaveKeirangold","GLOBAL",1)~ GOTO 3
Line 23:   SAY @9 IF ~~ THEN DO ~SetGlobal("TalkToKeiran","GLOBAL",1) AddexperienceParty(500)~ JOURNAL @10 EXIT 
Line 31: IF ~Global("TalkToKeiran","GLOBAL",1)~ THEN BEGIN 5
Line 33: IF ~~ THEN REPLY @14 DO ~StartStore("cmkier",LastTalkedToBy())~ EXIT
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\magnus.d (6 hits)
Line 5: !PartyHasItem("MISC01") // Winter Wolf Pelt ~ THEN BEGIN 0 
Line 7: IF ~~ THEN REPLY @1 DO ~StartStore("magnus01",LastTalkedToBy())~ EXIT
Line 13: !PartyHasItem("MISC01") // Winter Wolf Pelt~ THEN BEGIN 1
Line 16: IF ~~ THEN REPLY @1 DO ~StartStore("magnus01",LastTalkedToBy())~ EXIT
Line 20: IF ~PartyHasItem("MISC01")
Line 23:   IF ~~ THEN DO ~TakePartyItem("MISC01")
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\magorken.d (1 hits)
Line 11:   IF ~~ THEN DO ~SetGlobal("CmDwarfHostile","GLOBAL",1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\masal01.d (1 hits)
Line 16:   IF ~~ THEN DO ~ActionOverride("masal2",Enemy())
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\MATHOREN.d (105 hits)
Line 25:   IF ~~ THEN DO ~StartStore("mathoren",LastTalkedToBy(Myself))
Line 49:   IF ~PartyHasItem("misc98")
Line 62:   IF ~~ THEN DO ~TakePartyItem("MISC98")
Line 69:   IF ~PartyHasItem("misc1b")
Line 71:   IF ~PartyHasItem("sw2h06")
Line 73:   IF ~PartyHasItem("sw1h24")
Line 75:   IF ~PartyHasItem("sw1h23")
Line 77:   IF ~PartyHasItem("ring02")
Line 79:   IF ~PartyHasItem("helm07")
Line 81:   IF ~PartyHasItem("chan03")
Line 83:   IF ~PartyHasItem("bow04")
Line 85:   IF ~PartyHasItem("bow08")
Line 87:   IF ~PartyHasItem("belt04")
Line 89:   IF ~PartyHasItem("ax1h03")
Line 91:   IF ~PartyHasItem("misc52")
Line 99:   IF ~PartyHasItem("misc1b")
Line 100: PartyHasItem("dagg01")
Line 103: TakePartyItem("misc1b")
Line 104: DestroyItem("misc1b")
Line 105: TakePartyItem("dagg01")
Line 106: DestroyItem("dagg01")
Line 107: GiveItemCreate("maforg01",Player1,1,1,1)
Line 114:   IF ~PartyHasItem("sw2h06")
Line 115: PartyHasItem("misc60")
Line 118: TakePartyItem("sw2h06")
Line 119: DestroyItem("sw2h06")
Line 120: TakePartyItem("misc60")
Line 121: DestroyItem("misc60")
Line 122: GiveItemCreate("maforg02",Player1,1,1,1)
Line 129:   IF ~PartyHasItem("sw1h24")
Line 130: PartyHasItem("potn13")
Line 133: TakePartyItem("sw1h24")
Line 134: DestroyItem("sw1h24")
Line 135: TakePartyItem("potn13")
Line 136: DestroyItem("potn13")
Line 137: GiveItemCreate("maforg03",Player1,1,1,1)
Line 144:   IF ~PartyHasItem("sw1h23")
Line 145: PartyHasItem("boot01")
Line 148: TakePartyItem("sw1h23")
Line 149: DestroyItem("sw1h23")
Line 150: TakePartyItem("boot01")
Line 151: DestroyItem("boot01")
Line 152: GiveItemCreate("maforg04",Player1,1,1,1)
Line 159:   IF ~PartyHasItem("ring02")
Line 160: PartyHasItem("scrl06")
Line 161: PartyHasItem("potn02")
Line 164: TakePartyItem("ring02")
Line 165: DestroyItem("ring02")
Line 166: TakePartyItem("scrl06")
Line 167: DestroyItem("scrl06")
Line 168: TakePartyItem("potn02")
Line 169: DestroyItem("potn02")
Line 170: GiveItemCreate("maforg05",Player1,1,1,1)
Line 177:   IF ~PartyHasItem("helm07")
Line 178: PartyHasItem("misc20")
Line 181: TakePartyItem("helm07")
Line 182: DestroyItem("helm07")
Line 183: TakePartyItem("misc20")
Line 184: DestroyItem("misc20")
Line 185: GiveItemCreate("maforg06",Player1,1,1,1)
Line 192:   IF ~PartyHasItem("chan03")
Line 193: PartyHasItem("misc42")
Line 194: PartyHasItem("potn24")
Line 197: TakePartyItem("chan03")
Line 198: DestroyItem("chan03")
Line 199: TakePartyItem("misc42")
Line 200: DestroyItem("misc42")
Line 201: TakePartyItem("potn24")
Line 202: DestroyItem("potn24")
Line 203: GiveItemCreate("maforg07",Player1,1,1,1)
Line 210:   IF ~PartyHasItem("bow04")
Line 211: PartyHasItem("brac07")
Line 214: TakePartyItem("bow04")
Line 215: DestroyItem("bow04")
Line 216: TakePartyItem("brac07")
Line 217: DestroyItem("brac07")
Line 218: GiveItemCreate("maforg08",Player1,1,1,1)
Line 225:   IF ~PartyHasItem("bow08")
Line 226: PartyHasItem("brac07")
Line 229: TakePartyItem("bow08")
Line 230: DestroyItem("bow08")
Line 231: TakePartyItem("brac07")
Line 232: DestroyItem("brac07")
Line 233: GiveItemCreate("maforg09",Player1,1,1,1)
Line 240:   IF ~PartyHasItem("belt04")
Line 241: PartyHasItem("potn05")
Line 244: TakePartyItem("belt04")
Line 245: DestroyItem("belt04")
Line 246: TakePartyItem("potn05")
Line 247: DestroyItem("potn05")
Line 248: GiveItemCreate("maforg10",Player1,1,1,1)
Line 255:   IF ~PartyHasItem("ax1h03")
Line 256: PartyHasItem("helm14")
Line 257: PartyHasItem("misc2d")
Line 260: TakePartyItem("ax1h03")
Line 261: DestroyItem("ax1h03")
Line 262: TakePartyItem("helm14")
Line 263: DestroyItem("helm14")
Line 264: TakePartyItem("misc2d")
Line 265: DestroyItem("misc2d")
Line 266: GiveItemCreate("maforg11",Player1,1,1,1)
Line 273:   IF ~PartyHasItem("misc52")
Line 276: TakePartyItem("misc52")
Line 277: DestroyItem("misc52")
Line 278: GiveItemCreate("mache01",Player1,1,1,1)
 E:\ie_modding_archive\DarkHorizons104\DarkHorizons\dlgs\oversight.d (3 hits)
Line 8: Global("CmTalkToJones","GLOBAL",0)~ THEN CMJONES Confront
Line 9: @0 DO ~SetGlobal("CmTalkToJones","GLOBAL",1)~
Line 16: == CMGEORGE @7 DO ~SetGlobal("CMOversightEndGame","GLOBAL",1) EscapeArea()~

 

(Hmmm... codebox is not working on this post. I wonder what is going wrong...)

 

Now delete anything from that list that is a vanilla game resource, instead of added by the mod, and you get the list of stuff to investigate on BG vs Tutu vs BGT resources.

 

Examples (just a few, not all)

E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR2800Old.baf (14 hits)

Line 2: Global("Chapter","GLOBAL",2)

tells you you will need references for AR2800 (BG) and chapter 2.

E:\ie_modding_archive\DarkHorizons104\DarkHorizons\baf\AR5400.baf (13 hits)

Line 2: Global("CMaddAR5400","GLOBAL",0)

Line 5: CreateCreature("CMBOU01",[2643.572],10)

Line 6: SetGlobal("CMaddAR5400","GLOBAL",1)

Line 10: Global("MaCre","GLOBAL",0)

Line 13: CreateCreature("XVART",[1230.3182],0) // Xvart

Line 14: CreateCreature("XVART",[1290.3260],0) // Xvart

Line 15: CreateCreature("XVART",[1200.3143],2) // Xvart

Line 16: CreateCreature("XVART",[1125.3234],3) // Xvart

Line 17: CreateCreature("KOBOLD",[3600.3058],1) // Kobold

Line 18: CreateCreature("KOBOLD",[3600.3052],0) // Kobold

Line 19: CreateCreature("KOBOLD",[3500.3089],4) // Kobold

Line 20: CreateCreature("KOBOLD",[3500.2961],0) // Kobold

Line 21: SetGlobal("MaCre","GLOBAL",1)

 

ends up needing only three crossplatform references; KOBOLD.CRE, XVART.CRE, and AR5400.BCS

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...