Skip to content

Commit

Permalink
Merge pull request #83 from djravine/develop
Browse files Browse the repository at this point in the history
Updated dictionary
  • Loading branch information
djravine authored Dec 23, 2023
2 parents 32c8f3a + 2f7a562 commit 381d079
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ To all the Idle Dragoneers who inspired and assisted me!

------

## 3.67

* Add Shadowheart to dictionary
* Update dictionary with Shadowheart chests
* Add Wyll to dictionary
* Update dictionary with Wyll chests

## 3.66

* Fix incorrect variable in 'switch_play_server' in server calls
Expand Down
4 changes: 2 additions & 2 deletions IdleCombos.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include idledict.ahk

;Versions
global VersionNumber := "3.66"
global CurrentDictionary := "2.32"
global VersionNumber := "3.67"
global CurrentDictionary := "2.33"

;Local File globals
global OutputLogFile := ""
Expand Down
14 changes: 7 additions & 7 deletions idledict.ahk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
global DictionaryVersion := "2.32"
global DictionaryVersion := "2.33"

PatronFromID(patronid) {
switch patronid {
Expand Down Expand Up @@ -217,8 +217,8 @@ ChampFromID(id) {
case "138": namefromid := "Certainty Dran"
case "139": namefromid := "Thellora"
case "140": namefromid := "Jang Sao"
case "141": namefromid := "UNKNOWN (" id ")"
case "142": namefromid := "UNKNOWN (" id ")"
case "141": namefromid := "Shadowheart"
case "142": namefromid := "Wyll"
case "143": namefromid := "UNKNOWN (" id ")"
case "144": namefromid := "UNKNOWN (" id ")"
case "145": namefromid := "UNKNOWN (" id ")"
Expand Down Expand Up @@ -1153,10 +1153,10 @@ ChestFromID(id) {
case "549": namefromid := "Gold Thellora Chest"
case "550": namefromid := "Silver Jang Sao Chest"
case "551": namefromid := "Gold Jang Sao Chest"
case "552": namefromid := "Silver Y7E4 Chest"
case "553": namefromid := "Gold Y7E4 Chest"
case "554": namefromid := "Silver Y7E5 Chest"
case "555": namefromid := "Gold Y7E5 Chest"
case "552": namefromid := "Silver Shadowheart Chest"
case "553": namefromid := "Gold Shadowheart Chest"
case "554": namefromid := "Silver Wyll Chest"
case "555": namefromid := "Gold Wyll Chest"
case "556": namefromid := "Silver Y7E6 Chest"
case "557": namefromid := "Gold Y7E6 Chest"
case "558": namefromid := "Silver Y7E7 Chest"
Expand Down

0 comments on commit 381d079

Please sign in to comment.