2019-06-18 00:29:49

Hi
Please help. I searched for it but couldn’t find it. Any help is  appreciated. I want more includes.
smile

2019-06-18 02:43:19

masonasons.me and download his open sourced projects.
The include is in most of those games.
HTH.

2019-06-18 08:27:59

I could not find his open sourced projects? Give a link please

2019-06-18 09:23:45

go in agarchive.net and find his page.

Yours kindly

2019-06-18 14:44:46

You want more includes? Ok.
https://github.com/cartertemm/bgt_includes

Ivan M. Soto.
Feel free to check out my work and services.
http://ims-productions.com

2019-06-19 13:21:43

I couldn't find the MPro include on that GitHub repository but it is in some of Mason Armstrong's projects on the Audio Games Archive page, although I would recommend just to code your own menu with the options you like.

Best regards
T-m

2019-06-19 13:49:14

Lol yeah, that simple. Just ya know, code a new menu class with all the features of m pro. Shouldn't take more than a few seconds. Or ou could, ya know, use what's already out there.

2019-06-19 13:55:42

post 6 was totaly not needed

best regards
never give up on what ever you are doing.

2019-06-19 19:08:50

Yeah, sure, just code you're own menu, that easy.

2019-06-19 20:18:21

Actually yes, coding your menu is easy. What is difficult is adding all the fancy features. A simple, generic menu, is really easy to do.  I speak from experience, when I started coding in python, I didn’t have an include that gave me the menu. I made one by hand, and it took 15 minutes if that. It literally was as generic as possible. No music, no first letter navigation, just your old menu.  Guess what, I like that.

2019-06-19 21:20:47

@10, good point. It's when you want fancy features, first letter nav, a fancy, professional menu.

2019-06-19 22:57:06

I wouldn’t call it professional. Fancy is the right term, though.

2019-06-19 23:20:28

Meh, true. regardless, this guy was looking for a fancy menu, he was asking for m pro. so coding a menu like that would take quite some time. I can only imagine the time it took mason. but then again, i don't code in bgt, so what do i know. well, not very much in bgt.

2019-06-20 09:12:47

speaking of whitch, can any one help me making my own menu? i want to use python. i know that you need an int for the index, and an array for the options... but there are a few things i just don't seem to understand

best regards
never give up on what ever you are doing.

2019-06-20 10:12:23

I think m pro was actually based off of dynamic menu, so he did sort of have a leg up.

2019-06-20 10:24:22

@15 yes, he could just add some functionality

best regards
never give up on what ever you are doing.

2019-06-20 15:21:23

What kind of things don't you understand?

Ivan M. Soto.
Feel free to check out my work and services.
http://ims-productions.com

2019-06-20 15:24:08

Ok, maybe it takes a few hours, but I prefer writing most things myself instead of using premade includes.

@14, Sorry, I'm no expert at Python. I use BGT, and when that can't give me what I want, I create a dll in C++.

Best regards
T-m

2019-06-20 17:59:38

i just don't propperly know what goes where

best regards
never give up on what ever you are doing.

2019-06-20 23:13:17 (edited by amerikranian 2019-06-20 23:14:41)

Can you elaborate? When you say what, what do you mean? Also, something that you should understand is that there is no perfect guy to coding. Everyone will have different opinions as to how to do things, and you just have to choose what best suits you.

2019-06-21 09:38:47

by what i meen the functions. bgt's dynamic_menu has all those loops and functions i don't need.
I just want a simple text menu. and i just get so confuzed on what to add to the menu and what not to add to the menu. for example int r=m.run("please choose an option.",false); i reelly don't think i am going to need to have that shit in my menu class.
i just don't propperly know how to present my frustrations.

best regards
never give up on what ever you are doing.

2019-06-22 00:17:55

In a nut shell, a simple text menu is just a list of choices and the index of that list.  As you hit up-and-down arrows, the index will either decrease or increase.