diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-07 21:26:03 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-07 21:26:03 +0100 |
commit | 137395b992709248896fe66888778fe26169c1dc (patch) | |
tree | f39fe74bcec88d3539f70c6a14b87e7312e1e5cd | |
parent | 4f0a7b1b3563d56c5523fb284e1358ba5583d14c (diff) | |
download | serverdata-137395b992709248896fe66888778fe26169c1dc.tar.gz serverdata-137395b992709248896fe66888778fe26169c1dc.tar.bz2 serverdata-137395b992709248896fe66888778fe26169c1dc.tar.xz serverdata-137395b992709248896fe66888778fe26169c1dc.zip |
fix zeny exploits
-rw-r--r-- | db/re/item_db.conf | 10 | ||||
-rw-r--r-- | npc/002-3/billybons.txt | 2 | ||||
-rw-r--r-- | npc/005-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/005-1/maya.txt | 2 | ||||
-rw-r--r-- | npc/005-1/movetest.txt | 27 |
5 files changed, 7 insertions, 35 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index ed587fb39..e2acf757d 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -4230,7 +4230,7 @@ item_db: ( AegisName: "CasinoCoins" Name: "Casino Coins" Type: "IT_ETC" - Buy: 20 + Buy: 200 Sell: 20 Weight: 4 Atk: 0 @@ -6284,7 +6284,7 @@ item_db: ( AegisName: "RedScorpionStinger" Name: "Red Scorpion Stinger" Type: "IT_ETC" - Buy: 100 + Buy: 1000 Sell: 75 Weight: 1 Atk: 0 @@ -6605,7 +6605,7 @@ item_db: ( AegisName: "DarkTalisman" Name: "Dark Talisman" Type: "IT_ARMOR" - Buy: 15000 + Buy: 150000 Sell: 15000 Weight: 1000 Atk: 0 @@ -6902,7 +6902,7 @@ item_db: ( AegisName: "AstralCube" Name: "Astra Cube" Type: "IT_ARMOR" - Buy: 7000 + Buy: 70000 Sell: 5000 Weight: 450 Atk: 0 @@ -7711,7 +7711,7 @@ item_db: ( AegisName: "ContributorSweater" Name: "Contributor Sweater" Type: "IT_ARMOR" - Buy: 10 + Buy: 100 Sell: 10 Weight: 80 Atk: 0 diff --git a/npc/002-3/billybons.txt b/npc/002-3/billybons.txt index 6338f0406..33400049e 100644 --- a/npc/002-3/billybons.txt +++ b/npc/002-3/billybons.txt @@ -4,7 +4,7 @@ // Description: // Drunk easteregg telling about the player's past. -002-3,20,23,0 script Billy Bons NPC_BILLY_BONS,{ +002-3,20,23,0 script Billy Bons#TMW2 NPC_BILLY_BONS,{ if (rand(5) == 2) goto L_Hic; .@q = getq(ShipQuests_Bottle); if (.@q) == 1 close; diff --git a/npc/005-1/_import.txt b/npc/005-1/_import.txt index 505976e41..5c79c44df 100644 --- a/npc/005-1/_import.txt +++ b/npc/005-1/_import.txt @@ -4,5 +4,4 @@ "npc/005-1/_warps.txt", "npc/005-1/ayasha.txt", "npc/005-1/maya.txt", -"npc/005-1/movetest.txt", "npc/005-1/warpcandorbattle.txt", diff --git a/npc/005-1/maya.txt b/npc/005-1/maya.txt index 1b51c4a20..ff833506b 100644 --- a/npc/005-1/maya.txt +++ b/npc/005-1/maya.txt @@ -136,7 +136,7 @@ } while (@menu != 2); } - .@maya = getq(CandorQuest_Maya; + .@maya = getq(CandorQuest_Maya, if (BaseLevel <= 4 || BaseLevel <= 9 && .@maya == 1 || BaseLevel <= 14 && .@maya == 2) { diff --git a/npc/005-1/movetest.txt b/npc/005-1/movetest.txt deleted file mode 100644 index dcec64459..000000000 --- a/npc/005-1/movetest.txt +++ /dev/null @@ -1,27 +0,0 @@ -// Authors: Saulc - - -005-1,44,35,0 script AyashaT NPC_PLAYER,{ - - legiontalk; - - close; - -OnTimer1000: - domovestep; - -OnInit: - initpath "move", 44, 35, - "dir", UP, 0, - "wait", 2, 0, - "move", 51, 81, - "dir", DOWN, 0, - "wait", 2, 0,"" - "Mmove", 50, 88, - "dir", DOWN, 0, - "wait", 2, 0; - - initialmove; - initnpctimer; - .distance = 5; -} |