Can we make a money making game using Defold?

Where the player receives money while playing our games.

There is nothing in the Defold license or in the Defold engine that will prevent you from creating such a game if you want to.

3 Likes

But there is nothing in the Defold asset store which help us integrate a payment gateway in our game.

We have support for in app purchases (Apple+Google), but it seems that’s not what you’re referring to?

Can you give us an example of such a “payment gateway”?
In any case, if the gateway has an api (REST or C++), you should be able to create an extension to communicate with that service.

2 Likes

Stripe is a good example here, i think i would need the pay out details of the players so that I can transfer them the funds.

Stripe does have a REST API: Stripe API reference – curl

You want to do that kind of stuff on a server, not in a game engine client.

2 Likes

Can I use Nakama for that? If no, can you give an example of such a server.

The features of Nakama, in combination with some server based custom logic could probably work quite well for this. You’d have to research and really document your server requirements though to ensure that you pick the right backend service for your game.