1
FF9 Tools / Re: [PSX/PC] General editor - Hades Workshop (0.50b)
« on: 2024-06-05 22:18:12 »
I see. I thought I was supposed to replace rather than add.
SetTextVariable( 0, 300 )
SetTextVariable( 1, 301 )
SetTextVariable( 2, 302 )
SetTextVariable( 3, 303 )
set VAR_LocUInt8_0 = 0
set VAR_LocUInt8_1 = GetItemCount(300)
set VAR_LocUInt8_1 |= ( GetItemCount(301) << 1 )
set VAR_LocUInt8_1 |= ( GetItemCount(302) << 2 )
set VAR_LocUInt8_1 |= ( GetItemCount(303) << 3 )
while ( ( !VAR_LocUInt8_0 ) && ( ( VARL_GenUInt8_358 & 240 ) != 240 ) ) {
EnableDialogChoices( ( ( VAR_LocUInt8_1 & ( ~( VARL_GenUInt8_358 >> 4 ) ) ) & 15 ) | 16, 0 )
This is what I'm using now, and it seems to be working.
Thank you for being patient with me, it's very much appreciated.
SetTextVariable( 0, 300 )
SetTextVariable( 1, 301 )
SetTextVariable( 2, 302 )
SetTextVariable( 3, 303 )
set VAR_LocUInt8_0 = 0
set VAR_LocUInt8_1 = GetItemCount(300)
set VAR_LocUInt8_1 |= ( GetItemCount(301) << 1 )
set VAR_LocUInt8_1 |= ( GetItemCount(302) << 2 )
set VAR_LocUInt8_1 |= ( GetItemCount(303) << 3 )
while ( ( !VAR_LocUInt8_0 ) && ( ( VARL_GenUInt8_358 & 240 ) != 240 ) ) {
EnableDialogChoices( ( ( VAR_LocUInt8_1 & ( ~( VARL_GenUInt8_358 >> 4 ) ) ) & 15 ) | 16, 0 )
This is what I'm using now, and it seems to be working.
Thank you for being patient with me, it's very much appreciated.