Emotes
Kaomoji
Emoji
BBCode
(for deletion)
  • Allowed file types are: gif, jpg, jpeg, png, bmp, webp, swf, webm, mp4
  • Maximum file size allowed is 50000 KB.
  • Images greater than 250 * 250 pixels will be thumbnailed.
  • 18 unique users in the last 10 minutes (including lurkers)




We will have Bunkasai on 19-20 September [Info]

Want your banner here? Click here to submit yours!

come down to https://play.heyuri.lol and generate your own game. this is my last minute bunkasai submission. while it took me like 1 day to throw this site together.
it is actually part of a game engine i have been working on for months now.
the page it self is anonymized to look liek heyori! there is a lot of changed features to stay anonymized.
there is no image generation and no audio generation connected to my claude. but you can prob still have it pull some audio libs and programmatically gen it or run a really light image gen lib or imagemagic or even links to images.
your imagination and the claude TOS is the limmit!
either way. come and join and test out my engine.
i am totally not using this as a alpha test for my engine or anything.

oh and if things are not up rn. its because i am going to bed and i told AI to just get the rest of this fixed while i sleep. go an try to win big on prompts!
9 posts omitted. Click Reply to view.
>>
>>194342
Chrome or Chromium; they extremely slow and lagged, unusable level.

Thanks!

Actually my computer always gives me trouble because of OpenGL, WebGL, and other like things.
>>
>>194345
chrome and chromium are the same. both developed by google. its that chromium is the open sourced version and chrome is googled's proprietary fork.
>>
well since my bunkasai was kinda a fail/test product. I might as well go over what this game engine is and things i have discovered along the way!

so i have been working on this every day since may 10th with maybe a day or 2 knocked out bc sick/drunk missing commits for those days. i have ultimately started working feb 21st.

the original problem started 4 moths prior to building this engine. the issues was about roblox and luau. in luau there is not proper way to do oop and there was no real framework to create network driven objects and proper serialization to squash and store objects directly into data bases. so the 4 months prior i was on and off developing a frame work in luau to build exactly that.
it was hacky but when i was getting close to completion of it, roblox pushed ID verification hard, so hard that to upload a game to there platform you had to have an ID verified account and pay money, witch just made it totally useless. i went looking for alternatives i can develop on and none had the ability to make stand alone game and there platforms where really weak. the framework it self is engine agnostic witch plugging it into sockets or what every the underlying engine exposes.
the adventure into looking for alternatives put me into discord servers witch any sort of discussion or talk i had immediately got spammed with rule 8 and serious discussions deleted. witch sucked bc that was the only one developing a custom engine at the time, the rest are based off unity or godot or AI codded by some kid who knows nothing about computers.
after a while and seeing more news about shit, i went and started my own project bc i thought it couldn't be to hard to remake this.

so i started with figureing out libs i would want, and setup and structure of how things should be. i ended up finding roblox's API documentation is cc0 with mit code examples along with some test places also as cc0/mit there luau scripting fork was also open source.
i grabbed all of that loot, i picked D lang as my programing language and was intrested in sokol since i didn't really wanna have sdl2 and its legacy code base.
i first started out making a data driven API for luau matching roblox parity. i would define meta data like name, paramiter, description, wether it was server client, editor or native. and other little things like that.
i then started building out objects for each one of them structures (witch later i found out to be an issue) and i used that as engine internals i would passed around to the sound system physics and all.
the reason why the meta data API is important is because it defines one source of truth, everything will agree upon that. there will be little knock out flags for client server editor etc that will know its self and check agents the api (during copilation)
so each thing will know what it can and cant do with that
i didn't want to define every single luau to object layer, so the object files holding the api meta data meant there is one file to manage. and not 3 different file for this structure. as they would have been the bridge wiring, the object, and the object representation in luau.

this surprising worked really well that i was able to really early get scripts that worked in roblox to work in my engine. i had built a render witch would walk the whole data model, data model being a hierarchy of objects witch children and stuff. so u can properly parent thigns and sort them. (more issues later about all of this)
so every time i wanted to render i would walk the whole tree grabbing each part and sending it to the gpu its position size color and all.realy optimizations included walking the tree once, sending it all to the gpu, and then only sending stuff that changed witch gave me hooks to work with.

next was physics and man this was kinda a pain, jolt was kinda buggy but it worked after some tuneing, i was able to get it to do physics but it would destroy the cpu on all core max, that i had to turn down the hrz it did its cals or what ever a bunch.. and if it was to low, thigns would fall thu the floor and other weird buggy stuff. not much i can say other then i had many issues and lots of that was just fixing up physics world by tuning.

