Skip to content

Commit e71f6c8

Browse files
committed
14.04.23
-Red Cavern all movements are in with Bigmap icons too. -Red Valley now has Bigmap Icons. -Snow Cavern door to KR fixed. -Lunar door added to treepath. -Ice Hell doors fixed. -Rebirth 1-3 now fully implemented. (Check BW Board) -Dangerous Cavern now has a minimap/bigmap. -Pranja Temple Door icon fixed for F 7>KR + Bigmap added to KR. -Hell Fire KR now has a minimap/bigmap. -Stone Trap AI now correct. (130 > 255) -Rebirth Panel added to GM_Manager in r001. -GM_Teleporter has had a huge rework. -GM Stable now displays currently equipped Mount and Mount Loyalalty. -@gm command added to teleport admin accounts to r001 @ 100:100. -GM_Manager has Sabuk Wall Management Panel.
1 parent 53a6d7e commit e71f6c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1545
-123
lines changed

Jev/Envir/NPCs/BichonProvince/BichonWall/Blacksmith.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ GOTO @Main-1
1313
#SAY
1414
Welcome Traveller, my name is Bill I'm a Master Artisan..
1515
I have specialized in Weaponry for many year's now.
16-
16+
17+
I see you're wearing: {<$WEAPON>/CORAL}
18+
1719
<Special/@SRepair> Repair Weapon.
1820

1921
<Close/@exit>

Jev/Envir/NPCs/BichonProvince/BichonWall/Blacksmith1.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ GOTO @Main-1
1313
#SAY
1414
Hello, Are you looking for something particular?
1515
How can I be of assistance.
16-
16+
17+
I see you're wearing: {<$WEAPON>/CORAL}
18+
1719
<View/@BuySell> Store.
1820
<Repair/@Repair> Weapon.
1921

Jev/Envir/NPCs/BichonProvince/BichonWall/Board.txt

+70-6
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ SealHero
8787
Rebirth starts at Level 60 and grants you a Rebirth Effect
8888
depending on your level after rebirth.
8989

90-
Effect 1 - <Level 60-69/@RB1>
91-
Effect 2 - Level 70-79
92-
Effect 3 - Level 80+
90+
Rebirth 1 - <Level 60-69/@RB1>
91+
Rebirth 2 - <Level 70-79/@RB2>
92+
Rebirth 3 - <Level 80+/@RB3>
9393

9494
Check your rebirth eligibility above.
9595

@@ -109,21 +109,85 @@ CHECK [993] 0
109109
#SAY
110110
Would you like to rebirth?
111111

112-
<Yes/@RB1Apply> <No/@RebirthMain>
112+
<Yes/@RB1APPLY> <No/@RebirthMain>
113113
#ELSESAY
114114
You are already Rebirth 1.
115115

116116
<Back/@RebirthMain> <Exit/@EXIT>
117117

118-
[@RB1Apply]
118+
[@RB1APPLY]
119119
#ACT
120120
SET [993] 1
121+
SET [1000] 1
122+
ADDNAMELIST ../NameLists/Rebirth1.txt
121123
#SAY
122124
You are now Reborn.
123125

124126
<Back/@RebirthMain> <Exit/@EXIT>
127+
128+
[@RB2]
129+
#IF
130+
LEVEL < 70
131+
#SAY
132+
You need to be above Level 70 to rebirth.
133+
134+
<Back/@RebirthMain> <Exit/@EXIT>
135+
#ELSEACT
136+
GOTO @RB2CHECK
137+
138+
[@RB2CHECK]
139+
#IF
140+
CHECK [994] 0
141+
#SAY
142+
Would you like to rebirth?
143+
144+
<Yes/@RB2APPLY> <No/@RebirthMain>
125145
#ELSESAY
126-
You are Rebirth 1
146+
You are already Rebirth 2.
147+
148+
<Back/@RebirthMain> <Exit/@EXIT>
149+
150+
[@RB2APPLY]
151+
#ACT
152+
SET [993] 0
153+
SET [994] 1
154+
DELNAMELIST ../NameLists/Rebirth1.txt
155+
ADDNAMELIST ../NameLists/Rebirth2.txt
156+
#SAY
157+
You are now Reborn.
158+
159+
<Back/@RebirthMain> <Exit/@EXIT>
160+
161+
[@RB3]
162+
#IF
163+
LEVEL < 80
164+
#SAY
165+
You need to be above Level 80 to rebirth.
166+
167+
<Back/@RebirthMain> <Exit/@EXIT>
168+
#ELSEACT
169+
GOTO @RB3CHECK
170+
171+
[@RB3CHECK]
172+
#IF
173+
CHECK [995] 0
174+
#SAY
175+
Would you like to rebirth?
176+
177+
<Yes/@RB3APPLY> <No/@RebirthMain>
178+
#ELSESAY
179+
You are already Rebirth 3.
180+
181+
<Back/@RebirthMain> <Exit/@EXIT>
182+
183+
[@RB3APPLY]
184+
#ACT
185+
SET [994] 0
186+
SET [995] 1
187+
DELNAMELIST ../NameLists/Rebirth2.txt
188+
ADDNAMELIST ../NameLists/Rebirth3.txt
189+
#SAY
190+
You are now Reborn.
127191

128192
<Back/@RebirthMain> <Exit/@EXIT>
129193

Jev/Envir/NPCs/BichonProvince/BichonWall/Clothing.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ GOTO @Main-1
1212
[@Main-1]
1313
#SAY
1414
Hello Traveller. What can I do for you?
15-
15+
16+
I see you're wearing: {<$ARMOUR>/CORAL}
17+
I see you're wearing: {<$HELMET>/CORAL}
18+
I see you're wearing: {<$BELT>/CORAL}
19+
I see you're wearing: {<$BOOTS>/CORAL}
20+
1621
<View/@BuySell> Store.
1722
<Repair/@Repair> Drapery pieces.
1823
<Talk/@talk> about CastleBichon

Jev/Envir/NPCs/BichonProvince/BichonWall/Grocery.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ GOTO @Main-1
1313
[@Main-1]
1414
#SAY
1515
Hello traveller, How may I help you?
16-
16+
17+
I see you're holding: {<$TORCH>/CORAL}
18+
I see you're holding: {<$AMULET>/CORAL}
1719
<View/@BuySell> Store.
1820
<Ask/@Ask> about Item.
1921

Jev/Envir/NPCs/BichonProvince/BichonWall/StableGirl.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ GOTO @Main-1
1313
#SAY
1414
Welcome traveller,
1515
I sell Items for your Tiger! Please take alook!
16-
16+
I see you have: {<$MOUNT>/CORAL}
17+
Mount Loyalty: {<$MOUNTLOYALTY>/CORAL}
18+
1719
<View/@BuySell> Store.
1820

1921
<Close/@exit>

Jev/Envir/NPCs/BichonProvince/BorderVillage/Blacksmith.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ GOTO @Main-1
1212
[@Main-1]
1313
#SAY
1414
Welcome. Thanks for dropping in.
15-
15+
16+
I see you're wearing: {<$WEAPON>/CORAL}
17+
1618
<View/@BuySell> Store.
1719
<Repair/@Repair> Weapon.
1820

Jev/Envir/NPCs/BichonProvince/BorderVillage/Drapery.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ GOTO @Main-1
1212
[@Main-1]
1313
#SAY
1414
Hello Traveller. What can I do for you?
15-
15+
16+
I see you're wearing: {<$ARMOUR>/CORAL}
17+
I see you're wearing: {<$HELMET>/CORAL}
18+
I see you're wearing: {<$BELT>/CORAL}
19+
I see you're wearing: {<$BOOTS>/CORAL}
20+
1621
<View/@BuySell> Store.
1722
<Repair/@Repair> Drapery pieces.
1823

Jev/Envir/NPCs/BichonProvince/BorderVillage/Grocery.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ GOTO @Main-1
1212
[@Main-1]
1313
#SAY
1414
Hello traveller, How may I help you?
15-
15+
16+
I see you're holding: {<$TORCH>/CORAL}
17+
I see you're holding: {<$AMULET>/CORAL}
18+
1619
<View/@BuySell> Store.
1720

1821
<Close/@exit>

Jev/Envir/NPCs/BichonProvince/BorderVillage/Pedlar.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[@MAIN]
22
#SAY
33
Hello traveller, How may I help you?
4-
4+
5+
I see you're holding: {<$TORCH>/CORAL}
6+
I see you're holding: {<$AMULET>/CORAL}
7+
58
<View/@BuySell> Store.
69
<Ask/@Ask> about Item.
710

0 commit comments

Comments
 (0)