[ new ] [ lounge ] [ Home ]

/lounge/ - Lounge

Ultimate Manchildren's Playpen
Name
Option
Subject
Comment
Flag
File
YouTube
Password (For file deletion.)


File: 1690632100465.png (610.31 KB, 838x624, genders.png)

 No.62259

Official genders of my characters.
Im in the process of making the visual novel series

 No.62260

Kill yourself

 No.62265

File: 1690643717136.webp (133.15 KB, 1376x2539, Screenshot_20230729-101409.webp)


 No.62274

File: 1690644439652-0.png (41.85 KB, 278x250, rabbit_looking_right.png)

File: 1690644439652-1.png (43.49 KB, 278x250, rabbit_eye_contact.png)

File: 1690644439652-2.png (47.92 KB, 642x512, screenshot.png)

here's a barebones thing to get you started

install notepad++
https://notepad-plus-plus.org/downloads/

install python
https://www.python.org/downloads/

open command prompt and install pygame with "pip" python package manager
pip install pygame

make sure file extensions are shown in windows explorer
https://www.howtogeek.com/205086/beginner-how-to-make-windows-show-file-extensions/

create a folder somewhere, e.g. C:\Users\Dogisaga\Documents\pygame
copy these PNG files from this post and rename them rabbit_looking_right.png and rabbit_eye_contact.png
create a text file in there called dogma.py, then open it with notepad++.
paste and save the following code:

import pygame

# pygame setup
pygame.init()
pygame.display.set_caption('DOGMA SPEAKS')
screen_width = 640
screen_height = 480
font_size = screen_height // 13

screen = pygame.display.set_mode((screen_width, screen_height))
game_clock = pygame.time.Clock()
game_running = True

rabbit_looking_right = pygame.image.load('rabbit_looking_right.png').convert_alpha()
rabbit_eye_contact = pygame.image.load('rabbit_eye_contact.png').convert_alpha()

game_state = 0
last_game_state = 1

# the game loop
while game_running:
	# poll for events
	for event in pygame.event.get():
		if event.type == pygame.MOUSEBUTTONDOWN or \
		event.type == pygame.KEYDOWN and event.key == pygame.K_RETURN or \
		event.type == pygame.KEYDOWN and event.key == pygame.K_SPACE or \
		event.type == pygame.KEYDOWN and event.key == pygame.K_LCTRL:
			if game_state == last_game_state:
				game_state = 0
			else:
				game_state = game_state + 1;
		# pygame.QUIT event means the user clicked X to close your window
		if event.type == pygame.QUIT:
			game_running = False

	# fill the screen with a color to wipe away anything from last frame
	screen.fill("white")

	# check game state, then place the relevant rabbit sprite on center of screen
	# and text below using basic arithmetic.
	# it's bad practice to use absolute pixel values: what if you decided you didn't want to use 640x480 resolution?
	if game_state == 0:
		rabbit = rabbit_looking_right
		font = pygame.font.Font('freesansbold.ttf', font_size)
		text_rabbit_name = font.render('Rabbit', True, "blue")
		text_rabbit = font.render("Hmmm...", True, "black")

		screen.blit(rabbit, (screen_width/2 - rabbit.get_width()/2, screen_height/2 - rabbit.get_height()/2))
		screen.blit(text_rabbit_name , (screen_width / 32, screen_height - text_rabbit_name.get_height()*3))
		screen.blit(text_rabbit, (screen_width / 32, screen_height - text_rabbit_name.get_height()*2))

	elif game_state == 1:
		rabbit = rabbit_eye_contact
		font = pygame.font.Font('freesansbold.ttf', font_size)
		text_rabbit_name = font.render('Rabbit', True, "blue")
		text_rabbit = font.render("Whatcha lookin' at, dummy?", True, "black")

		screen.blit(rabbit, (screen_width/2 - rabbit.get_width()/2, screen_height/2 - rabbit.get_height()/2))
		screen.blit(text_rabbit_name , (screen_width / 32, screen_height - text_rabbit_name.get_height()*3))
		screen.blit(text_rabbit, (screen_width / 32, screen_height - text_rabbit_name.get_height()*2))

	# flip() the display to put your work on screen
	pygame.display.flip()

	game_clock.tick(60) # limits FPS to 60

pygame.quit()


then open command prompt, navigate to that directory (you can paste in cmd using right-click)
cd "C:\Users\Dogisaga\Documents\pygame"

then run the python file
py dogma.py

just ask here if you need help understanding anything or adding/modifying new things (e.g. a menu screen, animation, do stuff based on keyboard or mouseclick events, how to do image scaling if you decide to add optional larger resolutions, etc.), this shit's ez af

 No.62282

>>62260
I hope you're only pretending to be retarded

OP is dismantling transgender ideology through absurdity on a level deeper than the obvious

She's doing a service to humanity

 No.62283

