- Jul 17, 2021
- 8,884
- 13,558
That's from Being a DIK.Dude where did you get this Profile picture from what game ?
That's from Being a DIK.Dude where did you get this Profile picture from what game ?
Yep it's from being a dikDude where did you get this Profile picture from what game ?
oh okay i heard of it did go there to give it a try saw File sizeYep it's from being a dik
It's been released to $15 Patrons, it will be publicly released in about 2 weeks.Is the update been released?
Ah thanks, I’ll fix that!Found this little typo: "Just another lazy one*" View attachment 2549083
I was looking at some cool Street Fighter art featuring Elena, and wondered what Gabby would look like cosplaying..
View attachment 2548166
Thanks to everyone who's tried the newest release so far! I've cleaned up some bugs and spelling errors over the last few days, and I'm going to republish the update later today with all that stuff in place. Working on making a few more improvements ahead of next week's $5 release.
I'm really glad to hear that, man! About halfway through doing this one I hit a point where I began to question all my decisions, and wonder if this installment hung together at all. :'DYou don't have permission to view the spoiler content. Log in or register now.
I'm really glad to hear that, man! About halfway through doing this one I hit a point where I began to question all my decisions, and wonder if this installment hung together at all. :'D
Ack! Much appreciated, I'll review that and get it fixed.NeonGhosts I'm getting this error talking to Carolina after Mason's scene.
The new version only has the variable "bri_fear" while the version linked in the OP here only has the variable "brifear".You don't have permission to view the spoiler content. Log in or register now.
Watching the code I would also advice to be careful when mixing the AND OR operators in the same line.
AND has precedence on OR (You must be registered to see the links) so that line is processed like this:
(brirel == 0) OR (brirel == 1 AND bri_fear == False)
I don't know if that's intended since I've seen it's possible to have bri_fear == True even with brirel == 0.
It's best practice to use parenthesis to avoid confusion, so one of:
if (brirel == 0 or brirel == 1) and bri_fear == False
if brirel == 0 or (brirel == 1 and bri_fear == False)