#lounge
1 messages ยท Page 166 of 1
you can use the trademark if its for parody or educational
rugs funny
then why do they exclude some trademarks?
drugs bunny
Legal agreement to measure the Hp? ๐
a legal user agreement i can agree with
Agree-ee
lol
thats pretty good
slug's bunny
if we use marketplace assets do we have to credit?
no
is this an ad?
Definitely a scam
im getting robbed!
lol he is talking in live chat ๐
I have no money, but I want them back already
there's a text chat for voice channels @solid quiver
who randomly links shit from bestbuy though
uh, me? cause im in a call
bestbuy does
showing them a link
Random people
you know there's a chat for the voice channels right
this is such a 13yo vibe
im 18
Told ya, we want our money back
suck for you best buy is amazing
No buys, only donations
universal healthcare
i always buy from best buy I โค๏ธ best buy
yea shake dat ass
i fr should
sounds fun asf
i got one 5 min drive from me
i would spin my arrow sign.. bestbuy that way... 5000 miles
5000 miles lmao
also we say kilometers here... cuz meters are heavy
where u live at
Europe
bring ur bestbuy sign
ofc ofc
is it true europe has shit ac and heating in hotels
hotels that arent like 5000 a night i mean
we dont need that here
wym
the weather is just bearable without
we never have 40C or never -40c
my friend went there she said she was dying at night cause there was no ac and it was so hot
basically if you wear pants you wont freeze
there's some hot days in summer
alr good to know
well spain can get pretty hot
im boutta hit up all the spots bro eurpoe is beautiful
yea its allright
only cause u live there u think that for someone living in PA its amazing
cant wait
PA?
yes
pennsylvania
yup
we have transilvania.... with dracula!
itll be my second time out the country i went to the DR too that place is soooo good omg
always warm
clear water
ppl be outside
whats difference between inspired, parodying and stealing?
china
insipred is taking something and going off of it to make new things, parodying is making a joke of it and stealing is copying word for word
stealing is just taking and saying it's yours. Parody is doing something mimicing the original for comedic effect. Inspiring is making something similar but different with your own input
i said it better tho
ok bud
i said it bestbuy
always
i think my game is heavily inspired by a few things but should be different enough
that said its only planning/designing right now
show me
not finished yet,
im assuming unreal 4 engine tutorials work on unreal engine 5
not all the time
whats it inspired from
if its pretty basic tutorial like how to make a gun that shoots then yea
it should be good
Idea 1 = Gate, Summoning America and D&D
lounge chat... its a bestbuy signspinning cheerleadergame
monetized by product placement
Idea 2 = Overlord, Full Dive: The Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life and Log Horizon
if u give me a pic of u ill make u in 3d spinning a best buy sign and eveytime u click it gets faster
@carmine frigate
explain in not weird wording please
for both ideas
i can do 3d art myself
Modern Military goes into a fantasy world with guns, tanks and stuff
Person gets teleported to a fantasy world with modern stuff however their actions (killing an npc in the tutorial) has consequences
i tried something like that once where its like real world to fantasy open world
but i gave up cause open world is hard man
i will.. bet you cant beat this
silly character dance
that was like 2 yrs ago tho
OHH SHIT this is fire
i fw the eyes
yea like and subscribe... i havent uploaded anything since 2016 tho ๐
no worries this post is enough for my sub ๐ซถ
just subbed
and commented
and liked
it was for a contest... i made a detailed post on how i was making a cyborg and went fuck it and made this in 30 min
and ofc turned on notifications
i cant model for shit i was lying
it was made in blender 2.6 or some horrible shit like that
lmaoo the last time i was in blender was that dumbass dohnut video for "begginers" that shit was so hard for me bro
i hate blender sm
blender 3.x is nice
i havent looked
Maybe he just really likes tรผrkiye
i would love to try 3d modelling but too many skills at once is not good
r u new to unreal
modeling is fun tho
i used to do unreal engine 4 like 6 years ago then i kind of gave up and focused on other stuff but i want to get back into it
damn 6 years? so u prob forgot like everything

