Comments

Log in with itch.io to leave a comment.

(+1)

This played really smoothly on my HP touch-screen laptop, using keys and on-screen movement. I especially love how avoiding diagonal movement seems to work in the game's favor, creating smooth, intuitive interaction with the 3D world. Great work making MV3D really shine with sprite tags, too! 

In the mv3d project I'm working on ( lawest.itch.io/syntence ), I had to reduce the camera freedom for the player to make touchscreen movement easier, but it's great to see you can have an intuitive first-person MV3D experience. 

Thank you. It's mostly done because of the traffic system. i don't use the commercial version of MV3D, hence i can't import 3D Models. The vehicles, being just sprites, need a 90 degree facing to give the illusion of perspective.

(1 edit) (+1)

Wow, it's looking great, and can you make tutorial on your youtube on how to make banking/debit monetary system. I'm just hoping if this possible to make just using event variables without plugin I'll really appreciate it, right now I'm using MZ

(+1)

Hi, making a tutorial for this might be very challenging, as the debit ATM is heavily dependent on the time/date system i have in place, even though it is not a plugin, it still requires alot of scripting in the common events that is tied to other common events. This easily rakes up to 20 for automation alone just for this prototype.

I will put something up in the future if i can find a more "organized" way to do it, but as it stands now, it's unlikely.

(+1)

thanks for reply, it's okay. Once again I want to say your game is really great visual looking I don't know why but it reminds me metropolismania 2 I love this game. But it's really heavy when I try to run it at my phone (Oppo realme 2) yeah it's an old smartphone.

(+1)

Really dope, I'd love to be able to download the game file and have a look at your coding. I just don't get how I would do interest by percentage!

(3 edits)

try this:

Interest payout by percent Int (var) = 0;
Interest payout by percent Int (var) = Math.floor((Math.random() * 2) + 1);

a = $gameVariables;
accumulated interest (var) += math.round(a.value(bank money(var))/100*a.value(Interest payout by percent Int (var));
bank money (var) += accumulated interest (var);

replace "descriptive(var)" with $gameVariables.value(n)