at this point every one of my tests where just luau scripts as a launch options. and that would generating the world and drawing it on screen. i started developing a editor around all of this and slowly converting everything to be driven by save files rather then launch flags. i got imgui from sokol to build the editor it self. (turns out roblox also uses imgui, i saw it in there latest engine showcase)
the editor must have its own VM and other custom bvinding just so that it can do fileIO and other things. it would run more powerful scripts that could do actual things on your system but idealy it shoudnt be posible to do stuff unless u got a plugin that does it. game scripts would be isolated into there game vm that has no fileio bindings and other things.
some of the editor stuff would include tools that can dip its hand into the data model and set positiongin and stuff. while the main thing it was, was to hold separate gizmos for positioning and scaling and other sorts of non game intractable.


Comment too long, view post No.194355 to see the full comment.
>>

so by this point i basicly got most things working i can import a roblox game and run it... but it runs like shit. and i dont really like the stupid lego people. so i sepnd long time optimizing things and working out what i can do to make faster. it turns out i am going oever the whole data model a hand full of times for many things like audio physics and other trash. i was able to have it go down a bunch. i then had to make a algo for oclusion culling witch meh it was okkay but what helped more was combinging pars with same textures and touching and all into one bigger shape reducing verties witch sure it helps a little more but the main issue was still the cpu burning recalcs, so some more optimizations was making a algo that apll parts start as records a small struct that defines what it is, but when a scirpt calls upon it, it will be made into a object on the fly and be used when need and held and if not usedfor a while will be turned back into a records. this saved a lot of ram, and then i was able to turn that list of awoken objects into a sparse set that i would then feed into systems as deltas making things faster. many other little things
another thing i am really proud of was getting duplexing working as it was HARD, most game servers opporate in 1 world per application. but i felt that my engien was light enough that i could duplex stuff. and have less rame usage and only have awoken stuff be the custom things for each work. as some games that are 1 users each per game or a tycoon with max of 6 players could also get this since it is a small game on paper. but 10 procsses would be 10 engines with 80-90% of the same base game.

oh here is another thing u need 0 allocation games if posible bc a single malloc and other things can cause the whole world to freeze. and in case with duplexing it is hard in many things with one procsses starving the cpu of other games and many other smaller things.
i had to redesign many things to have one base and things and then fork it into sub procsses, i was getting AI to help me and it basicly was refusing to help and said it was not possible and i had to study nginx to help figure out how it duplexes and all of that. i eventually got it working how i want but still needs tuneing but basicly the main issue was the cpu not being shared evenly and is why u had to fork rather then duplex in one processes and to actauly see real benifits you have to memory map from the parent procsses the engien and other unchanging data


Comment too long, view post No.194356 to see the full comment.
>>
>>194355
>>194356
Cheer up, game kid!
At least, you tried it.

Location: Krakow, Poland
Date: October 17th (And afterparty on 18th of varying attendance!)
Invitees: Anyone who wants to come ใƒฝ(ยดใƒผ๏ฝ€)ใƒŽ
Attendees: Rabbitfield [Confirmed](Probably), (Me)* [Confirmed], Kaguya [Possibly]

Why Krakow?
Because the bulk of Heyuri's users are concentrated in Europe and the Middle East, with an apparent plurality located in Poland. We have multiple swedes and some brits too - if you live in those two countries, keep in mind krakow is like, a 50$ ryanair flight away.

How do I prevent myself from being raped or something else bad happening?
That won't happen. Worst come to worst, Kaguya will protect you, as he has a legal obligation to protect all Heyurizens.
Realistically, the only people willing to attend will be Heyuri ๏ฝ๏ฝŒ๏ฝ„๏ฝ†๏ฝ๏ฝ‡๏ฝ“ who you've probably spoke to anyway (ยดใƒผ`)

What will we do?
Eat, drink, hang out, n stuff ใƒฝ(ยดใƒผ๏ฝ€)ใƒŽ bring your computers, we'll probably have a LAN party too.

Where at?
Probably in whoever has the nicest hotel lobby or something [idfk?]

Wat do?
If you are seriously interested, please let us know in this thread ใƒฝ(ยดใƒผ๏ฝ€)ใƒŽ
Whether you will attend anonymously or not, you should use a tripcode to facilitate coordination as the days come close.

But I don't want my face associated with this site
We'll have a no camera policy... and unless one of the fellow attendees happens to be your HR supervisor, no one should find out (๏ฟฃใƒผ๏ฟฃ)

