In-game Card Prices

Everything related to wagic does not fall in other forum. If you don't know where to post, post here. Your topic will be moved to the correct section.
Locked
Connor'84
Posts: 4
Joined: Mon Nov 30, 2015 10:20 pm

In-game Card Prices

Post by Connor'84 »

Hey man! Great game!


Please let me know where you get the in-game card prices from?

Is it possible to get a spreadsheet of the cards with these prices (preferably by set)?

Thank you
Connor'84
Posts: 4
Joined: Mon Nov 30, 2015 10:20 pm

Re: In-game Card Prices

Post by Connor'84 »

Whyfor will no wiseman answer my question?

<:*( <--- crying face
kevlahnota
Posts: 619
Joined: Tue Feb 08, 2011 3:00 pm
Location: Philippines
Contact:

Re: In-game Card Prices

Post by kevlahnota »

If you want to change the base prices I think you must change it in MTGDefinitions.h, you can find it in the source project\mtg\include directory and recompile. Find the code/s below:

Code: Select all

//Price for singles
    PRICE_1M = 3000,
    PRICE_1R = 500,
    PRICE_1S = 200,
    PRICE_1U = 100,
    PRICE_1C = 20,
    PRICE_1L = 5,

    //Price in booster
    PRICE_BOOSTER = 700,
    PRICE_MIXED_BOOSTER = 800,
    CHANCE_CUSTOM_PACK = 15,
    CHANCE_PURE_OVERRIDE = 50,
    CHANCE_MIXED_OVERRIDE = 25,

A better way is to refactor this to read from a text file so it's easy to change the default values to your liking...
Locked