diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-24 18:15:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-24 18:16:25 -0300 |
commit | 271597103bef7ce5ff7fcdfcc40f3ab1c630f14e (patch) | |
tree | 27b249838b5d3f4200268260a6f6e0db48dcbcef | |
parent | ac1adad27d1ee5be4fd2cfa73ac778943b9e705e (diff) | |
download | serverdata-271597103bef7ce5ff7fcdfcc40f3ab1c630f14e.tar.gz serverdata-271597103bef7ce5ff7fcdfcc40f3ab1c630f14e.tar.bz2 serverdata-271597103bef7ce5ff7fcdfcc40f3ab1c630f14e.tar.xz serverdata-271597103bef7ce5ff7fcdfcc40f3ab1c630f14e.zip |
Attempt to enable auction house
-rw-r--r-- | conf/map/battle/feature.conf | 2 | ||||
-rw-r--r-- | conf/map/battle/misc.conf | 2 | ||||
-rw-r--r-- | npc/003-1/aahna.txt | 5 |
3 files changed, 7 insertions, 2 deletions
diff --git a/conf/map/battle/feature.conf b/conf/map/battle/feature.conf index fc6b49ede..305d12892 100644 --- a/conf/map/battle/feature.conf +++ b/conf/map/battle/feature.conf @@ -49,7 +49,7 @@ features: { // Auction (Note 1) // Feature became unstable on clients 2012 onwards (exact date not known), // it has been fixed on clients 2013-05-15 onwards however. - auction: false + auction: true // Roulette (Note 1) // Requires: 2014-10-22bRagexe or later diff --git a/conf/map/battle/misc.conf b/conf/map/battle/misc.conf index 2f88dbe0e..339d2b72d 100644 --- a/conf/map/battle/misc.conf +++ b/conf/map/battle/misc.conf @@ -130,7 +130,7 @@ at_mapflag: false at_timeout: 0 // Auction system, fee per hour. Default is 12000 -auction_feeperhour: 12000 +auction_feeperhour: 200 // Auction maximum sell price auction_maximumprice: 500000000 diff --git a/npc/003-1/aahna.txt b/npc/003-1/aahna.txt index 895d1e4cc..b336a6fdc 100644 --- a/npc/003-1/aahna.txt +++ b/npc/003-1/aahna.txt @@ -5,6 +5,11 @@ // This NPC serves no purpose currently. She is here to make Tulimshar more crowded. 003-1,53,128,0 script Aahna NPC_ELVEN_FEMALE,{ + if (is_admin()) { + closedialog; + openauction(); + close; + } mesn; mesq l("Hello, What a lovely day for a stroll."); close; |