Guild icon
DDraceNetwork
DDraceNetwork / questions
For newcomers to ask questions and get help. Also check https://wiki.ddnet.org/wiki/FAQ
Between 2023-04-14 00:00:00Z and 2023-04-15 00:00:00Z
Avatar
It’s not possible
Avatar
(Intercepter) How does this work? after doing the drag and putting them against wall, they fall into this pit and after hitting the deep & solo tile, they are able to phase through the single block at the bottom and continute onward, despite it showing as a solid block which you cant phase through (you dont even need any speed to go past it in this map)
05:20
and its in entities as well
05:20
so hidden/fake tiles should show
Avatar
Avatar
Broso56
(Intercepter) How does this work? after doing the drag and putting them against wall, they fall into this pit and after hitting the deep & solo tile, they are able to phase through the single block at the bottom and continute onward, despite it showing as a solid block which you cant phase through (you dont even need any speed to go past it in this map)
i thought i tried it before hitting the deep tile and it didnt work but apparently it does even after killing, so its not a switch or anything i guess
Avatar
Avatar
Broso56
(Intercepter) How does this work? after doing the drag and putting them against wall, they fall into this pit and after hitting the deep & solo tile, they are able to phase through the single block at the bottom and continute onward, despite it showing as a solid block which you cant phase through (you dont even need any speed to go past it in this map)
no one else sees the tile at the bottom, it seems to be a bug (edited)
Avatar
jao's hairy kebab 2023-04-14 07:36:25Z
its in tele layer
07:36
delete it and u will see the stopper
Avatar
jao's hairy kebab 2023-04-14 08:02:35Z
theres a tile with index 0 that is xflipped and yflipped
Avatar
did you recently get a tee skin that was 4k resolution
Avatar
Original message was deleted or could not be loaded.
There are numerous graphics (gfx) related bugs users encountered. Not all are fixable, but might have workarounds. This site is there to collect these to help those encountering the same issues.
Avatar
Original message was deleted or could not be loaded.
Yeah and what exactly from the wiki did u test?
08:35
Is Ur GPU amd?
08:36
  • Update all drivers, and the operating system to latest version. On Windows go in the Windows safe mode and uninstall the graphics driver using DDU (not open source, please replace it with a similar tool) or similar tools and then install the latest driver from the manufacturer's website. This can fix more problems than you could guess
  • For Windows: restart Windows using the "Restart" button (not shutdown). This will clear some caches Doing these two points correctly fixes pretty much all stuff
