a Semicolon
/warn buy them
I'm not buying man I'm trying to code one can't you see?
Pavel
I'm not buying man I'm trying to code one can't you see?
You haven't asked or said anything related to code yet, how we can see it?
a Semicolon
You haven't asked or said anything related to code yet, how we can see it?
I'm asking suggestions from where should I start look at the first message don't just jump in between of something
Anonymous
a Semicolon
Look up MVG on youtube
Can you give me the link if possible?
a Semicolon
You don't code one by hacking other one
You can't understand it bro please leave it
a Semicolon
if (Physics_Raycast(NULL, camera, targetDir, &hit, Vector3::Distance(camera, target))) { void *hitObject = GetGameObject(hit.collider); void *enemyObject = GetGameObject(PlayerCollider(EnemyPlayer)); int layer = GetLayerOb(hitObject); int layerHead = GetLayerOb(enemyObject); Alayer = layer; Blayer = hit.m_FaceID; if (layer == 28 && layerHead == 13) { return true; } else { return false; } } else { return false; } } if (UseVisible) { if (TargetVisible(local_player, enemy_player))
Vlad
Can you give me the link if possible?
https://www.youtube.com/watch?v=S_Tz0YpDa6o
Vlad
https://www.youtube.com/watch?v=S_Tz0YpDa6o
He bypasses the drm through debugger at the end of the video
a Semicolon
a Semicolon
klimi
a Semicolon
May be you have heard of iosgods and plantinmods I'm trying to do something like that
Vlad
Bro I need for Mobile Gaming
So you're impatient school boy arentcha?
a Semicolon
So you're impatient school boy arentcha?
I'm not a school boy but I have limited time as I have other works to do also bro
Vlad
I'm not a school boy but I have limited time as I have other works to do also bro
You're typical "I gotta hack shit" folk. No offense. You have like zero interest in actual knowledge
a Semicolon
You're typical "I gotta hack shit" folk. No offense. You have like zero interest in actual knowledge
Bro that's what I'm asking where should I start for actual knowledge?
a Semicolon
Vivek singh
What is allowed
Vivek singh
Here
Vivek singh
I'm new here pls someone help me
Anonymous
What is allowed
See the pinned rules
Gustavo
You're getting master's at MIPT?
Bachelor, I'm in first course
Anonymous
Bachelor, I'm in first course
Good for you! MIPT is a great choice but a hard one to study though Good luck!
Gustavo
Thanks!
Gustavo
But sometimes I feel like there is too much math and not much time to focus on programming
klimi
But sometimes I feel like there is too much math and not much time to focus on programming
every good informatics school is hard; it is hard so it teaches a lot; you have to keep going; there is no looking back
NIÑO FULTON
please teach me senpai
Nomid Íkorni-Sciurus
Hello, I have an issue with LLVM
Nomid Íkorni-Sciurus
CMake Warning at cmake/modules/GetHostTriple.cmake:28 (message): unable to determine host target triple Call Stack (most recent call first): cmake/config-ix.cmake:404 (get_host_triple) CMakeLists.txt:673 (include) CMake Error at cmake/config-ix.cmake:458 (message): Unknown architecture x86_64-pc-windows-msvc Call Stack (most recent call first): CMakeLists.txt:673 (include)
Nomid Íkorni-Sciurus
I'm trying to build LLVM on Windows to obtain lldb-mi but it fails with this weird error.
Nomid Íkorni-Sciurus
how may I solve this ?
Nomid Íkorni-Sciurus
Nevermind, seems like there is a problem with the ninja generator. selecting MSVC as generator worked fine.
Pavel
If I want to refer to a range of elements of a vector in my function and I have access to C++20, can I use std::ranges::view for that? Or I should use something else? I want to compare two parts of vectors and ensure that they are the same if one of them is rotated.
Pavel
std::span?
ah, it seem to work, but if I want to send the whole vector it doesn't implicitly convert to span :(
Pavel
ah, it seem to work, but if I want to send the whole vector it doesn't implicitly convert to span :(
OK, if I specify span<const MyType> for vector<MyType> then it works as expected. Thanks Danya
Starboard
/get ide
Pavel
example?
Something like this https://wandbox.org/permlink/ISmg13FLcOSTgJPQ
Serhat
hi, i have a question. now im gonna write a program that will take an integer input from the user and will assign it to an integer variable. how would i know if the user input character?
Serhat
int num; scanf("%d",&num); lets say user inputted 'a' how can i understand that?
Vlad
Read this code snippet that I dropped here a while back https://godbolt.org/z/3GxGcG
Serhat
so i can say if(scanf("%d",&num) == 1) or smth like that?
Sandro
I want use memset_s() instead of memset(), but also if I #define STDC_WANT_LIB_EXT1 1 before including string.h the compiler say undefined reference to 'memset_s'. My IDE is Qt Creator, I checked the string.h header but here is no definition of memset_s()....why?
Vitalii
sorry, how should I overload operator "+"? like this: Point& Point::operator+(const Point& other) or this: Point Point::operator+(const Point& other) And what's the difference?
Vitalii
Making or not making a copy obviously
Oh, thanks, so in case of "+" I can just write without &
Pavel
Oh, thanks, so in case of "+" I can just write without &
If you want it to be copied additionally, yes But I would write it with &
Pavel
Is there a better way to merge two vectors into one (leaving original vectors untouched) in C++20?
Pavel
I'm digging into ranges, but the docs are soo complex, and it seems that docs from ranges v3 are obsolete partially
Pavel
Better than what?
Better than C++17 way of creating a vector, reserve, then std::copy twice into it
Vlad
At least your intention is pretty clear
Vlad
Cleverness for the sake of cleverness?
Pavel
What's bad about that lmao
A lot of code for such a simple task
Pavel
Three lines?)
4 at least (if not split std::copy into more lines, because they are long)
Pavel
Is there a better way to merge two vectors into one (leaving original vectors untouched) in C++20?
Lol, turned out I already have a templated function for that in my project utils. Haven't found anything working in ranges unfortunately, seems like there is view::concat in range-v3 but couldn't find it in the C++20 ranges. Bummer
Anonymous
Hello
AB💞
/get
Lim
/get cbook
Anonymous
i need help anyone can help me
klimi
Gulnar
Hello everyone, I have written a program in C that it calculates the investment the capital via . I enter initial capital, interest rate and investment period and it gives me final investment . But I wanna it gives me a capital for each year. For example if I enter period is 4 it should give me it for first year, then 2 then 3 and 4 one by one. How can I display it? Can anyone help me?