- Joined
- Jul 28, 2024
- Messages
- 12,012
Means I'm better, I'm stronger, I'm smarter. I AM BETTER!What does that even mean dude
Means I'm better, I'm stronger, I'm smarter. I AM BETTER!What does that even mean dude
Optimize it fully with assembly xaarI could probably code better than this retard
No you're not brown troonadian slaveMeans I'm better, I'm stronger, I'm smarter. I AM BETTER!
View attachment 47800
I'm literally stronger and smarter than you dudeMeans I'm better, I'm stronger, I'm smarter. I AM BETTER!
View attachment 47800
I'm literally stronger and smarter than you dude
Shut up nufig, shitty culture.Try not to turn everything into a who is is more obsessed contest for a thrembolionth of a second challenge ohnonono
This is a shit thread anyway retard, women can't code so what is she going to make? Absolutely nothingTry not to turn everything into a who is is more obsessed contest for a thrembolionth of a second challenge ohnonono
Shlarty.sloppy culture is rambling on about whippyhoo at the speed of light in every thread like an autist yes xaarShut up nufig, shitty culture.
this project is just namefag circlejerk coal, who cares?Try not to turn everything into a who is is more obsessed contest for a thrembolionth of a second challenge ohnonono
Is this why you never coded anything?This is a shit thread anyway retard, women can't code so what is she going to make? Absolutely nothing
That foid makes me want to disembowel myself but what coding do you know yourself if you think you’ve got a bigger bbcThis is a shit thread anyway retard, women can't code so what is she going to make? Absolutely nothing
Do itThat foid makes me want to disembowel myself
Trve, I actually didn’t even read the bread before replying thoughbeitthis project is just namefag circlejerk coal, who cares?
I bet youd like to see that, im surprised the green tranny xlitty goo stuck in your keyboard isnt making it hard to typeDo it
I wouldI bet youd like to see that
>I would
![]()
I was thinking about making a dialogue system and I do think making a custom class or a struct is the best way to go about it. Perhaps make it so every class is an encapsulated line of dialogue (or lines) with an array of references to other classes that correspond to the choices the player can make. You could store these in a bunch of Jsons and load them in as needed (could further encapsulate every conversation into it's own list of possible dialogues). These jsons could also store information used for progression and what not. I don't know python so here's a shitty diagram as an exampleIf I were you, I'd make a system that uses a custom message class, that has the text and then if it has choices those choices are defined and go to other messages. All the messages are in an array so that they can be cycled through or something like that, but when they branch off, they branch off into different arrays or different messages that reference eachother. You could use JSON or a dictionary for this, like this:
Your entire python code could then be to iterate through the json's keys, print it's text value, detect if it has choices and then ask for input, checking that the input are one of the choices, if selected, then print the other message or something like that. I could probably do a better job at it, but you should probably learn it by yourself imo.Code:{ "message1": { "text":"Hello!", "choices":{ "Who are you?":"message2a", "Fuck off.":"message2b", "Marry me.":"message3b" } }, "message2a": { "text":"The ruler of everything, ofcourse..." }, "message2b": { "text":"How rude of you!" }, "message2c": { "text":"Oh, sorry... I'm already married. To science!" } }
Congratulations retard you have invented the dialogue tree (which has never been done before)I was thinking about making a dialogue system and I do think making a custom class or a struct is the best way to go about it. Perhaps make it so every class is an encapsulated line of dialogue (or lines) with an array of references to other classes that correspond to the choices the player can make. You could store these in a bunch of Jsons and load them in as needed (could further encapsulate every conversation into it's own list of possible dialogues). These jsons could also store information used for progression and what not. I don't know python so here's a shitty diagram as an example
View attachment 47805