08:36
And do them correctly even if it costs 10 minutes
08:37
Else try a clean config directory(new ddnet install).. that should make sure it's not a config or custom assets
Avatar
Original message was deleted or could not be loaded.
Mh so Intel
08:38
Laptop?
08:38
Try to set power level to high performance
08:40
I mean there must have been a change if it dropped by 1000 fps. Either u changed a config. Or updated PC or smth like that
08:41
What Linux distro
08:41
And u are certain there was no updates u executed?
08:42
For example Does your computer maybe offer a second graphics card that is not used anymore
08:43
In settings-> graphics u can not select a graphics card?
Avatar
Avatar
Jupstar ✪
And u are certain there was no updates u executed?
^
08:45
Os
08:45
Ok
08:46
So only 3 things i CAn imagine: Try clean ddnet config Restart PC if u haven't Install ddnet from flathub(they install different Mesa drivers)
Avatar
Original message was deleted or could not be loaded.
how were you ever getting 1000fps to begin with on an integrated GPU of such an old CPU
Avatar
Low resolution, entities, disable useless HUD elements
09:02
But yeah Vulkan should not work on them lel
09:02
U baited ne
09:02
Me
Avatar
Avatar
Jupstar ✪
Low resolution, entities, disable useless HUD elements
still only get 2500-3000 on several years newer cpu with discrete graphics
Avatar
Avatar
Ewan
still only get 2500-3000 on several years newer cpu with discrete graphics
On Linux?
09:03
I get like 15k fps
Avatar
2k
Avatar
i am at 4
09:03
windowes
09:03
directx backend when
Avatar
Ryzen 3800x, Rx 6900xt, Linux with Wayland<--
Avatar
Avatar
Ewan
windowes
Ok windows the problem is not the graphics drivers
Avatar
who said anything about drivers
Avatar
It's thread scheduling and system calls that are by design slower than linux
Avatar
Avatar
Ewan
who said anything about drivers
DirectX won't work better
09:04
Than Vulkan
09:05
It will be basically the same fps wise
Avatar
maybe not as a drop in backend
09:05
there are optimizations to utilize on dx that you can’t on cross platform graphics libraries
09:05
but it would be pointless
09:05
just a fun thought
Avatar
Avatar
Ewan
there are optimizations to utilize on dx that you can’t on cross platform graphics libraries
Well what are they?
09:06
DX works on Linux through Vulkan too
09:06
Dx12 and Vulkan are very similar API wise
09:07
E.g. red dead redemption 2 has both backends and they perform basically the same
09:08
Vulkan also provides Nvidia only extensions etc. So it's only platform independent with it's core features
Avatar
Original message was deleted or could not be loaded.
Well now that Ewan pointed out that Ur GPU is so old, im very skeptical tbh
09:11
U defs can't use Vulkan with it. It will maximal render on your cpu if u installed a software renderer
09:13
glxinfo | grep string
Avatar
use gentoo with march native compiled kernel, march native compiled drivers, march native compiled mesa, march native compiled ddnet, o3
Avatar
vulkaninfo| grep driver
Avatar
Avatar
Ryozuki
use gentoo with march native compiled kernel, march native compiled drivers, march native compiled mesa, march native compiled ddnet, o3
Ofast for ddnet 😉
Avatar
didnt try ofast yet
Avatar
And lto
Avatar
@Jupstar ✪ we need to enable PGO and BOLT
09:15
The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Note: the repository does not accept github pull requests at this moment. Please submit your patches at...
Avatar
Then resolution to minimum. Minimized graphics and gg
Avatar
rust uses bolt for the binaries on linux
09:16
the compiler i mean
Avatar
Avatar
Ryozuki
@Jupstar ✪ we need to enable PGO and BOLT
Ez
Avatar
Avatar
Ryozuki
rust uses bolt for the binaries on linux
Default?
Avatar
the binaries shipped
09:16
aka rustc
09:16
is optimized with bolt
Avatar
I c
Avatar
BOLT operates on X86-64 and AArch64 ELF binaries. At the minimum, the binaries should have an unstripped symbol table, and, to get maximum performance gains, they should be linked with relocations (--emit-relocs or -q linker flag).
>
BOLT disassembles functions and reconstructs the control flow graph (CFG) before it runs optimizations. Since this is a nontrivial task, especially when indirect branches are present, we rely on certain heuristics to accomplish it. These heuristics have been tested on a code generated with Clang and GCC compilers. The main requirement for C/C++ code is not to rely on code layout properties, such as function pointer deltas. Assembly code can be processed too. Requirements for it include a clear separation of code and data, with data objects being placed into data sections/segments. If indirect jumps are used for intra-function control transfer (e.g., jump tables), the code patterns should be matching those generated by Clang/GCC.
Avatar
Cool cool
Avatar
Original message was deleted or could not be loaded.
Ah nice so rather new PC u got there
09:18
So I got double baited
09:18
BASEDDEPT
Avatar
Original message was deleted or could not be loaded.
But anyway I don't see how it's a bug in ddnet. Somehow u must have changed smth. I cannot imagine otherwise. Did u try a clean config?
Avatar
Avatar
Ryozuki
Click to see attachment 🖼️
Closed source gang
Avatar
Blame amd for not delivering
Avatar
soon tm
Avatar
Since 15 years xd
Avatar
im using nvidia cuz i got it for free from my sister xd
Avatar
Yeah.. u lucker
Avatar
soon ill inherit the 4090
Avatar
Rich family
Avatar
when a new gpu releases
09:20
@Jupstar ✪ not rich family
Avatar
Xd
Avatar
she got rich selling hentai
Avatar
Lmao
Avatar
10k a month salary kek
Avatar
Nani
Avatar
@Jupstar ✪ above 2000 patreons
09:22
ye its insane
Avatar
Man
Avatar
thats life
Avatar
your sister lol
Avatar
And we sell our souls for coding hard
09:22
Rip
09:22
xd
Avatar
what a world
Avatar
i mean we could achieve the same
09:22
by doing some saas
09:22
we just lazy
Avatar
Tru xd
Avatar
so much more setup
09:23
than patreon
Avatar
she has been drawing since 5y old
09:23
dont deny the effort, she works like 10h a day xd
Avatar
no doubt she is skilled
Avatar
Epic
Avatar
ok maybe not 10h now
09:23
but lot
Avatar
Well Idc coding best
09:23
rust best*
Avatar
Avatar
Jupstar ✪
Well Idc coding best
but you could be drawing tentacle hentai and making much more, think about it
Avatar
Avatar
Learath2
but you could be drawing tentacle hentai and making much more, think about it
Xdd. I'd first of all need such a weird mind to even imagine it xd
Avatar
what is "abuse 12400"?
Avatar
Not a ddnet server thing. Maybe KoG or noby's fng server?
Avatar
I have an issue where when I try joining a ddrace server the message "Disconnected map 'downloadedmaps/(name of that specific map) 2_9ef182870d7746d38325902b12b5 11abad2b08312f0836bec0b7f0de31487743.map'" pops up and it doesn't let me join could anyone help me fix this
Avatar
try to go to %appdata%\downloadedmaps and delete the mapfiles with the name of that map (and extra letters at the end, for example Grandma_5434randomstuff.map)
Avatar
thank you will try
Avatar
how to make sure i have strong hook on my dummy after kill in copy mode?
Avatar
Kill your dummy again?
17:49
Or maybe copy already gives you strong cause you kill first? idk
Avatar
Avatar
Devinci
Or maybe copy already gives you strong cause you kill first? idk
That should always be the case, yes.
Avatar
Avatar
BuNiNja
what is "abuse 12400"?
@noby ^
Avatar
Avatar
BuNiNja
what is "abuse 12400"?
vpn detection thing, but i think it might be false. what server? (edited)
Avatar
᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼ 2023-04-14 22:26:05Z
how to turn off hook volume
Avatar
Avatar
᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼
how to turn off hook volume
you cant turn off the sound of hook specifically so you would need to remove your hook sound file
Exported 140 message(s)