>>62282
No im not im serious about those characters, im also identifying as a man (again cuz i have been since i was 8 or 9 years old), loads of trans-medicalists (truscum) will hate me tho cuz im tucute and against surgery

>>62274
Fuck pygame i can't use that shit i tried so many times, im using ren'py, and i think that i dont have to install python if i just install ren'py i think

 No.62284

>>62283
>im using ren'py, and i think that i dont have to install python if i just install ren'py i think
Ren'Py is more complex, requires Python and is based on Pygame (among other things). Of course if you need the features of Ren'Py it would be even better but if you're a complete beginner I think Pygame is better to start off with.
>Fuck pygame i can't use that shit i tried so many times
It takes maybe a couple minutes to do what I told you above. You need to put in at least some bare minimal effort before giving up or you'll never get anything done. Once you have this running, start asking questions.

 No.62285

>>62283
I appreciate the level of depth and commitment to your character role. I'm sure you'll trick many leftists into discovering the truth

 No.62289

>>62284
no piss off pugame always needs a bunch of preset shit written in that none of the tutorials worked for, im doing renpy i barely have to do shit with that

 No.62290

>>62285
oh fuck off retarded cunt

 No.62351

>>62289
Good luck with that doggystylesaga.

 No.62370


 No.62376

>>62351
>>62370
no you piss off m8, you dont know anything about me just fuck off ok

 No.62421

>>62376
thats an imposter fyi

 No.62476

>>62421
no, that's the real megatron

 No.62477

You are a fat pig who deserves to be locked in a gestation crate

You will always be inferior to Mitch

You aren’t even a fucking abbo

 No.62478

File: 1690741400720.png (254.5 KB, 434x821, hit_nak_nerv.png)

Hey everyone i got all of the sprites done for naked hitler!

>>62477
You seriously prefer that acne scared no-chin loser to me?

 No.62479

gas the schools

 No.62480

File: 1690741603179.png (254.92 KB, 434x821, hit_nak_joy.png)

>>62477
oh wait ur just another one of those brown eyed mediteranian losers from national socialist network, opinion discarded

 No.62481

Oh hey a Dogfailia thread.
[-]

 No.62482

fatNELstralia is fat and NEL

 No.62487

You should add Dwarf as a side character to your visual novel. Also you should give her body hair (armpit hair, arm hair, leg hair, happy trail a.k.a. sagittal hair) and not just pubic hair like you gave Ms. Hitler there. I've never seen any cartoons or comics where any woman has body hair, so you'd be breaking the mold.

 No.62488

File: 1690746621128.png (305.64 KB, 434x821, hit_sad.png)

>>62487
Thats M.r hitler, he is a transman
Look how sad you made him!

 No.62491

>>62488
You are an obese piggie white biddy

 No.62492

>>62491
Not white and not promiscuous

 No.62493

>>62492
Fascinating.

 No.62503

File: 1690752186849.webp (454.87 KB, 1042x8043, Smiley_is_a_faggot.webp)


 No.62511

File: 1690759907015.gif (3.69 MB, 350x303, ezgif-5-34af9d663a.gif)


 No.62515

Yo doggystyle when are you going to get out of this trans and excessive junk food-eating phase and be normal again? Do we have to take you on a boat trip to the island of Elhelm to find the elf witch who may be able to cure your affliction? We may as well convince smiley's internet ex [redacted] to tag along since she has issues that need to be cured too

 No.62523

File: 1690761994499.webp (103.42 KB, 1440x1210, Screenshot_20230730-190613.webp)


 No.62524

File: 1690762048146.gif (3.44 MB, 498x356, spongbob-meme-spongebob-get….gif)


 No.62525

File: 1690762766078.webp (135.42 KB, 1440x2362, Screenshot_20230730-191851.webp)


 No.62526

File: 1690763369891.webp (64.1 KB, 1440x1056, Screenshot_20230730-192703.webp)

>>62515
>smiley's internet ex
jenny

 No.62545

>>62526
I heard she went schizo and got locked in a loonie bin

 No.62550

>>62545
I heard she never existed and people were trolling smiley like christine weston chandler.

 No.62557

File: 1690823416545.png (303.44 KB, 434x821, hit_joy.png)

>>62515
Im already normal, ive been identifying as male since i was 8 years old and ive been out about it since i was 14 years old, i only stopped it around 18 years old and became anti trans but now im back again, only im Tucute and wont change my body

Btw ive been eating keto for 3 weeks and i will be sticking to it.

 No.62559

>>62557
You are another dumbdumb autist who fell for the trannyism meme. Protip: there's no separation from mind and body. The ego isn't even seperate from the source, just a part of it. You need a good spanking for your obstinate behavior.

 No.62561

>>62557
You are obese
Retarded
Narcissistic
Sex obsessed
Piglike

A sow bitch.

 No.62563

Mitch has PTSD for being married to a brainless, schizo pig woman who is a pure sow.

 No.62567

