🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Fixed Resource Economy, Auctions and a Currency Conundrum.

Started by
13 comments, last by Septopus 5 years, 8 months ago

Are you accounting for people who quit the game? Will the unused stuff spoil to let it flow back into the economic cycle?

Advertisement
1 hour ago, wintertime said:

Are you accounting for people who quit the game? Will the unused stuff spoil to let it flow back into the economic cycle?

That's the goal, the exact mechanisms I haven't quite figured out yet.  Though there will be a some item degradation through use/time anyhow so I guess I can just accelerate that for excessive time between logins with a rapid fall off to zero after a few weeks.  Things rust if you don't take care of them.. ;)  With all items being self-repairable through crafting, it shouldn't be too inconvenient.

That way should a player return from a vacation or something, while their stuff may be fully degraded, there will be a pretty simple path to recovery through crafting.  A couple of game sessions grinding at the mines and crafting and they can be back up to full glory once again.

Or they can build/rent a maintenance bot that can operate autonomously(for short periods, a few weeks tops) taking care of their pretty things for them.  But those also break down eventually and need fixing themselves.

 

On 9/27/2018 at 10:42 PM, Septopus said:

I come to the conundrum..  How do I setup a starting bid amount or even a bidding system without a specific currency?

You hit a very common wall when trying to conceptualise a functioning economy.  I can give you my own personal insights into economic theory.  It just so happens that this very question ( one of its many forms ) is the motivating force behind my project unirule.  

In essence you're attempting to understand how to create value.  However, you have no idea what value you're in game periodic elements will have because right now you don't have 3 basic things:

1.  Energy required to extract the resource ( including time taken to extract the resource ).
2. Total pool supply and total pool demand.  ( how many people are supplying this resource? how many are consuming it? )
3. Replenishment life-cycle and consumption life-cycle; both over a measure of time.  ( How long does it take to replenish the resource, how long does it take to consume the resource ).

Another wall you've hit is that the fluctuations of demand and supply and ultimately the value of something will be more chaotic when you have few participants.  If you've got two people playing your game I'd bet everything would be traded at a 1 to 1 value.  But with more and more participants the value of a item becomes more pronounced.  

I personally plan on addressing all these issues by simulating the vast majority of the economy with simulated people. 

I suggest...

Make some resources harder to get
Make some resources consuming cycle shorter.
Make some resources necessary to daily going-abouts of the game ( food, clothing so on...)

Cheers

2 minutes ago, Awoken said:

I personally plan on addressing all these issues by simulating the vast majority of the economy with simulated people. 

I suggest...

Make some resources harder to get
Make some resources consuming cycle shorter.
Make some resources necessary to daily going-abouts of the game ( food, clothing so on...)

haha, well it sounds like our games may be very similar.   I'm going with automated bots and other mechanisms that are part of the settlement infrastructure as well as a few NPCs as the simulated economic participants. ;)  I'm trying to keep all AI code isolated in my NPC systems as much as possible.  Plus, for game continuity, I would like it for every economic participant to have some presence in the game world, even if it's an NPC, at least it adds to the content that way.

The resource distribution will be an analogue of a natural system, so things like hydrogen, oxygen, and iron will be pretty easy to find, and things like titanium and gold, a little harder, uranium.. good luck.

This topic is closed to new replies.

Advertisement