diff options
author | Reid <reidyaro@gmail.com> | 2012-09-02 04:59:36 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-09-02 04:59:36 +0200 |
commit | 4b26b2dbee463668e63acbd8a1e5d9fc8178cdfc (patch) | |
tree | c36cc92f13bd175336340961d4bee094ff3f258a | |
parent | 4d5dc62748896857544127ff9864a5789bb91f0b (diff) | |
download | serverdata-4b26b2dbee463668e63acbd8a1e5d9fc8178cdfc.tar.gz serverdata-4b26b2dbee463668e63acbd8a1e5d9fc8178cdfc.tar.bz2 serverdata-4b26b2dbee463668e63acbd8a1e5d9fc8178cdfc.tar.xz serverdata-4b26b2dbee463668e63acbd8a1e5d9fc8178cdfc.zip |
Rename Nardbox variable to Nard.
-rw-r--r-- | db/const.txt | 2 | ||||
-rw-r--r-- | db/questvars.txt | 2 | ||||
-rw-r--r-- | npc/000-2-0/doors.txt | 2 | ||||
-rw-r--r-- | npc/000-2-3/box.txt | 8 | ||||
-rw-r--r-- | npc/000-2-3/nard.txt | 8 |
5 files changed, 11 insertions, 11 deletions
diff --git a/db/const.txt b/db/const.txt index bec285c1..89e6b2ef 100644 --- a/db/const.txt +++ b/db/const.txt @@ -204,7 +204,7 @@ ShipQuests_Julia 0 ShipQuests_Peter 1 ShipQuests_Alige 2 ShipQuests_Arpan 3 -ShipQuests_Nardbox 4 +ShipQuests_Nard 4 ShipQuests_Knife 5 ShipQuests_ArpanMoney 6 ShipQuests_Door 7 diff --git a/db/questvars.txt b/db/questvars.txt index 57b26855..2241c3f1 100644 --- a/db/questvars.txt +++ b/db/questvars.txt @@ -11,7 +11,7 @@ ShipQuests,3,1 // ShipQuests_Julia 0 ShipQuests,15,16 // ShipQuests_Peter 1 ShipQuests,3,4 // ShipQuests_Alige 2 ShipQuests,3,256 // ShipQuests_Arpan 3 -ShipQuests,3,16384 // ShipQuests_Nardbox 4 +ShipQuests,3,16384 // ShipQuests_Nard 4 ShipQuests,1,1024 // ShipQuests_Knife 5 ShipQuests,1,2048 // ShipQuests_ArpanMoney 6 ShipQuests,1,4096 // ShipQuests_Door 7 diff --git a/npc/000-2-0/doors.txt b/npc/000-2-0/doors.txt index 3fe89757..ef4d9019 100644 --- a/npc/000-2-0/doors.txt +++ b/npc/000-2-0/doors.txt @@ -7,7 +7,7 @@ 000-2-0.gat,20,27,0,1 script AreaNPC 0,0,0,{ OnTouch: - set @q, getq(ShipQuests_Nardbox); + set @q, getq(ShipQuests_Nard); if (@q == 1) goto l_Warp; if (@q == 2) goto l_GotoNard; if (@q == 3) goto l_End; diff --git a/npc/000-2-3/box.txt b/npc/000-2-3/box.txt index 2040ddcb..92e6f565 100644 --- a/npc/000-2-3/box.txt +++ b/npc/000-2-3/box.txt @@ -8,7 +8,7 @@ // 2 bits array: // ShipQuests // Variable: -// ShipQuests_NardBox +// ShipQuests_Nard // Values: // 0 Introduction of the box and Nard. This is displayed when the player never spoke to Nard or his box. // 1 Nard spoke and gave access to the outdoor of the ship. @@ -17,7 +17,7 @@ 000-2-3.gat,25,24,0 script Box 102;1,{ - set @q, getq(ShipQuests_Nardbox); + set @q, getq(ShipQuests_Nard); mesn "Narrator"; mes col(l("Some Bandanas and Sailor Hats are inside this box."), 9); @@ -60,7 +60,7 @@ next; mesq l("Go outside and talk with Gugli, he will tell you what we need."); - setq ShipQuests_Nardbox, 1; + setq ShipQuests_Nard, 1; close; @@ -80,7 +80,7 @@ l_Give: mesn "Nard"; mesq l("You are now part of the crew. Thanks again for your help."); - setq ShipQuests_Nardbox, 3; + setq ShipQuests_Nard, 3; getitem "Bandana", 1; // Need to add a skill for the crew at this line. diff --git a/npc/000-2-3/nard.txt b/npc/000-2-3/nard.txt index b3871384..82d4f37f 100644 --- a/npc/000-2-3/nard.txt +++ b/npc/000-2-3/nard.txt @@ -8,7 +8,7 @@ // 2 bits array: // ShipQuests // Variable: -// ShipQuests_NardBox +// ShipQuests_Nard // Values: // 0 Introduction of the box and Nard. This is displayed when the player never spoke to Nard or his box. // 1 Nard spoke and gave access to the outdoor of the ship. @@ -17,7 +17,7 @@ 000-2-3.gat,25,26,0,1 script Nard 306;5,{ - set @q, getq(ShipQuests_Nardbox); + set @q, getq(ShipQuests_Nard); l_Checker: if (@q == 1) goto l_NotYet; @@ -84,7 +84,7 @@ l_NeedContent: mesq l("Go outside and talk with Gugli, he'll tell you what we need."); next; - setq ShipQuests_Nardbox, 1; + setq ShipQuests_Nard, 1; close; @@ -127,7 +127,7 @@ l_Give: next; mesq l("You are now part of the crew! Thanks again for your help."); - setq ShipQuests_Nardbox, 3; + setq ShipQuests_Nard, 3; getitem "Bandana", 1; // Need to add a skill for the crew at this line. |