how do you make it so the sell price of an item is the same as the buy price.
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)
thanks blizz, it worked.
Then edit your first post and add [RESOLVED] before the title. :)
ok, done it.
and thanks agian for your help.