'GeN1e', on 10 March 2011 - 01:20 PM, said:
Why wait for patches, when you can wait for a 50% discount on Steam on the Ultimate Edition?PS Playing DA2 now? I'm in awe, how there're still people around willing to play without waiting for patches.
Posted 10 March 2011 - 04:24 AM
'GeN1e', on 10 March 2011 - 01:20 PM, said:
Why wait for patches, when you can wait for a 50% discount on Steam on the Ultimate Edition?PS Playing DA2 now? I'm in awe, how there're still people around willing to play without waiting for patches.
Italian users: help test the Stivan NPC!
Author or Co-Author: WeiDU - Widescreen - Generalized Biffing - Refinements - TB#Tweaks - IWD2Tweaks - TB#Characters - Traify Tool - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics - Nalia Mod - Nvidia Fix
Code dumps: Detect custom secondary types - Stutter Investigator
If possible, send diffs, translations and other contributions using Git.
Posted 11 March 2011 - 04:45 AM
Quote
You[0]: Hello. How are you?
1: Good, thanks. DO ~SetGlobal("Good", "GLOBAL", 1)~ GOTO 1
2: Awful! GOTO 1
You[1]: Oh, I see (pretends to listen). GOTO 2
You[2]: Did you say you were good?
1: IF ~Global("Good", "GLOBAL", 1)~ Yes, I did. Weren't you listening? GOTO ...
2: No, I said you were a twerp! GOTO ...
SetInterrupt(FALSE) SetGlobal("Good", "GLOBAL", 1) SetInterrupt(TRUE)...and that one action is processed every AIUpdate.
DO ~GiveItemCreate("arow01", Player1, 1, 0, 0) ~SetGlobal("MakeArrow", "GLOBAL", 1)~ GOTO Next //next state IF ~~ THEN BEGIN Next SAY ~Did you get an arrow?~ IF ~Global("MakeArrow", "GLOBAL",1)~ ~I am supposed to have an arrow, but I don't yet...~ IF ~HasItemParty("arow01")~ ~Why did you give me an arrow?~In this case (assuming instantaneous set), the global is actually set before the GiveItemCreate() is executed and the entire action lists would take only three AIUpdates to fully complete compared to four (reminder: SetInterrupts() are added). Also, the first transition will display (assuming instantaneous set), but the second will not (because the action is still queued).
Edited by Ascension64, 11 March 2011 - 04:48 AM.
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
Posted 11 March 2011 - 05:02 AM
Edited by the bigg, 11 March 2011 - 05:02 AM.
Italian users: help test the Stivan NPC!
Author or Co-Author: WeiDU - Widescreen - Generalized Biffing - Refinements - TB#Tweaks - IWD2Tweaks - TB#Characters - Traify Tool - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics - Nalia Mod - Nvidia Fix
Code dumps: Detect custom secondary types - Stutter Investigator
If possible, send diffs, translations and other contributions using Git.
Posted 11 March 2011 - 02:13 PM
DO ~GiveItemCreate("arow01", Player1, 1, 0, 0) ~SetGlobal("MakeArrow", "GLOBAL", 1)~ GOTO Next IF ~~ THEN BEGIN Next SAY ~Did you get an arrow?~ IF ~Global("MakeArrow", "GLOBAL",1)~ ~I know I will definitely get an arrow after a click of the fingers~ GOTO Next2 //DO NOT USE PartyHasItem("arow01") here IF ~~ ~I did not.~ GOTO Next3 IF ~~ THEN BEGIN Next2 SAY ~When you get the arrow, I will take it off you again.~ DO ~TakePartyItem("arow01") EXIT IF ~~ THEN BEGIN Next3 SAY ~Well that's because you will get an arrow after a click of the fingers.~ GOTO Next2
Edited by Ascension64, 11 March 2011 - 03:03 PM.
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
Posted 11 March 2011 - 05:00 PM
Quote
I probably am missing something, but... can't the dialogue itself be changed, to not advance further until all actions have been executed?Hmm, that's going to make me explode, because I would have to re-write every single action such that it bypasses the action queue. KABOOM!
Retired from modding.
Posted 11 March 2011 - 05:19 PM
'GeN1e', on 12 March 2011 - 11:00 AM, said:
Tehcnically, no. The game window updates in a very specific order:I probably am missing something, but... can't the dialogue itself be changed, to not advance further until all actions have been executed?
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
Posted 22 March 2011 - 12:54 PM
Posted 22 March 2011 - 11:22 PM
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)