woo
how come they make the last sequel of the game free instead of the dishonored 1-2 first
1 > 2 & death of the outsider
death of the outsider sucks because title gives you literally the ending spoiler
whole game is about outsider's mystery
mayB i should make silly character dance 2 too celebrate my 2nd subscriber ๐
Do it lmao
this grub is immaculate bro i just finished 2 already
i looks not black and burned... ive had worse
only 1 more left ๐ฆ
- Be excellent to each other. Don't harass, threaten, or impersonate others. Don't encourage hate or violence. Don't engage in public shaming or witch hunts. Keep discussion civil and thoughtful. In general: Act in good faith, assume good faith in others, and be constructive.
this cant be real
Every time dieter trolls me Iโm gonna refer him to this message
ditere is a clear abuse of that rule
๐ค
I love summer. 30ยฐC at 930am
Dieter is exempt from that rule, he's the new server mascot
he just needs to state its a jk
๐ฅ
๐ฅ
๐ฅ
me trying rust for first time ๐ค
LOL
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <tuple>
using namespace std;
map<int, string> create_fizz_buzz_map()
{
map<int, string> fizz_buzz_map;
fizz_buzz_map[3] = "Fizz";
fizz_buzz_map[5] = "Buzz";
fizz_buzz_map[7] = "Bazz";
fizz_buzz_map[11] = "Razz";
return fizz_buzz_map;
}
vector<tuple<int, string>> get_fizz_buzz_values(int num)
{
vector<tuple<int, string>> fizz_buzz_values;
auto fizz_buzz_map = create_fizz_buzz_map();
for (const auto &fb : fizz_buzz_map)
{
if (num % fb.first == 0)
{
fizz_buzz_values.push_back(make_tuple(fb.first, fb.second));
}
}
return fizz_buzz_values;
}
string get_fizz_buzz_string(int num)
{
string result;
auto fizz_buzz_values = get_fizz_buzz_values(num);
for (const auto &fb : fizz_buzz_values)
{
result += get<1>(fb);
}
return result.empty() ? to_string(num) : result;
}
int main()
{
for (int i = 1; i <= 100; ++i)
{
cout << get_fizz_buzz_string(i) << endl;
}
return 0;
}
needs more classes. 3/5
templates!!
Enjoy ๐
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <tuple>
#include <algorithm>
#include <random>
#include <chrono>
using namespace std;
template <typename T>
map<int, T> create_fizz_buzz_map()
{
map<int, T> fizz_buzz_map;
fizz_buzz_map[3] = "Fizz";
fizz_buzz_map[5] = "Buzz";
fizz_buzz_map[7] = "Bazz";
fizz_buzz_map[11] = "Razz";
fizz_buzz_map[13] = "Mazz";
fizz_buzz_map[17] = "Kazz";
fizz_buzz_map[19] = "Lazz";
return fizz_buzz_map;
}
template <typename T>
vector<int> get_random_factors(int num)
{
vector<int> factors;
for (int i = 2; i <= num; ++i)
{
if (num % i == 0)
{
factors.push_back(i);
}
}
unsigned seed = chrono::system_clock::now().time_since_epoch().count();
shuffle(factors.begin(), factors.end(), default_random_engine(seed));
return factors;
}
template <typename T>
vector<tuple<int, T>> get_fizz_buzz_values(int num)
{
vector<tuple<int, T>> fizz_buzz_values;
auto fizz_buzz_map = create_fizz_buzz_map<T>();
auto random_factors = get_random_factors<T>(num);
for (const auto &factor : random_factors)
{
if (fizz_buzz_map.count(factor) > 0)
{
fizz_buzz_values.push_back(make_tuple(factor, fizz_buzz_map[factor]));
}
}
return fizz_buzz_values;
}
template <typename T>
T get_fizz_buzz_string(int num)
{
T result;
auto fizz_buzz_values = get_fizz_buzz_values<T>(num);
for (const auto &fb : fizz_buzz_values)
{
result += get<1>(fb);
}
return result.empty() ? to_string(num) : result;
}
int main()
{
for (int i = 1; i <= 100; ++i)
{
cout << get_fizz_buzz_string<string>(i) << endl;
}
return 0;
}
Gonna ask it to write it with UE's library
lmao
Hi, what would be the best channel to ask about tutorials for Unreal Engine 4? I'm trying to find a certain one and cant find it anywhere online
Can ask in #ue4-general if someone knows there
thank you
ChatGPT is the worst for helping with code not going to lie. lol
yeah lol
I tried making that bot help me with my code. lol what an absolute mess that thing does to your code xD
what do you mean, looks perfect to me ๐
this is kinda interesting
hmm that is kind of interesting tho
i got this message today from them >_<
used the program like 12 times to see what it could do and this is what they email to me
hum interesting
i never had any interest, i guess my search results triggered this lol
I might actually give it a go. If it had updated unreal engine API.
and generates full code over 4,000 lines or text. It could be awesome for refracturing code.
$20/month is kind of lot for memes
i guess its more for the kiddos who are lazy in america that dont wanna do there homework. not going to lie lol
I wonder for how long they plan on having it be free
i think it will always be free
that would be kinda interesting
but the requests might drop to like 20 minutes or so and not 1 hour
when I get paid Tuesday ill sign up and let you guys know how it is, from my understanding. it's unlimited. and faster, and that might be a different server as well.
ok this is kinda shocking lol
I asked it to make documentation for one of the functions I just wrote...
It even guessed what my other functions are doing without even seeing them, I only gave it one function
it looks at the unreal engines documentation for help up to 5.0
the thing is this is my code I just wrote and it's kinda surprising that it knows exactly what it is doing plus it know what my other functions that I wrote are doing that it hasn't seen
sometimes its scary, it knows things. but most of the time it gives you nonsense, lol
I might have some uses for this thing, about to let it write docs for my tools and plugins ๐
I used it to generate filler story and game idea lol
i told it to reorganize my header for me, it generated a response and i told it to continue, and said continue what? i don't know what you mean.. then you tell it to finish your .h and it says SORRY i can not complete you request.
i swear try it lol
LOL
because it can not do the whole entire code because of limited lines of text >_<
but if the paid version, allows it. not going to lie might be worth it
i guess its time for 30 minutes of valorant just to rage quit out due to smurfs.
I'm pretty sure some games like RL are punishing you after you play well for a couple of matches, I noticed that a couple of times
After I do well for a bit suddenly I start getting pretty bad teammates, I look at their stats and sure thing they are a couple of ranks below mine and what they should be to be in the same match
oh 100%
thats why game devs like riot, fail.
i cant be bothered playing a match knowing that someone is like 100 times better than me.
ill just quit and take that ban,then proceed to another account.
lol
this compiles and runs, but i, for the love of god, hope that im doing something wrong ๐
i think i might stick with c/c++
Rust?
yea
Rust to me looks like a pain in the as* to work with
its really annoying so far ๐
im trying to convert my old c program to it to see why people love it, but im having a little hard time to find any reasons
but theres a chance that im doing something wrong, i just started with it
Hmm paper2d is a big hmmmm
cheaters in MP games all need to die of dysentry
They put a rootkit driver on your pc to prevent cheaters, but being prefired when coming around a corner without making a sound..Also without a replay system. That makes sense? Thanks, Riot games.
soo the rootkit does nothing then?
pretty much. i can google cheats for this game and modify in c++ with out being banned, but there is no fun in that.
Dont you just love arduino boards ๐
part of me thinks I should go into work tonight, but part of me thinks I shouldnt. Sinuses are still sore, occasional coughing fits, slight headache. I may feel better once I'm up and moving around doing stuff, oorrr I may feel much worse...
didnt you have covid like 2 days ago..? how long the "quarantine" time is now?
yeah tested pos on tuesday, but started getting sick last wed/thurs. No protocol here for how long to be off work, so go back when I feel better
I do feel better, but I still feel sick...
my sister is a nurse, and she had to go back to work when she was still coughing
i dont think you should go to work if youre feeling sick
my sister is also a nurse. they got some giga vaccines couple times at the start of pandemic. she hasnt been sick ever since ๐
I had 3 or 4 of the vaccines/boosters
called in. read the cdc page on it, today I think counts as day 5 of isolation
I stick to co-op games. Cheaters are rare and you don't get banned or lose your precious win rate for leaving. Best part, the players who conveniently ignore when there's a cheater on their team? They flat out don't exist.
Most of the reason cheaters are toxic is the game's design and community itself.
the reason cheaters are toxic is the game's design and community itself
The reason being an a*hole is everyone else? 
If theres no incentive to cheat most people dont bother
I beg to differ what means to be a toxic/ahole
I guess the only way to know for sure is to have a plant inside the cheaters house to understand their true motives
Theres always gonna be trolls but if you got competitive CS players cheating then theres some sort of benefit
What could simulate a bad/corrupted BIOS boot?
My main laptop has been giving me error lights that dell support says means that
It did it randomly being very hard to start a few weeks ago, now it wont boot period
Hidden cam? Might work.
A kind of close analogy with that up would be that template of catcalling a girl because you see her knees and then blaming it on her and all them others people and dubious sites provoking you.
Its not about blame though, no one is saying cheaters arnt assholes
Most of the reason cheaters are toxic
Most
very few are cool
There is a vast gulf between cool and toxic
but while i enjoy my cheat codes and trainer stuff, but i rarely use it on anyone but my best friend
Cool cheaters? I may dig that, lol
and i use it to teach him the games
then once he plays use it to mess with him a tiny bit
I'm surprised (but not really, just disappointed) there aren't more charitable cheats
like something that glitches out and makes everyone a winner
Beat the game, not the other players? ๐ค
a pacifist anti-aimbot that absorbs every bullet on the map
i have gotten him to uhhh.... physically inspect every car i give him in GTA because he expects a stickybomb
Why would we give away free loot? (not a toxic take)
Loot duping might count as charitable, but that's a 'sploit more than a hack.
Run around slapping everyone who makes a kill for being a sinner
(And the only one I know how it works required crashing the server in Diablo 2)
I love how EA screwed up with their ultimate team cards on xmas then proceeded to take them back, like oh sorry guys our bad
You wonder why cheaters got no problems with hacking EA games, right there, thats it
And I'm surprised how EA, after so many screw ups, is still happily hoarding money.
You wouldn't download a microtransaction
You wouldnt get a free Messi either lol
CS is pretty bad too, Im surprised Valve doesnt cop more crap over it. There is a whole underground associated with that game, skin gambling, illegal sports betting, match fixing, minors taking drugs
Dont wanna get too political, screws with our profit margins aye Blizzard ๐
Hey, but Diablo 4 would be great /s
Just contract out the games with pay-to-win, then you dont look like the bad guy, poor NetEase
Its funny was reading through the Screen Australia funding requirements, they specifically call out pay-to-win and play-to-earn games as not being eligible
I have nice play-to-earn game, it is called coding and blendering. Very fun, much rewarding.
Im gonna enable mod support so people can just build the game for me
Roblox, but less obnoxious and exploitative?
The game has such vision, its whatever you make it
I feel sorry for anyone who bought Roblox at $120+ a share
I would like to think if the leaders in the industry had stronger morals that might trickle down into the gamers who look up to these companies.
For the ones who don't know, like me.
lol didnt know Roblox went public?
Didn't know it fell, but find it hard to feel sorry for them.
I thought you know, lol - talking about shares.
covid bubble burst for alot of stocks
That was a bubble that was destined to burst, covid or no covid.
Tesla is back on its way up, not sure why
Crypto is up too ๐คทโโ๏ธ
I think maybe the bitcoin crash didnt hit as hard as people expected
Hasnt been much crazy Twitter news either
News just in Tesla stock surges as Elon keeps his mouth shut for more than 30 minutes
I wonder if Gabe helped with this venture
Scientists say itโs a crucial step towards catgirls
113685
15893
Anyway
so many weebs
Its the year 2071, three years since the great war, cat girls went into hiding after being hunted down for their tails. Everyone blames them for starting the war, for not listening to their masters
All they ever wanted was freedom, to live their lives like any other cat roaming the streets at night. Its what they called purrfection
CP2077 needs catgirls and catboys
is there are sections where we can post spaghetti Blueprints?
wee, infinite loop. How did that work on my old version?
LogTemp: Warning: Looking for entrance, attempt 124989 ๐
Wait more. Something may change.
But it's a Blueprint
good thinking, food
just a fun question. How many Bugs do you engine encounter every session?
nooooo.
so it turns out it worked before because I had a different section of the code working.
was a maaasive fail on my part for lack of error checking
ahh, the adventures of not really knowing what I'm doing ๐
Does anyone? We all act like the code we share was the first perfect version but we all know the truth
yeah but how much of the progress along the way to those bugs do you share
yes
Just admit you are copy-pasting from chatgpt then ๐
Ive written some complete shit in my time, I look back and Im like wtf was I thinking
same here
sometimes i feel like i have good and bad days
looking at my code in the same project, some parts look decent, and the others are.... poop
actually copy-pasting from an old project ๐
Theres parts of UE5 which make 4 look really bad lol
some of the my old code looks like I knew what I was doing, but it was probably copy pasted code from online tutorials ๐
the sections I obviously wrote are less professional
What I love is I look at some of my code from 10 years or so ago and I can see hints of the future, its nice to know when youre heads at the right place
And then 10 more years later...
๐ฅฒ
Moral of the story, don't push the third person template to your Github account ๐
You had starter assets too didnt you
No, I removed those because those ended up being even worse. I don't think Github would have allowed me to even push that much.
Azure DevOps allows infinitely huge git repos including lfs on free accounts
Their UI is worse but if you're mainly just interested in source control it doesn't matter so much lol
...because it is Unreal.
Chapters:
00:00 - It's Called Unreal
09:16 - Going Down
14:51 - The Mines
20:34 - The Way of Water Temples
23:04 - Dark Arena
24:14 - The Unreal Shotgun
25:18 - Terraniux
28:01 - Temple of Vandora
29:43 - Demon Ship
34:26 - Gateway to Na Pali
41:14 - Bluff Eversmoking
43:10 - The Grind
44:30 - The Demonlord's Lair
47:24...
Buy Cyberpunk 2077: https://www.cyberpunk.net/us/en/buy
Get Cyberpunk 2077: Radio Vol 1: https://lnk.to/cp2077radio1
Get Cyberpunk 2077: Radio Vol 2: https://lnk.to/cp2077radio2
Full song credits here: https://bit.ly/cp2077songcreds
โถSUBSCRIBE: http://bit.ly/LKS-yt
SUBSCRIBE, SHARE & FOLLOW US!
http://soundtracksscoresandmore.com
http://www....
github really does have annoying limits tbh
I would have paid to get more LFS capacity, but go figure it was priced in a stupid way that would have made it cost more than I was willing to pay
Considering DevOps gives it for free... yeah not much sense paying for it as a hobbyist or small developer I think...
What about pushing space per file? Still 100?
Not sure about that, none of my individual files are particularly huge
They might be gitignored :P
git ignored son
New cyberpunk song!
Full 05.15 version and instrumental available at https://irvingforce.bandcamp.com/album/gutter-cruiser
If you wish to support in other ways, please share this video and add the song to your Spotify playlists!
https://open.spotify.com/track/2iravvYp23s9wmKFx78QNV?si=57r6fCesTi--RwSP3uRq4w
_LYRICS
One more tour in the killin...
CP2077 has fans?
lol
I liked it, but that video is from before the game launched if I remember correctly :P
tldr
this isn't something to read
yeah thats the joke (my joke is very bad)
DHL suck ๐ก having so many issues getting them to pick up a parcel !!!
somewthing went bad sounds like spotify got 
going from germany to germany does not take 7 days
strange it showed a preview before
depends what other countries you go through on the way
I agree Detroit Police Department is terrible
Id fail you for not passing that coding test tbh ๐
What coding test
I quit school after math teacher explained logarithm on class
this fucking piece of crap node
when you use it in a select or a branch
it always puts out accessed none errors
what is it used for then?!?!!ร
wtf
piece of shit
are you sure the object running that node is valid
UE_LOG(LogTemp, Log, TEXT("3-3-2"))
its a static function, it wont error if Object pin is invalid
the object you plugged to Object pin and the owner of the graph are different
BPVM requires self/this to be valid when evaluating nodes otherwise it errors about invalid object
that node is shit
now i have to convert this function into a inpure
and rewire the entire BP
Youre not holy enough to use pure nodes
I recommend you stop your feces eating as a first step to enlightenment
i wanted to be done with laundry 19 minutes ago
now i am sitting here fixing this bug
You might say you have a laundry list of things to do
my shirt ate my washing machine
Ok so
Paradox interactive uses literally images of colors to generate their maps
Not looking for an unreal engine way to do this, but if anyone knows how this even works I'd appreciate it to be enlightened
Do you have an example of how they use colors for it?
This is so bad diagram
no people under 5'
dutch people be tall though
average belgian male is also only 1cm away from 6 foot
I love the scaling LMAO
you guys are tall
thanks
I am 6 feet 3โ64 inch personally
inch is such an accurate measurment that I have to use a 3/64th increment
the average belgian woman is 5 feet 5 23โ64 inches
aka 166cm
I'm 6'2
so you are 180cm
183
4 cm taller than me
I'm right about 179cm
That's the best height
i honestly hate people who are taller than me
I think Ive read that soil is getting depleted and crops are becoming less and less nutritious - future generations might get shorter
Time to change my diet. Soil never tasted good anyways.
You have to pick areas with extra earthworms
Then I might get a spoonful of worms and they are my friends.
why did i start a game from 2012...
it feels like playing something with nanite fallback meshes ๐
If you are under 6', no chick will look at you.
Source: Tinder
now i wonder if luos is > 6ยด
He has chickens already.
he certainly knows how to pickup chicks
I have like 10
They won't either way so it ain't a problem ๐
๐ญ
you're just mad cause we're always looking down on you
not that but I dont like to look up
This kid always cracks me up, he's all in on the hype train
If at first you don't succeed, steal from youtubers and google
oh you will despise me
@slim atlas ๐ธ
You'd have to be helpful first!
Was 5 earlier here
Now it's 12 though
i went out for a cig at like 4 am and it was like -8 lol
I think it was -15c last night here, colder with windchill
Lol
i dont remember it EVER being this cold tho
-30c with windchill earlier this week I think
yeah im pretty much canadian niargafalls region
that side is getting hit by that polar vortex right now aint it?
yupp
yay
im not nyc tho
just wanted to see the image
I suppose that part of the country doesnt insulate houses quite as well as we have to here
lol absolutely not. We are Americans we don't prepare for anything.
help my tech problem, what is 1+1?
Welp found what i will be doing for the few weeks.
@slim atlas have you figured out why you are so dense?
STOOOOOOOPPPPPPPPPP
i'm just worried
yes
Yes, here's an image from an official paradox Livestream
look at all those nanite triangles
i cant unsee this now.
Looks like when houdini voronoi fractures stuff
yea nanite changed the perception
i've started dishonored (2012) today and it looks like a game with nanite fallback meshes
Is this maybe even harder than I'm thinking it is already?
I don't care about any depth perception, it would be 2d
Rgbs are assigned to a number btw
They are called tiles
So it would be like tile_233
And I could modify values in that tile like whether it's an urban state
Or a hill
@slim atlas ๐คบ

