Chaos Project

RPG Maker => RPG Maker Scripts => Topic started by: Shadonking on October 14, 2008, 09:48:33 am

Title: [RESOLVED]sell price change
Post by: Shadonking on October 14, 2008, 09:48:33 am
how do you make it so the sell price of an item is the same as the buy price.
Title: Re: sell price change
Post by: Blizzard on October 14, 2008, 09:55:48 am
Scene_Shop, line 249 and line 309:

@number_window.set(@item, max, @item.price / 2)
...
$game_party.gain_gold(@number_window.number * (@item.price / 2))


Change them to:

@number_window.set(@item, max, @item.price)
...
$game_party.gain_gold(@number_window.number * @item.price)

Title: Re: sell price change
Post by: Shadonking on October 14, 2008, 12:51:16 pm
thanks blizz, it worked.
Title: Re: sell price change
Post by: Blizzard on October 14, 2008, 01:05:35 pm
Then edit your first post and add [RESOLVED] before the title. :)
Title: Re: [RESOLVED]sell price change
Post by: Shadonking on October 14, 2008, 01:10:22 pm
ok, done it.

and thanks agian for your help.