*Some people won't want to associate their face to an online name. I'll attend without saying who I am and a few others probably will too.
42 posts omitted. Click Reply to view.
>>
is there a discored??
>>
Get your EXCLUSIVE authentic kaguya-signed heyuri hachimaki on Oct 17 for the low low price of $0! A priceless once in a lifetime artifact!
>>
Polish anons, I've booked for a week in poland so I'll have alot of time to do stuff in Krakรณw.

What food should I try? Should I check out Warsaw too? Its only a 2 hour train from Krakow
>>
>>194374
where are you from? are cigs cheap where you live?

there is auschwitz nearby, organizer is going there, warsaw is boring really unless you are into ww2
>>
im never gonna make it there:cry::cry::cry:

ใŠๅธฐใ‚Šใชใ•ใ„ใพใ›ใ€ใ”ไธปไบบๆง˜๏ผ
Welcome to the Pantsu Prophet Fresh Milk Cafรฉ! All milk used in recipes here is fresh from the leaky teats of the hermit Ganigawara Ayaka, a patron and benefactor of our club leader Megumi's shrine! Her many years of austere practice have given her ample breasts the ability to produce miraculous milk that spreads health and good fortune to all who consume it with pure hearts!

All offerings go straight to the saisenbako of our affiliated shrine!

Please have a relaxing time and order something off our menu:

Milk - 400 yen
Tea (black) with milk - 600 yen
Tea (green) with milk - 600 yen
Cocoa with milk - 600 yen
Coffee with milk - 600 yen
Cookies (chocolate chip) - 800 yen
Cookies (gingerbread) - 800 yen
Cookies (snicker-doodle) - 800 yen
Brownies - 1000 yen
Photo with maid - 800 yen
Banana (for your maid to eat in front of you... a magnificent sight) - 1500 yen
Drink directly from the source (breastfeeding) - 3000 yen (5 minutes)

All drinks are served hot... straight from the source!

This is NOT a prostitution service, you filthy hentai!*

*It has been said that the old ways are still practiced at Kanamata Jinja after dark if you're interested in that

Comment too long, view post No.194261 to see the full comment.
12 posts omitted. Click Reply to view.
>>
>>
>>194265
The Bunkasai is a mere two days, and we have many other customers to serve. But your extremely generous donation has been recognized by our shrine and we have found a way to make everyone satisfied. Ganigawara Ayaka, though her long hours of austerities in the recesses of the mountains, has mastered many esoteric techniques. One of them is a manipulation of the experience of time. Though your experience drinking from her fecund mammaries will only be 5 minutes long, you have paid for about 4 days' worth of continual sucking, and your experience will feel just that long and be remembered in your mind as such. It's the most we can do and we thank you for your understanding!

