Oh, I can make conclusion: the problem lies in non-Polish version BG2. Because English and French versions have the same problems.
Edited by Senka, 25 June 2011 - 02:59 AM.
 
	
 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 02:29 AM
Edited by Senka, 25 June 2011 - 02:59 AM.
 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 06:18 AM
Edited by Zireael, 25 June 2011 - 06:22 AM.
 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 07:14 AM
 I guess Khalid would be install after DBG but before BG2TweakPack.
 I guess Khalid would be install after DBG but before BG2TweakPack.
					
					 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 07:28 AM

Edited by Senka, 25 June 2011 - 07:29 AM.
 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 07:35 AM
ERROR: No translation provided for @20
[Khalid/d/bzikh25.D] ERROR at line 50 column 1-3
Near Text: @20
Not_found
ERROR: parsing [Khalid/d/bzikh25.D]: Not_found
ERROR: compiling [Khalid/d/bzikh25.D]!
Stopping installation because of error.
 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 08:13 AM
 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 09:15 AM
Maybe just skip @20 and use another number?
 
					
				
				
				
					
				
			
				
			Posted 25 June 2011 - 09:34 AM
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 05:00 AM
AUTO_TRA ~Khalid\tra~misses /%s
AUTO_TRA ~Khalid\tra\%s~
Retired from modding.
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 06:17 AM
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 07:42 AM

 
					
					 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 10:38 AM
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 11:05 AM
EXTEND_BOTTOM ~JAHEIRA.bcs~ ~Khalid/baf/JAHEIRA.baf~ EXTEND_BOTTOM ~JAHE25.bcs~ ~Khalid/baf/JAHEIRA.baf~You sure it's not supposed to be
EXTEND_BOTTOM ~JAHEIRA.bcs~ ~Khalid/baf/JAHEIRA.baf~ EXTEND_BOTTOM ~JAHE25.bcs~ ~Khalid/baf/JAHEI25.baf~?
WRITE_ASCII SCRIPT_OVERRIDE ~~will have no effect. Use
WRITE_ASCII SCRIPT_OVERRIDE ~~ (<img src='http://www.shsforums.net/public/style_emoticons/<#EMO_DIR#>/cool.gif' class='bbc_emoticon' alt='8)' />and (32) for death variable.
Edited by GeN1e, 26 June 2011 - 11:26 AM.
Retired from modding.
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 12:17 PM
//Setting starting values for bantering with CHARNAME
IF
InParty(Myself)
Global("ZIPlayerTalk", "LOCALS", 0)
THEN
RESPONSE #100
RealSetGlobalTimer("ZIPlayerTalkTime","GLOBAL",1800)
		SetGlobal("ZIPlayerTalk","GLOBAL",1)
ENDYou check for local variable, but set a global one. Must be//Setting starting values for bantering with CHARNAME
IF
InParty(Myself)
Global("ZIPlayerTalk", "LOCALS", 0)
THEN
RESPONSE #100
RealSetGlobalTimer("ZIPlayerTalkTime","GLOBAL",1800)
		SetGlobal("ZIPlayerTalk","LOCALS",1)
END
					
					Retired from modding.
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 12:25 PM

//Fire talks with CHARNAME
IF 
InParty(Myself)
RealGlobalTimerExpired("ZIPlayerTalkTime","GLOBAL")
OR(7)
Global("ZIPlayerTalk","GLOBAL",1)
Global("ZIPlayerTalk","GLOBAL",3)
Global("ZIPlayerTalk","GLOBAL",5)
Global("ZIPlayerTalk", "GLOBAL",7)
Global("ZIPlayerTalk", "GLOBAL",9)
Global("ZIPlayerTalk", "GLOBAL",11)
Global("ZIPlayerTalk", "GLOBAL",13)
THEN
RESPONSE #100
IncrementGlobal("ZIPlayerTalk","GLOBAL",1)
Wait(1)
StartDialogueNoSet(Player1)
END
					
					Edited by Senka, 26 June 2011 - 12:36 PM.
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 12:55 PM
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 01:01 PM
That's a script, so if will work fine with already 'affected' saves. I don't remember if you're proficient with DLTCEP or NI, if not then simply reinstall.Do I need to reinstall mod? And to begin it again?
Good question. I suspect not, because there appear to be only a GLOBAL checked against, and it's the LOCALS the faulty one.And this would be change too?
//Setting starting values for bantering with CHARNAME
IF
InParty(Myself)
Global("ZIPlayerTalk", "GLOBAL", 0)
THEN
RESPONSE #100
RealSetGlobalTimer("ZIPlayerTalkTime","GLOBAL",1800)
                SetGlobal("ZIPlayerTalk","GLOBAL",1)
ENDGlobal("ZIPlayerTalk","GLOBAL",1)
Global("ZIPlayerTalk","GLOBAL",3)
Global("ZIPlayerTalk","GLOBAL",5)
Global("ZIPlayerTalk", "GLOBAL",7)
Global("ZIPlayerTalk", "GLOBAL",9)
Global("ZIPlayerTalk", "GLOBAL",11)
Global("ZIPlayerTalk", "GLOBAL",13)I can only see the dialogue for the first two conversations. Either the rest is unfinished yet, was scraped, or I'm missing something.It's not an immediate action, and seemingly can be overridden with scripts.And why ctrl-J doesn't work for Khalid?
Edited by GeN1e, 26 June 2011 - 01:03 PM.
Retired from modding.
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 01:48 PM
Edited by Senka, 26 June 2011 - 01:52 PM.
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 02:14 PM
I_C_T GIRL1 1 KhalidGirlSlave
== ZIKHALJ
IF ~InParty("ZIKhalid") !StateCheck("ZIKhalid",CD_STATE_NOTVALID)~ THEN
@75
ENDNow, I am NOT a person to give a counsel on the proper use of I_C_T family, but afaict in this particular case it must be I_C_T2.Edited by GeN1e, 26 June 2011 - 02:15 PM.
Retired from modding.
 
					
				
				
				
					
				
			
				
			Posted 26 June 2011 - 04:36 PM
- Liam
Modding Projects
Complete:
Arath NPC - Nephele NPC - Xulaye NPC - Iylos NPC - Ninde NPC - Darian NPC  - Yeslick NPC - Adrian NPC - Dace NPC - Valerie NPC - Isra NPC
Viconia Friendship - Mazzy Friendship - Imoen Friendship - Yoshimo Friendship - Sarevok Friendship - Neera Expansion
IEP Extended Banter
Sarevok Romance
Haer'Dalis Romance
In Progress:
Khadion NPC - Delainy NPC - Sarine NPC