LiamDormon / mojito_crypto

GNU General Public License v3.0
22 stars 17 forks source link

Fix price for BTC #8

Open milotiro95 opened 2 years ago

milotiro95 commented 2 years ago

Hi everyone. For start amazing script I'm loving this! :)

On my server I'm having BTC as Qbit then 5 QBIT per tick is for me not possible or it will just broke the economy haha ! I have work with some numbers and adjust the payment for 1 hour instead of 24 minutes. This is not a realistic consommation per W of the card but in fact the users cannot see these numbers just the production rates per card. I have also increase the numbers per rig by 1 (small 3 cards / bigger 6 cards).

A 3090 per exemple do 0.006/hours BTC (at the price 249.45$/hour). A rig of 6 cards do 0.03/hours BTC (at the price 1246.51$/hour). If a 3090 is sell on your server for 1500$/pieces (MSRP) then the users have to play 6hour of gameplay to get refund. This for the cards

{
  "rtx3090": {
    "hashrate": 120.0,
    "wattage": 200000.0
  },
  "rtx3080": {
    "hashrate": 101.5,
    "wattage": 200000.0
  },
  "rtx3080ti": {
    "hashrate": 90.0,
    "wattage": 200000.0
  },
  "rtx3070ti": {
    "hashrate": 60.5,
    "wattage": 200000.0
  },
  "rtx3070": {
    "hashrate": 58.0,
    "wattage": 200000.0
  },
  "rx6800": {
    "hashrate": 64.0,
    "wattage": 200000.0
  },
  "rx6800xt": {
    "hashrate": 64.0,
    "wattage": 200000.0
  },
  "rx6900xt": {
    "hashrate": 64.0,
    "wattage": 200000.0
  },
  "rx6700xt": {
    "hashrate": 48.0,
    "wattage": 200000.0
  }
}

This for the config

{
  "BasicRigCardLimit": 3,
  "AdvancedRigCardLimit": 6,
  "BasicRigItemName": "basic_miningrig",
  "AdvancedRigItemName": "advanced_miningrig",
  "TickRate": 60
}