Why does Dwarf dislike Dog so much heh

 No.62571

File: 1690831727432.webp (454.87 KB, 1042x8043, Smiley_is_a_faggot.webp)


 No.62634

File: 1690885873716.webm (2.84 MB, 406x720, saki 2.webm)

(-)

 No.62659

File: 1690894854115.webp (51.55 KB, 1079x1116, Screenshot_20230728_233511….webp)

>>62634
Why do you always post gay shit, phantasm, we know it's you

 No.62690

File: 1690931065193.png (254.14 KB, 434x821, hit_nak_blnk_smu.png)

>>62561
>sex obsessed
>a bad thing

only because you can't keep your dick up and satisfy your partners lol

 No.62691

>>62690
Having sex with a sow like you is a horror movie concept you pigshit white bitch.

 No.62693

File: 1690931650126.jpeg (2.01 MB, 1620x1947, IMG_3453.jpeg)

Can you stop drinking water all together pigroach OP?

 No.62694

>>62691
l-...
LEAVE HER ALONE!

 No.62695

File: 1690932345019.jpg (459.26 KB, 1079x1116, Aaaaa.jpg)

>>62691
Lol based

 No.62700

>>62526
Whatever happened to her?

 No.62704

>>62700
I heard she never existed and people were trolling smiley like christine weston chandler.

 No.62711

>>62704
She existed newfag I saw and spoke to her in the tinychat

 No.62712

>>62711
Proof or gtfo.

 No.62728

>>62712
Fuck off

 No.62729

>>62728
She's isn't real.

 No.62734

>>62729
Neither are you

 No.62735

>>62711
Proof or gtfo.

 No.62739

>>62735
It was real in my mind

 No.62745

>>62739
It's real in your gut.

 No.62756

>>62745
Real in her sow belly

 No.62760

>>62745
Habeeb it
>>62756
Sow, those seeds

 No.62761

>>62756
Really salty seasoning.

 No.62765

File: 1691015551697.gif (219.64 KB, 368x273, 795a.gif)


 No.62774

>>62557
What is your sex?

Hell yeah on the ketonthing though. If you're fat don't even worry about calories just eat lots of meat+fat etc. Swallow butter bits etc

 No.62778

>>62761
Feally falty feasoning

 No.62783

Yo doggystyle you should also make an otome visual novel and have dwarf be your writer since she's good at making up stories. The story could take inspiration from your lives, e.g. Catmerica and Shortie are two 30-something girls in the same state who are stuck in separate group residential homes and see no future in their lives but while grocery shopping or visiting a park they both separately meet a rich handsome foreign man who happens to be a Nigerian prince and so a tense love triangle forms between them shifting from a dramatic black comedy into a psychological horror thriller where they both go unhinged in competing for this man's affection.

 No.62805

File: 1691061034953.webp (454.87 KB, 1042x8043, Smiley_is_a_faggot.webp)


 No.62806

File: 1691061322283.webp (50.29 KB, 1440x929, Smiley.webp)

>>62783
>black
Smiley BLACKED!

 No.62821

File: 1691072181773.webp (41.02 KB, 1440x753, 1688847773451 (1).webp)

>>62783
Look, I fucked a 54 year old methhead bitch, but I wouldn't fuck you. You are not attractive and are delusional to think that. You just have desperate men, men more desperate than me, around you giving you false feedback. You are nothing special. Get rid of this nonsense idea you're "attractive". You look like a mentally disturbed person with inferior dark eyes and dark hair. Yeah you're not a nigress or a chinkess so you've above these subhumans but for a white person you're really ugly. And the sad thing? It's an ugliness that can't be fixed; it's not like obesity or something is causing you to be ugly. As far as I can tell this is a good as you'll ever look. My 54 year old gf is better looking than you, she has prettier eyes, red hair, freckles, is tall. You are just… mediocre. If I was married to you I'd have to get you to wear a mask so as not to publicly embarrass me as people would taunt me for having an ugly girlfriend. I don't know what is worse; having an old girlfriend or an ugly one… ah I think I'll stick with my old lady. A woman's value usually comes down to her looks because women don't have anything else to offer in terms of character, virtue, intelligence, etc. so if you don't even have that then you are just nothing but a miserable femcel who will only be pursued by the most bestial and subhuman of "men" that would fuck anything. The best you could do is get a sperm donation from a real man like me because I wouldn't stick around to raise the child with you, you're too ugly to have around, hopefully my superior genetics would be an upgrade for your lineage else the child might curse me forever for having given you my seed.

 No.62841

>>62783
What do you mean?

 No.62861

>>62806
That picture is real

 No.62868


 No.62876


 No.62960

File: 1691203284518.webp (78.44 KB, 1393x2584, Screenshot_20230804-214040.webp)


 No.62969

>>62960
OK foky



[Return] [Catalog] [Top][Post a Reply]
Delete Post [ ]