-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a660241
commit fef83bd
Showing
7 changed files
with
54 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
@1 = ~BG1EE required~ | ||
@2 = ~BG2EE required~ | ||
@3 = ~BG1EE or BG2EE required~ | ||
|
||
@101 = ~Tutorial items and bag of holding in Candlekeep~ | ||
|
||
@201 = ~Tutorial items and bag of holding in Irenicus dungeon~ | ||
@202 = ~Triple-class HLA tables~ | ||
|
||
@300 = ~Tutorial items and containters~ | ||
@301 = ~Remove XP cap (maximum level 40)~ | ||
@302 = ~Un-nerfed bard spell progression table (maximum level 8)~ | ||
@303 = ~Easy spell learning~ | ||
@304 = ~Happy patch~ | ||
@305 = ~Unlimited Stacking (ammo, gem, jewelry and potion)~ | ||
@305 = ~Unlimited Stacking (ammo and potion)~ | ||
@306 = ~Free action fix (item and spell)~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
IF | ||
Global("BG1MoveItem","AR2600",0) | ||
Global("TUTORIALITEMCHECK","GLOBAL",1) | ||
Global("CreateTutorialItem","MYAREA",0) | ||
THEN | ||
RESPONSE #100 | ||
SetGlobal("BG1MoveItem","AR2600",1) | ||
ActionOverride("Container 1",CreateItem("TTSWORD1",1,1,1)) // 장검 +1 | ||
ActionOverride("Container 1",CreateItem("TTSWORD6",1,1,1)) // 양손검 | ||
ActionOverride("Container 1",CreateItem("TTSHLD01",1,1,1)) // 중형 방패 +1 | ||
ActionOverride("Container 1",CreateItem("TTSCRL01",1,1,1)) // 화염 화살 | ||
ActionOverride("Container 1",CreateItem("TTSCRL02",1,1,1)) // 몬스터 소환 I | ||
ActionOverride("Container 1",CreateItem("TTDAGG1",1,1,1)) // 단검 | ||
ActionOverride("Container 1",CreateItem("TTAXE1",1,1,1)) // 전투 도끼 | ||
ActionOverride("Container 1",CreateItem("BAG31",1,1,1)) // 무한의 가방 | ||
SetGlobal("CreateTutorialItem","MYAREA",1) | ||
ActionOverride(Player1,CreateItem("TTSCRL01",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSCRL02",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSHLD01",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSWORD1",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSWORD2",1,1,1)) | ||
ActionOverride(Player1,CreateItem("bag19",1,1,1)) | ||
ActionOverride(Player1,CreateItem("bag05",1,1,1)) | ||
ActionOverride(Player1,CreateItem("bag06",1,1,1)) | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
IF | ||
Global("BG2Item","AR0602",0) | ||
Global("TakeImportItems","MYAREA",1) | ||
Global("CreateTutorialItem","MYAREA",0) | ||
THEN | ||
RESPONSE #100 | ||
SetGlobal("BG2Item","AR0602",1) | ||
ActionOverride("Jailkeep Table",CreateItem("TTSWORD1",1,1,1)) // 장검 +1 | ||
ActionOverride("Jailkeep Table",CreateItem("TTSHLD01",1,1,1)) // 중형 방패 +1 | ||
ActionOverride("Jailkeep Table",CreateItem("TTSCRL01",1,1,1)) // 화염 화살 | ||
ActionOverride("Jailkeep Table",CreateItem("TTSCRL02",1,1,1)) // 몬스터 소환 I | ||
ActionOverride("Jailkeep Table",CreateItem("TTDAGG1",1,1,1)) // 단검 | ||
ActionOverride("Jailkeep Table",CreateItem("TTAXE1",1,1,1)) // 전투 도끼 | ||
ActionOverride("Jailkeep Table",CreateItem("bag04",1,1,1)) | ||
ActionOverride("Jailkeep Table",CreateItem("bag05",1,1,1)) | ||
ActionOverride("Jailkeep Table",CreateItem("bag06",1,1,1)) | ||
SetGlobal("CreateTutorialItem","MYAREA",1) | ||
ActionOverride(Player1,CreateItem("TTSCRL01",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSCRL02",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSHLD01",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSWORD1",1,1,1)) | ||
ActionOverride(Player1,CreateItem("TTSWORD2",1,1,1)) | ||
ActionOverride(Player1,CreateItem("bag04",1,1,1)) | ||
ActionOverride(Player1,CreateItem("bag05",1,1,1)) | ||
ActionOverride(Player1,CreateItem("bag06",1,1,1)) | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters