Skip to content

Commit

Permalink
5.13.1
Browse files Browse the repository at this point in the history
kitlist fix
  • Loading branch information
subtledoctor committed Sep 27, 2018
1 parent 478806d commit c8a4df2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions scales_of_balance/components/100_IWO_YARAS.tpa
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ COPY ~scales_of_balance/misc/skilldex.2da~ ~override~
//
/*
COPY_EXISTING ~kitlist.2da~ ~override~
COUNT_2DA_COLS k_cols // amount of columns
READ_2DA_ENTRIES_NOW k_rows k_cols // read all file into memory
FOR (k_row = 1; k_row < k_rows; ++k_row) BEGIN // iterate over rows
READ_2DA_ENTRY_FORMER k_rows k_row 1 ~k_kit~ // read column value
// COUNT_2DA_COLS k_cols
READ_2DA_ENTRIES_NOW k_rows 10
FOR (k_row = 1; k_row < k_rows; ++k_row) BEGIN
READ_2DA_ENTRY_FORMER k_rows k_row 1 ~k_kit~
PATCH_IF ~%k_kit%~ STRING_EQUAL_CASE ~QDMAGUS~ BEGIN
SET magus_row = %k_row%
READ_2DA_ENTRY_FORMER k_rows magus_row 9 magus_code
Expand Down
4 changes: 2 additions & 2 deletions scales_of_balance/components/122_WPO_proficiency.tpa
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,8 @@ BUT_ONLY
//CLASS/WEAPPROF LISTS______________________________________________________________
//
COPY_EXISTING ~kitlist.2da~ ~override~
COUNT_2DA_COLS cols
READ_2DA_ENTRIES_NOW ~r2en_kitlist~ cols
// COUNT_2DA_COLS cols
READ_2DA_ENTRIES_NOW ~r2en_kitlist~ 10
FOR (row = 2; row < r2en_kitlist; row += 1) BEGIN
READ_2DA_ENTRY_FORMER ~r2en_kitlist~ row 6 prof_col
READ_2DA_ENTRY_FORMER ~r2en_kitlist~ row 8 class_num
Expand Down
4 changes: 2 additions & 2 deletions scales_of_balance/components/124_WPO_styles.tpa
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ COPY_EXISTING ~weapprof.2da~ ~override~
//CLASS/WEAPPROF LISTS______________________________________________________________
//
COPY_EXISTING ~kitlist.2da~ ~override~
COUNT_2DA_COLS cols
READ_2DA_ENTRIES_NOW ~r2en_kitlist~ cols
// COUNT_2DA_COLS cols
READ_2DA_ENTRIES_NOW ~r2en_kitlist~ 10
FOR (row = 2; row < r2en_kitlist; row += 1) BEGIN
READ_2DA_ENTRY_FORMER ~r2en_kitlist~ row 6 prof_col
READ_2DA_ENTRY_FORMER ~r2en_kitlist~ row 8 class_num
Expand Down
4 changes: 2 additions & 2 deletions scales_of_balance/components/170_sto_evasion.tpa
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ ACTION_IF FILE_EXISTS_IN_GAME ~clabth01.2da~ BEGIN
END

COPY_EXISTING ~kitlist.2da~ ~override~
COUNT_2DA_COLS cols
READ_2DA_ENTRIES_NOW ~r2en_kitlist~ cols
// COUNT_2DA_COLS cols
READ_2DA_ENTRIES_NOW ~r2en_kitlist~ 9
FOR (row = 2; row < r2en_kitlist; row += 1) BEGIN
READ_2DA_ENTRY_FORMER ~r2en_kitlist~ row 5 class_ab
READ_2DA_ENTRY_FORMER ~r2en_kitlist~ row 8 class_num
Expand Down
2 changes: 1 addition & 1 deletion scales_of_balance/scales_of_balance.tp2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BACKUP ~scales_of_balance/backup~
AUTHOR ~SubtleD~

VERSION ~v5.13~
VERSION ~v5.13.1~
//README ~scales_of_balance/readme-SoB.html~

// updated
Expand Down

0 comments on commit c8a4df2

Please sign in to comment.