Re: classes in classes in bgt, can i do that?

2019-09-05 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector
Re: classes in classes in bgt, can i do that? Hi there,@1: what you're trying to do is called a nested class, and it seems like BGT doesn't support it. Other languages do have support for such nesting, however it's used only in special cases. For example, Android sdk uses R as a base class

Re: classes in classes in bgt, can i do that?

2019-09-04 Thread AudioGames . net Forum — Developers room : redfox via Audiogames-reflector
Re: classes in classes in bgt, can i do that? @7 woops, @5 posted litterally as I was posting @6 lmfao. URL: https://forum.audiogames.net/post/459638/#p459638 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin

Re: classes in classes in bgt, can i do that?

2019-09-04 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: classes in classes in bgt, can i do that? Well, judging from his answer (#5), it very well seems like it did answer his question . But he can specify his question more clearly for sure if they're still things open.Best Regards.Hijacker URL: https://forum.audiogames.net/post/459632

Re: classes in classes in bgt, can i do that?

2019-09-04 Thread AudioGames . net Forum — Developers room : redfox via Audiogames-reflector
Re: classes in classes in bgt, can i do that? @4 I'm not sure that's what he asking.@3 can you please explain it for me more?I think he's asking for something that can randomly generate 1 to a random amount of questions and or answers based on the answers and or questions given? URL

Re: classes in classes in bgt, can i do that?

2019-09-04 Thread AudioGames . net Forum — Developers room : simter via Audiogames-reflector
Re: classes in classes in bgt, can i do that? Thanks, figured that out also a few minutes after posting my last post. URL: https://forum.audiogames.net/post/459575/#p459575 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: classes in classes in bgt, can i do that?

2019-09-04 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: classes in classes in bgt, can i do that? Well, that is surely possible, you just don't have to put the interaction class into the parent class:class interaction { ... } class bot { interaction@[] interactions; }That works fine. Your relation works just fine however, you just need

Re: classes in classes in bgt, can i do that?

2019-09-03 Thread AudioGames . net Forum — Developers room : simter via Audiogames-reflector
Re: classes in classes in bgt, can i do that? Cause what i wanna do is something like the following. You have a little bot thing. It has several different answers to several questions. You can also put multi answers to one question that are then used randomly or multiple questions to 1

Re: classes in classes in bgt, can i do that?

2019-09-03 Thread AudioGames . net Forum — Developers room : Hijacker via Audiogames-reflector
Re: classes in classes in bgt, can i do that? Nope, you cannot add classes in classes in BGT. But why don't you add those arrays directly inside the parent class, instead of creating a child class?Best Regards.Hijacker URL: https://forum.audiogames.net/post/459459/#p459459

classes in classes in bgt, can i do that?

2019-09-03 Thread AudioGames . net Forum — Developers room : simter via Audiogames-reflector
classes in classes in bgt, can i do that? Hi. Today i wanted to write a program for private tests that was a bit complex inside. So i created a class and in that class i created another class. How ever, now i get the error that it Expected method or property. Is there a way to make