(Last pic for today. I'll keep taking suggestions until the end of bunkasai and pick up where I left off yesterday updating the thread with them).
>>
I forgot the back hair. :biggrin:
Here's an on-model version!
>>
and now i wanna snicker doodle.. (irl)
>>
Misaki drawing...? But SFW please.

Happy bunkasai day 2! Below ill be posting a collection of doujin manga (and one grav book) ive picked up in japan and scanned for the erotic pleasure of my heyurizen friends! I hope you all enjoy these works of literary genius! :biggrin:
11 posts omitted. Click Reply to view.
>>
>>
>>
:iyahoo::iyahoo::iyahoo::iyahoo::iyahoo::iyahoo:
>>
ARIGATOU 4 TEH FAPS ECHAN ๐Ÿ‘:nosebleed:
>>
*FAP FAP FAP*

๏ฝท๏พ€โ”โ”โ”(๏พŸโˆ€๏พŸ)โ”โ”โ”!!

How do you keep PVC figures from melting, getting sticky or becoming brittle over time? I have a figure on display away from sunlight in a relatively cold part of my room, but I don't really know the mechanics of plastic preservation.
>>
Fill it with soft, form-fitting, protective jizz! :biggrin:
>>
poor saya...

I feel fun.
>>
๏ฝท๏พ€โ”โ”โ”(๏พŸโˆ€๏พŸ)โ”โ”โ”!!

This thread will serve as the hub of discussion for the potential North American meetup as proposed by >>194327 in the last thread for the Krakow party.

For specific location, we have a poll for voting on which city we will fly to:
https://cgi.heyuri.net/vote2/vote.cgi?room=1789880089

As for time, I think the bare minimum of three months from now is as close as we can get but this thread is for deciding on that date. So we discuss. โ”(ยดใƒผ`)โ”Œ
3 posts omitted. Click Reply to view.
>>
>>194366
ur friend was rite (๏พŸ๏ฝฐ๏พŸ)
damn, they even have a fist of the north star game? has to be a fighting game
>>
I'm the euro organizer
I can come to this one too :nyaoo-closedeyes:
>>
and i just recognized silent hill the arcade in that video (;๏พŸะ”๏พŸ)
maybe i vote for chicago too...

>>194368
awesum, three confirmed ๏ผผ(๏ผพo๏ผพ)๏ผ
>>
DO CHICAGO nya!!!!!!!! I live closest to there nya(;ยดะ”`)
>>
if we do phoenix i know of all the spots that would be of otaku/heyurian interest so i can help organize

Introducing WAHA-Land a kusoRomhack by me for Bunkasai 2026

Wahaland features Waha on her journey through wahaland to save the Grimace and other isekai'd mcdonald characters for mayor pedobear.

Collect panchira and throw dynamite as you save wahaland from nigras or something!

Link to rom:
https://up.heyuri.net/gemusrc/gemu038.nes
10 posts omitted. Click Reply to view.
>>
>>194260
here is a open source web player i found, just download the rom and upload to that box
https://jetpack10.itch.io/nesemulator
>>
>>194340
THANSK
>>
>>194340
>>194341
controls are weird by default
arrow keys. enter to pause
and the buttons are like
t for attack and y for jumping
>>
>>194343
Actually for me, H = jump. Also I got stuck in nude lake world :cry:

And How is it saved?
>>
this is great, awsum sprites! i LOL'd
i'll make sure 2 beat it 2morrow ๏ผผ(๏ผพo๏ผพ)๏ผ

MY WIFE LEFT ME NIGGERS
5 posts omitted. Click Reply to view.
>>
You can date my mom OP.
For 60 dollars
>>
everyone here misunderstood OP
he did not say "my wife left me, niggers", he said "my wife left me niggers", OP has to take care of many nigras now (;ยดะ”`)
>>
This is your new wife now
>>
>>194304
i see... so OP now has to LEAVE HIS CURRENT WIFE AND FIND A NEW ONE :iyahoo: CHOOSE UR PICK OP!
>>
i got you a new wife right here

Greetings from the oekaki club, I drew heyuri tan! Won't you draw oekaki with me?
19 posts omitted. Click Reply to view.
>>
๏ฝท๏พ€โ”โ”โ”(๏พŸโˆ€๏พŸ)โ”โ”โ”!!
>>
>>194313
yup exactly @poke>rabbit
>>
@poke>rabbit's prostate
>>
>>194315
:xd: i lol'd
>>
cute cute cute!

The Heyuri Music Club is proud to present you all with their new songs and performances!
Let's share our music and have a wonderful Bunkasai together! :biggrin:

I'll start! This is a song i made for Heyuri if it was an early 00's doujin visual novel, it's called "Unforgettable Memories": https://up.heyuri.net/msrc/m557.mp3
8 posts omitted. Click Reply to view.
>>
here's something i made with a fellow heyurian about a week ago.... 9/11 to be exact. 4 fans ov power electronics, noise, whitehouse, buyer's market, fukt up spoken word shit.
https://cocomelontorturechamber.bandcamp.com/
https://www.youtube.com/watch?v=ckSrdgSQpQE
>>
>>194259
>harsh noise
shouldve known :emo:
>>
>>194155
fantastic song, it sounds like a level theme in a kirby game ใƒฝ(ยดโˆ‡`)ใƒŽ
i swear i've heard that whistle sample in the middle somewhere before, or however you would describe it

>>194214
this kicks ass, punk as fuck (๏ฟฃใƒผ๏ฟฃ)
>>
>>194325
There's a good chance you heard it in Umihara Kawase Shun or Mother 3, it's one of the flute samples from the Roland SC-88pro which was pretty common in the late 90's, and early 00's in VGM.
>>
>>194326
thx, it was probably mother 3 where i heard it from ๏ผผ(๏ผพo๏ผพ)๏ผ

"Which X am I thinking of?" ...try to guess the correct answer!
If you guess correctly, you decide the next prompt and answer!

https://cgi.heyuri.net/donpisha/
4 posts omitted. Click Reply to view.
>>
>>194241
I think Yutaka might be my waifu <3
>>
>b7dd7ed155ab3369687f2ec3f423daf2.jpeg
Hint (useless): she's in this picture
>>
>>194241
i loev misao, she's too kawaii (////)
>>
2839694
>>194241
Just give me Konata (๏ผพะ”^)
>>
>>194241
dice1d20-1=20 (19)

If you take a crap during bunkasai, is it a bunkasai poop? Is crapping a qualifiable theme?
>>
only if j00 post it on heyuri dot net!
>>
dude i finished shitting just 2 minutes ago
>>
Kitsch loli! :biggrin:
>>
I took a big dump and posted it on /b/ once
if someone finds it that could be the first contribution to the toilet booth :nyaoo:

Hello!
It seems like bant-tan has misplaced her body... Could you find a replacement for her?
Draw... anything!!!
-give her a uniform!
-force her into a sukumizu!
-make her an obese hairy east asian man!
-give her a 92-76-98 figure... with a 5 cm boner!
-turn her into... a massive rat!

The choice is yours!
2 posts omitted. Click Reply to view.
>>
๏ฝท๏พ€โ”โ”โ”(๏พŸโˆ€๏พŸ)โ”โ”โ”!!
>>
๏ฝท๏พ€โ”โ”โ”(๏พŸโˆ€๏พŸ)โ”โ”โ”!!
>>
I'm not an artist but Bant-tan turned me into an artist.

Your fortune: Bad luck

>>
bant-tan's bant hole!
>>
>>194276
And Bant tits babe!

Your fortune: Tomo will strangle you in your sleep


Want your banner here? Click here to submit yours!

Delete post: []
First
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] [93] [94] [95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] [108] [109] [110] [111] [112] [113] [114] [115] [116] [117] [118] [119] [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] [132] [133] [134] [135] [136] [137] [138] [139] [140] [141] [142] [143] [144] [145] [146] [147] [148] [149] [150] [151] [152] [153] [154] [155] [156] [157] [158] [159] [160] [161] [162] [163] [164] [165] [166] [167] [168] [169] [170] [171] [172] [173] [174] [175] [176] [177] [178] [179] [180] [181] [182] [183] [184] [185] [186] [187] [188] [189] [190] [191] [192] [193] [194] [195] [196] [197] [198] [199] [200] [201] [202] [203] [204] [205] [206] [207] [208] [209] [210] [211] [212] [213] [214] [215] [216] [217] [218] [219] [220] [221] [222] [223] [224] [225] [226] [227] [228] [229] [230] [231] [232] [233] [234] [235] [236] [237] [238] [239] [240] [241] [242] [243] [244] [245] [246] [247] [248] [249] [250] [251] [252] [253] [254] [255] [256] [257] [258] [259] [260] [261] [262] [263] [264] [265] [266] [267] [268] [269] [270] [271] [272] [273] [274] [275] [276] [277] [278] [279] [280] [281] [282] [283] [284] [285] [286] [287] [288] [289] [290] [291] [292] [293] [294] [295] [296] [297] [298] [299] [300] [301] [302] [303] [304] [305] [306] [307] [308] [309] [310] [311] [312] [313] [314] [315] [316] [317] [318] [319] [320] [321] [322] [323] [324] [325] [326] [327] [328] [329] [330] [331] [332] [333] [334] [335] [336] [337] [338] [339] [340] [341] [342] [343] [344] [345] [346] [347] [348] [349] [350] [351] [352] [353] [354] [355] [356] [357] [358] [359] [360] [361] [362] [363] [364] [365] [366] [367] [368] [369] [370] [371] [372] [373] [374] [375] [376] [377] [378] [379] [380] [381] [382] [383] [384] [385] [386] [387] [388] [389] [390] [391] [392] [393] [394] [395] [396] [397] [398] [399] [400] [401] [402] [403] [404] [405] [406] [407] [408] [409] [410] [411] [412] [413] [414] [415] [416] [417] [418] [419] [420] [421] [422] [423] [424] [425] [426] [427] [428] [429] [430] [431] [432] [433] [434] [435] [436] [437] [438] [439] [440] [441] [442] [443] [444] [445] [446] [447] [448] [449] [450] [451] [452] [453] [454] [455] [456] [457] [458] [459] [460] [461] [462] [463] [464] [465] [466] [467] [468] [469] [470] [471] [472] [473] [474] [475] [476] [477] [478] [479] [480] [481] [482] [483] [484] [485] [486] [487] [488] [489] [490] [491] [492] [493] [494] [495] [496] [497] [498] [499] [500] [501] [502] [503] [504] [505] [506] [507] [508] [509] [510] [511] [512] [513] [514] [515] [516] [517] [518] [519] [520] [521] [522] [523] [524] [525] [526] [527] [528] [529] [530] [531] [532] [533] [534] [535] [536] [537] [538] [539] [540] [541] [542] [543] [544] [545] [546] [547] [548] [549] [550] [551] [552] [553] [554] [555] [556] [557] [558] [559] [560] [561] [562] [563] [564] [565] [566] [567] [568] [569] [570] [571] [572] [573] [574] [575] [576] [577] [578] [579] [580] [581] [582] [583] [584] [585]