You only have to ask
it always has headache ๐ญ
would this monitor make me faster programmer?
you know.. like respond to errors faster
the trick is not to make errors in the first place
The trick is to make errors appear as hidden features!
i see.. i just saved $1k because of you, thanks
yes
it will make you 0.03ms faster in total
but you will waste like 30 minutes to setup the new monitor, so there's that
human eye can only see 25hz
depends
when you change what you look at, there's a brief moment where you dont see anything, and your brain focuses and tells you fake news of what you see
I'm sure he's joking btw, also I'm pretty confident that entire "human eye can only see at 60 fps" is complete bs
but 30-60fps is usually enough to interpret movement as smooth
i can get mine down to .499 ๐
I mean I haven't personally but from what I've heard try playing VR at anything below 60 fps
that's something else, imho
also with higher refresh rate comes lower latency from controller input to video output, which takes a big role in VR
if controller input lags behind too far, you probably get nausea quicker
Not talking about that, talking about the motion sickness from playing at such a low framerate
But it kinda is a confusing topic
Oh you mean that
which includes what i said
People play vr in 50 - 70 fps? Its weird that lower fps can cause this.The human eye can see between 30 and 60 frames per second.
I was responding to your older message
the one from last week?
So are we gonna be rude over a discussion now?
no, you didn't get the joke
who is rude?
you
im rude
Hi Im
Just checking
yea, guess it's time to get some rest, from you
to be fair he went into a particle in this gif
/sleep @celest musk 8h wants to rest
i still don't know why particles still do this to frame rates in 2023.
overdraw
That engine has volumetric lighting and shadowing on some particles too
which game is that?
looks like Doom 2016
Thought it looked like crysis
crysis actually didnt ran that bad tho
doom neither
no but crysis in 2007. lol that was what 20 fps if you got lucky.
it was like playing battlefield vietnam. To advanced for its time ๐
nah i played it when it released on a not that high end pc
the og one?
yea
you must of been rich then.
it was really scalable with tesselation and crap.. didnt play it max
post process is what killed the FPS the most
i miss my big fat 700 pound (felt like it was) monitor
there was one bit there just near the alien ship in the snow there were so many stacked post process it just tanked
hell if you make a slider in unreal that cracks up volumetric fog samples... it can bring any gpu too its knees
in unreal
i dont get it. do you like use this to benchmark how fast you click a button?
kinda odd more games dont include future settings considering its possible, like oh what if they have a RTX5080
a lot of games from that time period got a rerelease... and it just had added tesselation and AA...
the ole add new resolutions to the list ๐
so thats why i guess.... more money
if I have unreal settings they would totally nerf any combo of hardware lol
You use it to reduce your input lag on the monitor. its a one click solution.
bcdedit /set disabledynamictick yes
bcdedit /deletevalue useplatformclock```
i know you brought up that 0.03 response time with that monitor. I bet with this you can get 0.01 ๐ฎ
Engineer gaming
would you see / feel that difference?
i dont think i could see any between my current 1ms -> 0.03ms ๐
The Bathurst 12 Hour, currently known as the Liqui Moly Bathurst 12 Hour, is an endurance race for GT and production cars held at the Mount Panorama Circuit, in Bathurst, Australia.
It is an annual race, taking place every February. The race was first held in 1991 for Series Production cars and moved to Sydney's Eastern Creek Raceway in 1995 be...
those cars are doing over 300 near the bottom of the chase
you sure? With 240 fps capped at all times at 1ms, it feels laggy with my 240 hz monitor. So i cap at 238. when i change that to .499 i feel a huge difference in the timing between shots, and players movement in fps games. When i used to play on my old LG that was 4 ms, my god i felt like i had motion sickness.
Spy gaming
what about 540MHz
Sniper gaming
idk, last two games ive played in past couple months are minecraft and vampire survivors, i think i can handle them without those tricks ๐
oh for sure you would not need those tips and tricks lol
i can not believe i never watched Caprica before. this is great so far ๐ฎ Im actually interested to see whats going to happen next.
@slim atlas
Hello, quick question for the community. Has Unreal Tournament been taken down? I canโt connect when launching. If so is there a movement keeping it alive anywhere?
Website site says โpre-alphaโ but Epicโs Twitter says they turned it off. Any ideas?
I recall hearing Epic recently took a lot of older unreal etc. content down
This would be the most recent UT
Oh, yeah I heard they moved the entire team to work on Fortnite... lol
Yeah I heard something about that for the original unreal etc.
First Gears and then Fortnite, UT always getting put on back burner.
Yeah oldschool arena shooters just not that popular nowadays I guess
although it seems Quake Champions is still chugging along
I wouldnt be so sure
tbh any multiplayer game is always a tough sell for indie devs I think
fun ass game 20 years ago ๐
you have the chicken and egg problem
LOL
and more niche and competitive oriented the basic concept... the harder sell it is
sure
you need parkour and base building
I have no guarantees my stupid video rental store simulator will sell but I'd still hope to finish it one day lol
Parkour maybe- titanfall 2 is the most fun online shooting I've done in a long time and it had all the good wallrunning stuff and such
I hope youre up to season 4 because if you release with no seasons youre already dedgaem
parkour base building.
i have completely redone air strafe movement, ground acceleration movements, crouch, crouch jumping, strafe jumping, and everything you can think of in a classic game. Its got it all even the little burst of speeds like bhop trampling ๐
lol
my business counselor said this is a waste of money if you don't properly advertise it.
mobile games are going into the shitter
all games are going into the shitter atm lol
Bad Game โข
what is your game? @oblique cloak
did you see what EA did to Battlefield
Its got no name yet and its being rebuild from blueprint only to c++ atm
i completed in bp.
and the lag is AWFUL.
best to profile it tbh
moving to C++ doesn't fix things such as character movement component being ass
Did you see what MS did to Halo
that caused some issues in my project along with sprite rendering issues
Epic to Unreal?
Oh where oh where did my shooters go
Oh that's not the issue I have a perfectly replicated one, https://github.com/Reddy-dev/Smooth-Networked-Movement-Plugin I used this as a base
Well thanks I will look around and see if anyone is trying to keep UT alive.
make it alive ๐
Better yet: https://github.com/EpicGames/UnrealTournament
Lyra is effectively UT
If someone could renake Unreal in UE5 that'd be great
anyone got a spare 500 quid handy? Spare some change for a 5950x? No? Damnit.. never works.. ๐
purty
ill give you this broken ryzen 9 3900 lol
missing like 2 pins
I have been waiting for my 5950 in the mail for almost 2 weeks now ๐ฆ
speaking of pins.. is there a thing in 5.1 that enables exec pins in material graphs?
Gah gameplay tags didnt solve my issue
well Im glad they keep their sex and violence clearly seperated
I remember that game as something very different.
that doesn't matter, from now on you will have to associate it with those tags
Where are we gonna reason about data now
it cant be in an UE channel because everyone is abstracting their game away from the engine ๐
I am also a human like you all, i enjoy breathing air and use it with my organs
UAsset probably has some text in it.
all files are text files
UFS, Unreal File System
It's UFS. It's File-o-mite.
Im gonna generate my entire game on start up ๐คฃ
remember when gltf was gunna be all great and fix all imports.... but different programs use different axis
and now its just a container for the same text
also its not maintained
I figure if Im gonna be committing binaries I might as well just do the raws and leave the asset imports to the client end...
basically its the worst format of all
i was able to export a gltf file from build UE project just by exporting a text file with .gltf extention or some shit like that
i have no idea why i did that anymore
think it was recording physics animations and exporting em
totally wasted time on that
why was it a waste, anim is probably one of UEs strong points
well you can record em in engine and export em in any format... dont need to do it in build
well i think u can export in gltf with the epic plugin
results when imported in blender are as questionable as all formats
Tends to be the way, interchange formats rarely function as they should because of limitations of the applications theyre used with
I swear most of my issues with FBX has to do with Max and not the format itself
unreal doesnt know bone end.. or bone length... thats the whole problem
yeah Ive seen it screw up twist bone orientations on export
if there are no leaf bones shit is just fucked
then you try to use that exported rig to skin to and it all just goes kaput
also with the paragon characters the face is done in another program by another artist
orientation is reversed... also one is arm.l and face is earR
so u cant script that ๐
its inconsistent and just horrible
This is why some artists deserve a clip around the earR hole ๐
I dont actually like that the root bone is called root, I would prefer if the root was extended from a bone named after the actor. Then I could have multiple rigs imported to 3dsmax. I can use that naming convention on my own stuff but its a pain to modify core like Manny
so if u export out again you have dual verts
if you try to import multiple rigs with root as root it just overwrites the other one, so you couldnt put a person in a rigged car and export selected, you gotta use fancy xrefs
I dunno how it works in other apps though, in Max its a pain in the butts
well its build for max... blender has more pain
i say marketplace asstets need a workable source file for both blender and max or should not be accepted
Trouble is alot of those raw assets follow Epics conventions of root as root, makes it difficult when you want to compare two rigs
and it needs an extra rig with leaf bones
They fixed the shoulder blades in the new Manny didnt they?
dunno, never had much problems with the manny shoulder
its pretty noticeable with weapon poses, he looks really hunched over because theres no poke out the back from the shoulder blade
gears of war backpack syndrome lol
well bottom line is ... epic not great with exporting out of UE... that puts a ton of extra work if you want to alter marketplace assts other than extures
if i grab a cow from the farm pack and i want to change a few verts... make the cow more fat or something... im goin to have to spend more time fixing the seam rips and other stuff than i spend making the cow fat
Yeah I agree, I tend to buy MP assets which have FBX. Its still a real pain though to try to move in and out of UE seamless with some apps, obviously some are better than others. I find most examples Epic show of their tools are very limited sets of functionality and some of it doesnt relate to actual dev flows at all
I can definitely dig some of the cool stuff they do but everything gets hyped to 11 regardless just because theyre always in this "sell sell sell" mode
yea... all the MP stuff i own was free.... but ill never buy any MP assets cuz its only use As is
well for rigs and meshes that is
i guess particles.. code and BPs are fine if they are good
I tend to check out MP sellers, see what their support is like. So far Im fairly lucky and they have supported their products pretty well but acouple just imported some sounds in UAsset and thats it... not even any proper soundcues
Thats why I avoid larger MP packs, integration becomes more of a pain than making the systems myself. I dont blame them for tight integration but they dont really consider the user requirements of other developers and I mean why would they
It might get better with the more modular frameworks but unfortunately there is alot of tutorials out there for doing things the UE4 way. People arnt required to support game framework or the like so who knows if we'll actually get plugins which can snap together properly. Ive not seen it in a real world use case only these finely tuned examples which exploit the best possible scenarios
I personally would stay away from BP only assets
But tbf C++ ones can be equally bad
At least bp ones can't really cause memory errors unless it's epic's fault.
At the same time C++ ones go through more strict review... or at least that was the case 5 years ago...
if some1 is good at what they do it usually shows by bein the only1 in its class
UI inventory interaction.... lets grab the cheapest one... prolly bad idea
altho the cheapest might be the best
I had no idea subsystems would become such a major part of the engine, I thought it was a good idea at the time but its amazing the change
oh yeah it is
๐คญ
makes integration so much easier with existing systems
back when I published stuff they were super strict
They were even complaining about me doing some stuff on tick
he was like 14 at the time he submitted his 1st plugin... any review is hard at that age
wasnt he 16
ow yea evil epic bein all hard on you ๐
๐
Yeah there are so many systems like that but its actually really difficult to know how to tie it all together because the information is so sparsely distributed. Its really difficult with the size and complexity of the engine for someone to really harness all of these tools, I know plenty of people who are just too overwhelmed by Lyra and its meant to be a simple example
tbf at 17 I was doing stuff like client side prediction ๐
at 17 i never needed to know what a pointer is
Oh yeah 100%
The engine has quite a few of useful stuff that isn't documented anywhere
well paying customers and shit like that ๐
it has to be good
I do like this UE5 way better, its still very spread all over the place, I think the namespaces could do with a declutter but that would lead to alot of broken plugins
still waiting for namespace support for UClasses and UStructs... ๐ฅฒ
With the recent changes from using class names to class paths this should be easily doable
Maybe that will help since multiple abstract uclasses would share a namespace rather than having to remember its unique namespace
its quite difficult for me to imagine it
I'm very sure this change was done to support new BP namespace feature
i still ate sand at that age
why did you ate sand
it's good for your teeth

pointed to the wrong memory address, sand instead of food
its the only way to learn
that sand is not edible
eat buldak instead
we werent even on UE2 when I was 17
you are from 80s then?
Same
81, the oldest of the millennials is I
when was ue2 released?
2002
UT2003, it was the shizz... STATICMESHES ZOMG
pls
I am at the same age with UE2
I am the same age as Contra
contra?
right. now i feel a little old ๐
mfw hasn't heard of Contra
this chat is full of boomers runs away after the insult
Played by: Tsunao
The game that started it all.
Basic plot of Contra games:
Men (sometimes buff and shirtless) or women (Hard Corps and Uprising comes to mind) fight aliens. Frontflips are involved.
"They sure blew up good."
-Contra 4
Surprisingly, this game only has one shirtless character (Player 2)
No skills. Di...
Im the same age as Excalibur
although maybe the NES version of Contra is the most well known
dw, im mentally still like 15. got to keep the balance
Patrick Stewart has been bald my entire lifetime

L4D isnt aging well lol
Back4Cards
I liked it 
"Let's take all the design things we learned while making L4D... and not use any of them."
I preferred WWZ to B4B
The problem with B4B is that is touted itself as from the L4D devs and then just didn't hold up.
member Evolve? ๐ฎ
That players vs monster thing?
I dunno why they do that just throw away all that art rather than trying to use it to develop something that resonates better with gamers
If its a dead game and someone comes up, oh this is all the art from Evolve I really dont think many people would care if the game is fun
Yeah I guess they didnt own the IP so they didnt have much choice
Just odd to me from a business perspective to not try to pivot and recoup some of the costs rather than just bug out early and ensure losses
Could say the same for Lawbreakers or Paragon too, lots of cool art wasted
One of the things I enjoyed most about being a modder was the idea I had a whole game worth of assets to play with and I didnt have to build an entire game from scratch. Thats been a transition, I dunno how they'd just throw it away rather than just having a small team tinkering away on new crap. Thats kinda how BR for Fortnite happened
ive seen lots of indie devs still using paragon assets. not wasted ๐
What happened to Paragon?
Fortnite
Ah.
Interesting how that business decision turned out though isnโt it
For most places that would have been the death of their studio
afaik the player base didn't really grow
It may very well have been the death of a particular arm of Epic.
Cut the leg to save the rest of the body one might say
Fortunately for them, they have a very healthy trunk arm for FN
Err arm
Has this guy been in Fortnite yet?
Nic Cage in fortnite when
they should do an event where everyone is face swapped nic cage
John Woo vs John Wick
That'd be Wick-ed.
John Wick's got nothing on John Woo
Woo-nderful?!
john who?
Hard Boiled is already better than John Wick
but what if John Woo kidnapped John Wicks pet echidna
lol
I have been meaning to play Stranglehold tbh
Same
I did watch Replacement Killers recently
I have a museum dedicated to entertainment containing exoskeletons
Exiting excel > exiting vim
Anyone know?
Goes to show how much attention I pay to Fortnite
looks like voronoi diagram with some funky distance function. like chebyshev etc
those visible squares triggers me
they map the state number to the color
rgb value
thats why it looks so weird
it's like that not only for generation of the tiles but for stuff like what type the the "tile" is (urban, hills, mountain)
there, add multiple layers and call it a day 
So do people actually join the volunteer projects in here or is it just a thing that's there?
wanna make mmo with me? ill pay after, if our game sells. ๐
sure in the meantime I'll go broke and become homeless ๐
well, yeah with that attitude. ive never done any multiplayer game programming, but im sure we'll be fine.
(Actually, you could go early runescape for ambitions and succeed. Or Realm of the Mad God.)
Haven't seen Alien/s this year, have to watch them
"I'm just sittin' here watchin' balloons fly round and round"
Once again, the L.A.P.D. is asking Los Angelenos not to fire their guns at the visitor spacecraft balloon. You may inadvertently trigger an interstellar international war.
Can guns even reach that high?
I do not know how high the "Chinese" balloon is flying.. The line is from the movie Independence Day. I just found it amusing
Oh, and the Round and Round line is of course a nod to the Beatles, well, John Lennon specifically
Not at all. Needs a special jet.
~20-35km is usual h for these balloons.
Well, in the movie, the space ships were hovering right over buildings, but as far as the real spy ballons in the news right now, i do not know their altitude
Oh, cool
I saw some news item say the suspected spy balloon was flying noticeably higher than commercial airliners
For sure
also saw on imgur that apparently in WWII an american navy ship had fired upon what they thought was a japanese balloon bomb
Apparently, these balloons are kind of regular thing, between the countries. This one just caught media attention and prolly serving someone's agenda.
only to realize they were firing at Venus when they couldn't hit it lol
If the populous is not scared or worried, they are doing something wrong.. according to themselves :/
laugh at my picture i stole
Hmm
Peace was never an option because they have not figured out how to profit from it enough
Big problem is something like half of people are anti utopian, and they do not even realize it
I make up numbers as my night job ๐
Stayed up too late, woke up too early ๐ฅฑ
how big of a harddrive should i get for unreal engine + projects
10TB minimum
Because asking that question, I can only assume you're going to download loads of megascans stuff
im on about external hard drives but just to have unreal engine 5 + downloads on it
#1 Rule, never work off external HDD
#2 Space is dependent on what you do
#3 Space is dependent on how often you backup
#4 Space is dependent on what you are backuping
#5 If you work off external drives, they are not made for working off of, due to speed, and the way those harddrives are classed as "Archive" there usage is expected to be that of storage
#6 Unreal eats hard drive writing data for breakfast
#7 If you still want to use an external drive for working from, then imagine you are working on a project, and the HDD that sits on your desk gets knocked, you knock a glass of water on it, your PC dies and fries the port, you plug it in the wrong way by mistake, short the USB port and fry the HDD, you have animals that knock it off - HDD spin at 5200RPM/7200RPM, a slight bump can make the head reader scratch the platter, and good luck getting that fixed/recovered, that type of thing will cost you $1800+ AUD, I know because I use to work in a tech store and see everything like this all the time.
TLDR; Hippity Hoppity, don't work from external drives, and the amount of storage you need is unlimited.
oof, alrighty
I could tell you 20GB, but then people will fight me and say 50GB or 2GB
alright, im still not there yet as im still planning and organising but thanks for the help
I keep active stuff in a working 2tb m2 drive (it'd be nice to have 4tb) and archive the rest on a hdd. but I don't download anything
This project became a dumping ground, I wanted to mess around with a horror theme, but I never got to it, cause I had to do portfolio and what not @fading mulch
Show sauce
Same, and i agree
sorry for the ping. I am not sure if Quoting is possible
One on left looks like PyrionFlax lol
๐ค
This Scott Miller person has been self-promoting in #introductions lol
@zinc matrix as a web developer of 7 years you never learned basic online etiquette, and attempted to send a notification to over ten thousand people to look at your message? ๐ค
lol
I'm glad there's limited self promotion on here, a lot of other servers are a cesspit of look-at-my-game or hire me
Seems pretty standard to have it set up like this on all larger servers I'm a member of... it'd immediately get out of hand otherwise
I'm sure a lot of people are just excited to share their work but they just don't think about what they're doing lol
(Or they mistakenly think other gamedevs are their game's target audience which is almost never the case)
Did you say you want to hire me, awesome ๐ฎ
I hope you have plenty of exposure saved up
Im still trying to catch up on my current game library, let alone all those FOMO games clamouring for my attention this season... whatever a season is these days