Guild icon
DDraceNetwork
Development / developer
Development discussion. Logged to https://ddnet.org/irclogs/ Connected with DDNet's IRC channel, Matrix room and GitHub repositories — IRC: #ddnet on Quakenet | Matrix: #ddnet-developer:matrix.org GitHub: https://github.com/ddnet
Between 2024-09-18 00:00 and 2024-09-19 00:00
Avatar
@ChillerDragon, I ran the tests locally, not looking at the network data, just stepping through the code. ctrl-c leads to CtrlClose being sent and in case of being kicked, no control message is being sent.
00:27
hughly confused, where that extra message might come from? your ddnet client disconnecting from the server?
00:27
highly*
Avatar
ws-client BOT 2024-09-18 01:15
<ChillerDragon> i tried kick and full server and saw the packet in tcpdump
Avatar
my guess, that's coming frm somewhere else 😦
01:18
can you try with th current master state
01:18
the
01:18
master branch
01:19
are you staying connected to the server with your ddnet client ?
01:20
cannot get the libtw2 dissector plugin running on macOS
01:20
...
01:22
hm, progress
01:22
doesn't like arm64
Avatar
ws-client BOT 2024-09-18 01:23
<ChillerDragon> you can also just use raw tcpdump or wireshark
01:23
<ChillerDragon> its plaintext anyways if you have a reason
01:24
<ChillerDragon> nah i gotta debug my bugs now -.-
Avatar
dumb question: do you close your ddnet client that you use for kicking the go client while still capturing the network?
01:27
I see the comment, clearly something else
01:29
I know the problem
01:29
the example needs to be updated
Avatar
updated examples
Avatar
GitHub BOT 2024-09-18 02:41
Closed https://github.com/ddnet-insta/ddnet-insta/issues/127

Checklist

  • [x] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with [ASan+UBSan or valgr...
Avatar
ws-client BOT 2024-09-18 02:50
<ChillerDragon> any idea how i can get rid of this spam Dummy is already connected/connecting. i have my dummy connect and switch to dummy on the same key
Avatar
Avatar
ws-client
<ChillerDragon> any idea how i can get rid of this spam Dummy is already connected/connecting. i have my dummy connect and switch to dummy on the same key
monkaStop
🍉 1
Avatar
MilkeeyCat 2024-09-18 05:55
chillerdragon: it's true that both 0.6 and 0.7 have version in server info but to get to version field i have to parse token first, and it's different for 2 versions
Avatar
GitHub BOT 2024-09-18 06:58
7192bbf Fix 0.7 client flag sounds being duplicated when dummy is connected - ChillerDragon b03245f Merge pull request #8979 from ChillerDragon/pr_flag_sounds7 - def-
07:01
984845b Describe what sv_spamprotection covers - ChillerDragon 96ad30e Merge pull request #8978 from ChillerDragon/pr_spamprot - def-
Avatar
chillerdragon BOT 2024-09-18 07:09
@MilkeeyCat: every port should only have one version. Either 0.6 or 0.7 and when you get the token packet you also already know which version it is. The token packets from ddnet 0.6 and teeworlds 0.7 are different
07:09
Seems like you have to introduce a version state per port
07:10
So a connection for connectionless packets hehe
Avatar
MilkeeyCat 2024-09-18 07:10
pepeW
Avatar
chillerdragon BOT 2024-09-18 07:11
Do you know how to detect the version based on the token packet already or where are you currently at?
Avatar
MilkeeyCat 2024-09-18 07:11
im in CClient::ProcessServerInfo
07:12
i just have to know when parse 0.7 info
Avatar
ws-client BOT 2024-09-18 07:12
<ChillerDragon> so you already handle both kinds of tokens?
07:13
<ChillerDragon> not sure if 0.6 even has tokens
07:13
<ChillerDragon> idk the protocol
Avatar
MilkeeyCat 2024-09-18 07:14
i didn't touch what already worked
07:14
but I added some stuff to get correct token and send serverinfo packet
Avatar
ws-client BOT 2024-09-18 07:15
<ChillerDragon> when you get the token where do u store it
Avatar
MilkeeyCat 2024-09-18 07:16
i added a vector of connless packets
Avatar
ws-client BOT 2024-09-18 07:16
<ChillerDragon> C++ bloat xd
Avatar
MilkeeyCat 2024-09-18 07:16
which will be sent when they will have correct token
Avatar
ws-client BOT 2024-09-18 07:17
<ChillerDragon> how do you know which token belongs to which port?
07:19
<ChillerDragon> anyways ideally you don't touch CClient::ProcessServerInfo the 0.7 bridge should not pollute the ddnet 0.6 code
07:20
DDraceNetwork, a free cooperative platformer game. Contribute to ddnet/ddnet development by creating an account on GitHub.
07:20
<ChillerDragon> if it sees the 0.7 header it unpacks the 0.7 server info and repacks it as 0.6 server info so in the end it hits the 0.6 code
Avatar
Avatar
ws-client
<ChillerDragon> wat fun
Jupstar ✪ 2024-09-18 07:45
all of it master jedi
Avatar
ws-client BOT 2024-09-18 08:14
<ChillerDragon> im so confused on https://github.com/ddnet/ddnet/issues/8977 omg
Was probably introduced in #8730 The chat is also affected
Avatar
Avatar
MilkeeyCat
chillerdragon: it's true that both 0.6 and 0.7 have version in server info but to get to version field i have to parse token first, and it's different for 2 versions
yes
Avatar
ws-client BOT 2024-09-18 08:14
<ChillerDragon> pClient->UpdateRenderInfo(true, IClient::CONN_MAIN); sets correct teams for the main tee
08:15
<ChillerDragon> pClient->UpdateRenderInfo(true, IClient::CONN_DUMMY); sets correct teams for dummy
08:15
<ChillerDragon> setting none gives empty default textures
08:15
<ChillerDragon> setting both sets only teams for dummy?!
Avatar
ws-client BOT 2024-09-18 08:34
<ChillerDragon> NO WAY
08:34
<ChillerDragon> i did the best typo lmao
08:34
<ChillerDragon> i tried to type Sixup and ended up writing Xusep xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxD
Avatar
MilkeeyCat 2024-09-18 08:43
chillerdragon: 😏
08:43
this time it's not that bad xd
Avatar
Avatar
MilkeeyCat
chillerdragon: 😏
lan comes
Avatar
GitHub BOT 2024-09-18 08:46

Checklist

  • [x] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with [ASan+UBSan or valgrind's memcheck](https://github.com/ddnet/ddnet/#using-addresssan...
09:02
Does it show if the player not in spec?
Avatar
Avatar
MilkeeyCat
Does it show if the player not in spec?
yes, the client is a player if it is not a spectator
Avatar
MilkeeyCat 2024-09-18 09:19
is it possible to play on 0.7 servers using ddnet client? -.-
09:24
I somehow connected to it only once and it doesn't work for me anymore xd
Avatar
Avatar
MilkeeyCat
I somehow connected to it only once and it doesn't work for me anymore xd
Ask chiller, he added the support for it
Avatar
MilkeeyCat 2024-09-18 09:26
chillerdragon: send help
Avatar
Avatar
MilkeeyCat
I somehow connected to it only once and it doesn't work for me anymore xd
I also had that issue when working on some seemingly unrelated changes to 0.7 skins pepeW
Avatar
ws-client BOT 2024-09-18 09:28
<ChillerDragon> connect 127.0.0.1 connects with 0.6 protocol
09:28
<ChillerDragon> connect tw-0.7+udp://127.0.0.1 connects with 0.7 protocol
09:30
<ChillerDragon> @MilkeeyCat 0.7 added bot support to the master. Maybe heinrich ported it to 0.6
09:31
<ChillerDragon> oh that was Oy 13 years ago
09:31
<ChillerDragon> might still be 0.6
09:34
<ChillerDragon> @MilkeeyCat iirc in 0.6 bool m_Player is true = in game and false = spectator and in 0.6 its spec/bot/ingame
09:34
Avatar
MilkeeyCat 2024-09-18 09:35
ok, i did break 0.7 somehow pepeW
Avatar
ws-client BOT 2024-09-18 09:35
<ChillerDragon> rip
Avatar
MilkeeyCat 2024-09-18 09:35
it connects only once
Avatar
ws-client BOT 2024-09-18 09:36
<ChillerDragon> in 0.7** its spec/bot/ingame
Avatar
cyberfighter 2 2024-09-18 09:36
bot like the serverside bots
Avatar
ws-client BOT 2024-09-18 09:36
<ChillerDragon> yes
09:37
<ChillerDragon> they are officially supported by 0.7
09:37
<ChillerDragon> there is a client side antenna bot texture on the tees
Avatar
cyberfighter 2 2024-09-18 09:37
they knew game was dead as hell
Avatar
ws-client BOT 2024-09-18 09:37
<ChillerDragon> and you can filter them out in the master server
Avatar
cyberfighter 2 2024-09-18 09:37
so they added bots
Avatar
ws-client BOT 2024-09-18 09:37
<ChillerDragon> they didnt add bot
09:37
<ChillerDragon> just the flag for modders
Avatar
cyberfighter 2 2024-09-18 09:37
bot support whatever
Avatar
MilkeeyCat 2024-09-18 09:37
wait, I didn't break anything
Avatar
ws-client BOT 2024-09-18 09:37
<ChillerDragon> Oy does not care about players actually
Avatar
MilkeeyCat 2024-09-18 09:38
it just has wrong protocol in server address field (edited)
Avatar
ws-client BOT 2024-09-18 09:38
<ChillerDragon> nob
Avatar
MilkeeyCat 2024-09-18 09:38
whew
Avatar
cyberfighter 2 2024-09-18 09:38
what does oy even do
09:38
has anyone even heard from him
Avatar
ws-client BOT 2024-09-18 09:38
<ChillerDragon> for a living?
09:38
<ChillerDragon> he was online this year
Avatar
cyberfighter 2 2024-09-18 09:38
idk in general
Avatar
ws-client BOT 2024-09-18 09:39
<ChillerDragon> idk anything about him
Avatar
cyberfighter 2 2024-09-18 09:39
mysterious person
Avatar
ws-client BOT 2024-09-18 09:39
<ChillerDragon> he is probably 50 yrs old and german
Avatar
cyberfighter 2 2024-09-18 09:40
sounds just like deen lmao, tho idk about the age
Avatar
ws-client BOT 2024-09-18 09:40
<ChillerDragon> just a random guess from my side maybe he is also 30 :D
09:40
<ChillerDragon> heinrich might have some better intel on him
09:40
<ChillerDragon> deen is quite different than oy
Avatar
Jupstar ✪ 2024-09-18 09:40
I bet heinrich knows him IRL
Avatar
cyberfighter 2 2024-09-18 09:41
in what way
Avatar
Jupstar ✪ 2024-09-18 09:41
deen is like 32 or smth
09:41
he ain't that old
Avatar
ws-client BOT 2024-09-18 09:41
<ChillerDragon> deen is new teeworlds player
Avatar
Jupstar ✪ 2024-09-18 09:41
new lol
Avatar
ws-client BOT 2024-09-18 09:41
<ChillerDragon> he is super active and public
09:41
<ChillerDragon> Oy is og teeworlds player and inactive and there is little public info on him
09:41
<ChillerDragon> deen responds to pullrequests within minutes
09:41
<ChillerDragon> Oy responds to pullrequests within years
Avatar
Jupstar ✪ 2024-09-18 09:42
I just wonder why Oy got tw repo alone?
09:42
How did that happen
09:42
Do we have history?
Avatar
ws-client BOT 2024-09-18 09:42
<ChillerDragon> last time someone bumped the copyright year the pr got outdated before it got merged xd
Avatar
cyberfighter 2 2024-09-18 09:42
lol
Avatar
Avatar
ws-client
<ChillerDragon> last time someone bumped the copyright year the pr got outdated before it got merged xd
Jupstar ✪ 2024-09-18 09:42
lol lol lol lol
Avatar
ws-client BOT 2024-09-18 09:43
<ChillerDragon> deens entire life is fully public. his face, first name, last name, family status, his location, his work.
Avatar
Jupstar ✪ 2024-09-18 09:43
His kid was born on the same day as ddnet was founded
09:43
EVERYTHING IS PLANNED
Avatar
ws-client BOT 2024-09-18 09:43
<ChillerDragon> xd
Avatar
cyberfighter 2 2024-09-18 09:43
his kid is ddnet
Avatar
ws-client BOT 2024-09-18 09:44
<ChillerDragon> also deen cares about the players
Avatar
cyberfighter 2 2024-09-18 09:44
a ye true
09:44
but if oy doesnt care about players what does he care about then
Avatar
Jupstar ✪ 2024-09-18 09:45
The question is, why is it soo insanely important to oy and the tw gang to keep teeworlds dead
Avatar
ws-client BOT 2024-09-18 09:45
<ChillerDragon> but maybe oy does too idk. I just remember someone quoting him saying something along the lines of "back in my days tw had 3 active players. idc if it goes back to that"
Avatar
Jupstar ✪ 2024-09-18 09:45
I just so hard don't get it
Avatar
cyberfighter 2 2024-09-18 09:45
maybe they think they cant get it back
Avatar
ws-client BOT 2024-09-18 09:45
<ChillerDragon> not sure what oys mission is im trying to talk to him since a few years
Avatar
Jupstar ✪ 2024-09-18 09:45
And then?
Avatar
cyberfighter 2 2024-09-18 09:46
game finished? i guess?
Avatar
Avatar
cyberfighter 2
maybe they think they cant get it back
Jupstar ✪ 2024-09-18 09:46
They don't care rn about tw, why does it matter if tw gets famous and they should care again
Avatar
ws-client BOT 2024-09-18 09:46
<ChillerDragon> he is harder to reach than mrafk5991
Avatar
Jupstar ✪ 2024-09-18 09:46
That is kinda lame
Avatar
Avatar
cyberfighter 2
game finished? i guess?
Jupstar ✪ 2024-09-18 09:46
Oh yeah super finished xD
09:46
heinrich is super ez to reach
09:46
he responds to emails within 3 months
Avatar
ws-client BOT 2024-09-18 09:46
<ChillerDragon> lol
09:47
<ChillerDragon> the last 20 pings i made to heinrich went into the void
Avatar
cyberfighter 2 2024-09-18 09:47
do dms instead
Avatar
Jupstar ✪ 2024-09-18 09:47
Intentionally ignored
Avatar
cyberfighter 2 2024-09-18 09:47
ez
Avatar
Jupstar ✪ 2024-09-18 09:47
Do a pr where you replace https master server with ftp master server
09:47
and he will be there
Avatar
ws-client BOT 2024-09-18 09:49
<ChillerDragon> oh yea he occasionally writes comments on gh
09:50
<ChillerDragon> thanks for working on this big ass issue btw @MilkeeyCat
09:52
<ChillerDragon> can someone help me ping @lukure
09:52
<ChillerDragon> @lukuretw
Avatar
ws-client BOT 2024-09-18 09:53
<ChillerDragon> ah
Avatar
cyberfighter 2 2024-09-18 09:53
you pinged him
Avatar
You just pinged him nobo
Avatar
im here
Avatar
ws-client BOT 2024-09-18 09:54
<ChillerDragon> epic did it ping? im so pro
Avatar
ws-client BOT 2024-09-18 09:54
<ChillerDragon> im the best chatter eu west
Avatar
ws-client BOT 2024-09-18 09:54
<ChillerDragon> @lukure come in game to live chat
09:54
<ChillerDragon> email cring
Avatar
cyberfighter 2 2024-09-18 09:54
why do u still use email
Avatar
ws-client BOT 2024-09-18 09:54
<ChillerDragon> because lukure nob has no messenger
09:55
<ChillerDragon> he is email enjoyer
Avatar
i have lol
Avatar
ws-client BOT 2024-09-18 09:55
<ChillerDragon> well only discor d -.-
Avatar
Jupstar ✪ 2024-09-18 09:55
lmao
Avatar
but im email enjoyer too 😄
09:55
na
Avatar
ws-client BOT 2024-09-18 09:55
<ChillerDragon> omg join already
09:55
<ChillerDragon> or come https://chat.zillyhuhn.com/ #off-topic
Avatar
Avatar
ws-client
<ChillerDragon> @lukure come in game to live chat
are u ingame? XD
Avatar
ws-client BOT 2024-09-18 09:57
<ChillerDragon> yes
09:58
<ChillerDragon> i gtg in 5mins
Avatar
where?
Avatar
ws-client BOT 2024-09-18 09:58
<ChillerDragon> 88.198.96.203:8309
Avatar
GitHub BOT 2024-09-18 10:10
46c5344 Fix 0.7 client team colors (Closed #8977) - ChillerDragon 2c77e79 Merge pull request #8980 from ChillerDragon/pr_fix_team_colors_sixup - Robyt3
Avatar
i like that way Chiller XD
Avatar
ChillerDragon: closing keywords still don't work in PR titles
Avatar
ws-client BOT 2024-09-18 10:45
<ChillerDragon> works in my github :p
Avatar
Doesn't work with merge queue
10:48
a266cd2 Save the config file when the app is minimized on Android - furo321 255694c Merge pull request #8975 from furo321/android-save-minimized - Robyt3
10:54
b475c67 Various improvements to announcements - furo321 a2e0ab2 Merge pull request #8973 from furo321/improve-annoucements - Robyt3
Avatar
how is time being round up btw? if someone finishes 6.686s is it 6,68 then or 6,7? and why
Avatar
Jupstar ✪ 2024-09-18 11:14
Mh?
11:14
ddnet is ticks based
11:14
1 tick is 20ms
11:14
You can finish every 20ms
Avatar
yea i see thats why there is no .01 etc
11:15
but 6.686 is round up to 6.69 technically
Avatar
Jupstar ✪ 2024-09-18 11:15
but 20ms is 0.02
11:15
there is no 0.006
Avatar
GitHub BOT 2024-09-18 11:16
https://github.com/user-attachments/assets/07f4f877-a8f5-4c3d-953f-1e51e6250182

Checklist

  • [x] Tested the change ingame
  • [x] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with [...
Avatar
Jupstar ✪ 2024-09-18 11:17
The biggest weirdness ddnet has is, that it stores finish times as floats lmao
11:17
I assume with huge times this can get inaccurate a bit
Avatar
yea idk what a float is dw xd
Avatar
Jupstar ✪ 2024-09-18 11:18
A float is basically a decimal with finite possibilities 2^32
11:19
minus some weird cases
11:19
But anyway
11:19
I am not aware of any rounding
11:19
Do you have an example of a finish time that is rounded up or down?
Avatar
some people discussed in game that if someone finished on the unique race servers with a 6.686s time(fastest time) if it would be possible to do a 6.68 on ddnet
11:20
but i guess cant really compare that
Avatar
Jupstar ✪ 2024-09-18 11:20
Yeah i assume unique race servers use some interpolated time
11:21
the problem with interpolated time is. They are also not correct
11:21
It's like CS2 claiming to have sub tick shots (edited)
Avatar
Jupstar ✪ 2024-09-18 11:21
It's not incorrect, but also not really true
Avatar
Avatar
Jupstar ✪
The biggest weirdness ddnet has is, that it stores finish times as floats lmao
MilkeeyCat 2024-09-18 11:21
Wot
Avatar
Jupstar ✪ 2024-09-18 11:21
it's not the same as increasing the tick rate
Avatar
GitHub BOT 2024-09-18 11:25
https://github.com/user-attachments/assets/563e6c87-e721-4226-9a01-30423f5fd2f0

Checklist

  • [x] Tested the change ingame
  • [x] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with [...
Avatar
GitHub BOT 2024-09-18 11:58
https://github.com/user-attachments/assets/382f1c8a-904c-4a7e-8de5-8622f1574b08

Checklist

  • [x] Tested the change ingame
  • [x] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with...
Avatar
GitHub BOT 2024-09-18 12:11
https://github.com/user-attachments/assets/b7d77239-6830-4086-8fea-8ca186e8ed91

Checklist

  • [x] Tested the change ingame
  • [x] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with...
Avatar
MilkeeyCat 2024-09-18 12:36
a accidentally made range for local servers 8303..=80310 and was wondering why servers had 300 ping xd (edited)
Avatar
Avatar
J$ON
some people discussed in game that if someone finished on the unique race servers with a 6.686s time(fastest time) if it would be possible to do a 6.68 on ddnet
could be. unique race time representation can subtract up to 2 ticks (40ms aka. 0.04) from the actual time
12:38
so generally if you replay the same run on ddrace servers it will be worse by up to 2 ticks
Avatar
GitHub BOT 2024-09-18 12:44
I am not too sure about this one. This would be the first destructive quick action. Meaning one little typo or miss scroll could delete an entire layer by accident. The way the prompt is designed to be used this can happen way more likely than clicking the delete button. I am not sure how mature the undo feature is. Is it stable? Is it on by default? If we can rely on the undo feature to avoid data loss than this should be fine. The other option would be introducing a "are you sure?" popup...
Avatar
GitHub BOT 2024-09-18 13:22
32e8bb1 Add quick action "Map details" - ChillerDragon 3781f95 Add quick action "Add front layer" - ChillerDragon cbc21fa Merge pull request #8984 from ChillerDragon/pr_qa_afl - def- 78d702d Merge pull request #8981 from ChillerDragon/pr_qa_md - def-
Avatar
Avatar
Jupstar ✪
I assume with huge times this can get inaccurate a bit
Hm, to lose 20ms precision which is ~2^-5.644, you need to spend 2^17 seconds on the map. So at about 1.5 days the times are no longer exact
13:34
They become off by half a tick, until day 3, at that point they become inaccurate by 3 ticks. I think unless I made a mistake somewhere
13:36
To be fair, actually just having better precision than 20ms isn't enough to represent all times
Avatar
Avatar
Learath2
Hm, to lose 20ms precision which is ~2^-5.644, you need to spend 2^17 seconds on the map. So at about 1.5 days the times are no longer exact
Jupstar ✪ 2024-09-18 13:50
Thanks for your input. I still find floats a weird format xd
Avatar
Yeah I would probably do fixed point with integers
13:51
We have 2 digits of precision because of the ticks anyway
Avatar
MilkeeyCat 2024-09-18 13:51
does teeworlds client show only 1 lan server? -.-
Avatar
Avatar
Learath2
Yeah I would probably do fixed point with integers
Jupstar ✪ 2024-09-18 13:54
Even if u do milliseconds directly in an u32 you'd have 200 million ticks 😄
Avatar
Avatar
MilkeeyCat
does teeworlds client show only 1 lan server? -.-
MilkeeyCat 2024-09-18 13:55
forgot to ping 0.7 himself, chillerdragon
Avatar
Jupstar ✪ 2024-09-18 13:55
49 days
13:55
mh doesnt sound impressive
Avatar
Avatar
Jupstar ✪
Even if u do milliseconds directly in an u32 you'd have 200 million ticks 😄
Yeah but we don't need the precision of milliseconds anyway
Avatar
Jupstar ✪ 2024-09-18 13:55
Yeah
13:56
I am one of these ppl that use 64-bit and call it a day anyway
13:56
😬
13:56
suddenly you have 213503982334 days
Avatar
ws-client BOT 2024-09-18 14:10
<ChillerDragon> @MilkeeyCat it also does a range scan
Avatar
MilkeeyCat 2024-09-18 14:10
it shows only 1 server ;-;
Avatar
Jupstar ✪ 2024-09-18 14:10
Wth happened here bro
14:11
Why are servers in the icon prop xD
Avatar
ws-client BOT 2024-09-18 14:11
<ChillerDragon> for me too @MilkeeyCat watafak seems like a bug
Avatar
MilkeeyCat 2024-09-18 14:12
whenever I try to do some easy pr it turns into weeks long
Avatar
Jupstar ✪ 2024-09-18 14:12
bro r u trolln
Avatar
ws-client BOT 2024-09-18 14:12
<ChillerDragon> i told u its not a low hanging fruit @MilkeeyCat
Avatar
MilkeeyCat 2024-09-18 14:14
there's some sus Found variable which is not used at all xd
Avatar
ws-client BOT 2024-09-18 14:20
<ChillerDragon> yea while you are at it you can also send a teeworlds pr to fix it xd
Avatar
lmao who made that
Avatar
two nouis
Avatar
warning for file "downloadedskins/hpn_hat.23813.tmp": iCCP: known incorrect sRGB profile
@Jupstar ✪ what was this one for? Should we fix it or is my built client just old?
Avatar
one louis
Avatar
Avatar
Learath2
warning for file "downloadedskins/hpn_hat.23813.tmp": iCCP: known incorrect sRGB profile
@Jupstar ✪ what was this one for? Should we fix it or is my built client just old?
I get the same warning. Would be great if this was fixed in the skin DBs
Avatar
Hi, I am a Chinese. I have a 2c4g server in Hangzhou idle, which has a four-year validity period. I want to donate it to ddnet to build a service in Hangzhou. Because the game experience in Hangzhou is too stuck, do you accept the server sponsored by the private sector @deen
Avatar
Avatar
Learath2
warning for file "downloadedskins/hpn_hat.23813.tmp": iCCP: known incorrect sRGB profile
@Jupstar ✪ what was this one for? Should we fix it or is my built client just old?
Jupstar ✪ 2024-09-18 14:56
This is simply a warning that libpng prints
14:56
But yeah we should fix it ig
Avatar
Avatar
Jupstar ✪
But yeah we should fix it ig
Things that we can fix we should fix ig
14:57
does this one work
14:57
Avatar
Jupstar ✪ 2024-09-18 14:58
@louis u can always simply reupload using the skin bot & #📬submit-skins
14:58
if u dont want to use the website tool, which is probs bit more annoying (?)
14:58
it also wont change the original release date
15:02
should be good
Avatar
@TsFreddie Hi, I have a 2c4g server in Hangzhou, China that is idle and has a validity period of 4 years. I would like to donate it to the ddnet official to build a service in the Hangzhou area
Avatar
you can ask deen about it
Avatar
ddnet is quite bandwidth heavy tho
Avatar
I can upgrade my configuration. I am in Hangzhou and the latency of playing this game is very high, basically above 50. Therefore, I am very eager to set up a service in Hangzhou
Avatar
50 sounds pretty reasonable to me. either way, a 2c4g5m server usually host about 8 ddnet servers, just so you know.
Avatar
Thank you, no problem at all. I can upgrade the bandwidth and leave a message for deen now. If you agree, I can immediately provide the server
Avatar
it usually takes a reimage to debian, deen will give you the info.
Avatar
I am CentOS 7
Avatar
ws-client BOT 2024-09-18 15:17
The client sends out a token handshake to the hardcodet range of lan ports. But it only has one variable to store the token in. teeworlds/src/engine/client/serverbrowser.cpp Line 79 in c56fa9e m_Cu...
Avatar
Jupstar ✪ 2024-09-18 15:18
Chiller
Avatar
Chiller
Avatar
MilkeeyCat 2024-09-18 15:18
Chiller
Avatar
ws-client BOT 2024-09-18 15:19
<ChillerDragon> ye
Avatar
Jupstar ✪ 2024-09-18 15:19
i know how to summon heinrich now
Avatar
ws-client BOT 2024-09-18 15:19
<ChillerDragon> how?
Avatar
Jupstar ✪ 2024-09-18 15:19
Drop support for old versions xd
Avatar
ws-client BOT 2024-09-18 15:19
<ChillerDragon> xd
Avatar
Jupstar ✪ 2024-09-18 15:19
he is online in discord now
Avatar
ws-client BOT 2024-09-18 15:20
<ChillerDragon> he rolly is procrastinating to read #developer backlog xd
Avatar
MilkeeyCat 2024-09-18 15:20
chillerdragon: where's the pr which fixes the bug? xd
Avatar
ws-client BOT 2024-09-18 15:20
<ChillerDragon> prolly*
Avatar
Jupstar ✪ 2024-09-18 15:20
i know
15:20
what should we write
Avatar
ws-client BOT 2024-09-18 15:20
<ChillerDragon> @MilkeeyCat xd
Avatar
Jupstar ✪ 2024-09-18 15:20
Welcome back in the future
Avatar
ws-client BOT 2024-09-18 15:20
<ChillerDragon> @MilkeeyCat you need to send it
Avatar
Jupstar ✪ 2024-09-18 15:20
When you read this it's still 2024
Avatar
ws-client BOT 2024-09-18 15:20
<ChillerDragon> LMAO
15:20
<ChillerDragon> ok gn8
Avatar
Jupstar ✪ 2024-09-18 15:21
gn8
Avatar
MilkeeyCat 2024-09-18 15:21
morning
Avatar
Avatar
Jupstar ✪
When you read this it's still 2024
he's lying, discord had a database mishap where the time was rolledback 10 years. if you read this, it is actually 2034.
Avatar
Avatar
TsFreddie
he's lying, discord had a database mishap where the time was rolledback 10 years. if you read this, it is actually 2034.
Jupstar ✪ 2024-09-18 15:23
Oh wow didn't expect to see you again in 2024
15:23
Where have u been
15:23
had some holidays?
Avatar
no, i quit my job and had a mental breakdown and slept for two weeks
Avatar
Avatar
TsFreddie
no, i quit my job and had a mental breakdown and slept for two weeks
15:24
jkjk
15:24
❤️
Avatar
GitHub BOT 2024-09-18 15:25

Checklist

  • [X] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with [ASan+UBSan or valgrind's memcheck](https://github.com/ddnet/ddnet/#using-addres...
Avatar
Avatar
TsFreddie
no, i quit my job and had a mental breakdown and slept for two weeks
Jupstar ✪ 2024-09-18 15:40
You must be the free'est man alive rn (edited)
15:40
😏
Avatar
you can buy me for free yes.
Avatar
GitHub BOT 2024-09-18 15:54
This function is independent from the menus and this also makes it consistent with the CSkins7::RandomizeSkin function.

Checklist

  • [X] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect exi...
Avatar
@beibei are you in any of the QQ chat groups
Avatar
Is custom resolutions buggy on linux?
Avatar
GitHub BOT 2024-09-18 16:03
4580884 Localize Hz unit of refresh rate settings - Robyt3 d2348b2 Merge pull request #8986 from Robyt3/Client-Localize-Hz - def-
Avatar
I've added 1760x1080@144 through xrandr and it shows up on the list fine, but when I switch to it from another resolution (1920x1080) it shows up as 1920x1178 on the title bar. Launching the game with the resolution already selected makes it windowed, but it shows up as correct. I want it stretched (edited)
Avatar
@Jupstar ✪ I don't think we have stretching, right?
Avatar
Jupstar ✪ 2024-09-18 16:08
If you add your custom resolution to the supported list it should work
16:08
DDNet has no influence over streetching nor the list
Avatar
Avatar
Jupstar ✪
If you add your custom resolution to the supported list it should work
it doesnt 🤷‍♂️
Avatar
Jupstar ✪ 2024-09-18 16:10
but it should
16:10
what GPU do you have? (edited)
Avatar
Friends list & some server info gets full cut out on original resolutions too
Avatar
Avatar
Jupstar ✪
what GPU do you have? (edited)
amd rx 6700xt
Avatar
Jupstar ✪ 2024-09-18 16:12
u can also try gamescope
Avatar
The title bar changes depending on which resolution you switch to the custom one for example: 1920x1080 selected -> click on 1760x1080 -> title bar 1920x1178 1600x900 selected -> click on 1760x1080 -> title bar 1600x981
Avatar
Avatar
Jupstar ✪
u can also try gamescope
I dont play from steam, will that work?
Avatar
what do the character directions indicate -1, 0, 1?
Avatar
-1 left 0 stop 1 right
Avatar
hm, what does the client do with those values in order to predict the character position, I wonder :?
Avatar
u shouldn't know it
Avatar
maybe yes
16:19
move symbols upper of tee
Avatar
how does that work together with velocity, pos and direction, might be the more precise question
16:20
if it does at all
16:21
maybe this
Avatar
I think that might be something else
16:21
ah
16:21
there is also a jump key
16:21
might be the jump value
16:21
that's also next to direction
Avatar
i don't write the code kek can't know all exacly
Avatar
jumps are also showed
16:22
so left, right, stop might come from direction and jump from the jump integer
Avatar
its just running the prediction aka. normal physics on the client to predict where ure going
Avatar
teero just want say "don't open our secrets" troll
Avatar
I wonder how the maths works 😮
16:27
maffs
Avatar
now my mouse doesnt move ingame
16:27
😭
Avatar
or where exactly to look for the maffs in the code
Avatar
check out src/game/client/prediction/
16:28
everything prediction related is there
16:28
most of it is a 1:1 copy of the server physics code
16:29
which is reudig
Avatar
in germany we say "spaghetticode"
Avatar
hmhm reudig
Avatar
sadly ddnet physics are fucking shit
justatest 1
16:29
*performance wise
Avatar
Avatar
Teero
sadly ddnet physics are fucking shit
but i like that
16:30
cpp
Avatar
Avatar
zaerin
I dont play from steam, will that work?
Jupstar ✪ 2024-09-18 16:30
i guess so
Avatar
ew, I need to know if a character is grounded to predict stuff... ew, need to know map content for that ._.
16:33
friggin rabbit hole
Avatar
you can use twgame trollet
Avatar
twgame?
Avatar
I'm doing Go ._.
16:37
maybe that helps for a reference
Avatar
twgame has python bindings xdd
Avatar
GitHub BOT 2024-09-18 16:47
96cc8c5 Move CMenus::RandomSkin function to CSkins::RandomizeSkin - Robyt3 5407db0 Merge pull request #8987 from Robyt3/Client-Skins-Randomize-Function - def-
Avatar
is there any solution for the player limit in demos?
17:01
im trying to have more than 63 players in a demo but the snapshot builder will crash
17:08
@Jupstar ✪ i increased MAX_ITEMS to 65536
17:08
wait wtf
Avatar
Avatar
Teero
@Jupstar ✪ i increased MAX_ITEMS to 65536
Jupstar ✪ 2024-09-18 17:08
Yeah I know
17:08
But what was the crash again
Avatar
Thread 1 "DDNet" received signal SIGSEGV, Segmentation fault. CSnapshotDelta::SetStaticsize (this=0x13a50400000014, ItemType=ItemType@entry=21, Size=Size@entry=1) at /home/teero/software/ddnet/src/engine/shared/snapshot.cpp:271 271 m_aItemSizes[ItemType] = Size;
17:10
i dont even know how that line can crash tbh
Avatar
Jupstar ✪ 2024-09-18 17:10
try 65535
Avatar
when i increased MAX_ITEMS it worked with 69 players
Avatar
ItemType so large that you overflow waaay out of the process memory?
Avatar
125 crashed
Avatar
Jupstar ✪ 2024-09-18 17:11
oh
17:11
yeah the whole snapshot stuff is hard to understand
Avatar
Avatar
Learath2
ItemType so large that you overflow waaay out of the process memory?
tweniuahne (edited)
Avatar
Jupstar ✪ 2024-09-18 17:11
ping patiga xddd
Avatar
ping matricks
Avatar
Jupstar ✪ 2024-09-18 17:12
ping chillerdragon why he destroyed it
Avatar
Avatar
Teero
tweniuahne (edited)
Ok, then maybe this == nullptr
Avatar
man read the thing xdd
17:13
oh yea
17:13
17:13
maybe youre right
17:13
this is corrupted
17:13
it seems
Avatar
Maybe not nullptr, but definitely not a sane addr
Avatar
Jupstar ✪ 2024-09-18 17:13
use asan
Avatar
Writing way outside the process memory, giving you your SIGSEGV
Avatar
Avatar
Jupstar ✪
use asan
oki
Avatar
Avatar
manikoo
Click to see attachment 🖼️
mein rechter rechter platz ist frei ich wünsche mir heinrich herbei
Avatar
don't speak germany language but i don't want heinrich
17:16
just a meme\
Avatar
Jupstar ✪ 2024-09-18 17:17
@Teero just leak the inputs as txt then i give u 8k demo
Avatar
sure lmao
17:18
you can have the code to decode them too xdd
17:18
but i would need to write smth to mass-export 40000 files
Avatar
Jupstar ✪ 2024-09-18 17:18
ah yeah 40k files
17:18
ez
17:18
can u make json? bcs then ez to import
17:18
i already wrote the code in rust
Avatar
Jupstar ✪ 2024-09-18 17:18
wow
17:19
ah true
17:19
forgot you are rust dev now
santatrollet 1
Avatar
haha doing it in debug takes so long xdd
17:20
100 players works xdd
Avatar
Jupstar ✪ 2024-09-18 17:20
ok
17:20
it crashed lets go
17:21
stack-buffer-overflow on address 0x7fffffff92e0 at pc 0x555556b00574 bp 0x7ffffffe8750 sp 0x7ffffffe7f10
17:21
yay
Avatar
Jupstar ✪ 2024-09-18 17:21
AHH
17:21
that address
17:22
its always him
17:22
hate him
17:22
0x7fffffff9000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x7fffffff9080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x7fffffff9100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x7fffffff9180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x7fffffff9200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 =>0x7fffffff9280: 00 00 00 00 00 00 00 00 00 00 00 00[f2]f2 f2 f2 0x7fffffff9300: f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 0x7fffffff9380: f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f8 f8 f8 f8 0x7fffffff9400: f8 f2 f2 f2 f2 f2 f8 f8 f8 f8 f8 f8 f8 f8 f8 f8 0x7fffffff9480: f8 f8 f8 f8 f8 f8 f2 f2 f2 f2 f8 f8 f2 f2 f8 f2 0x7fffffff9500: f2 f2 f8 f3 f3 f3 f3 f3 00 00 00 00 00 00 00 00 look at all his friends
justatest 1
Avatar
Jupstar ✪ 2024-09-18 17:22
tbh: cmake -DCMAKE_CXX_FLAGS="-Wl,--stack,4194304000"
17:22
dann ist ruhe
Avatar
Let me guess, m_aIdMap overflowed
Avatar
Jupstar ✪ 2024-09-18 17:23
@Teero can u send the whole output somewhere
17:23
bcs asan tells you everything
17:23
it tells you "this address, this line, this variable"
Avatar
int CSnapshotBuilder::Finish(void *pSnapData) { // flatten and make the snapshot CSnapshot *pSnap = (CSnapshot *)pSnapData; pSnap->m_DataSize = m_DataSize; pSnap->m_NumItems = m_NumItems; mem_copy(pSnap->Offsets(), m_aOffsets, pSnap->OffsetSize()); mem_copy(pSnap->DataStart(), m_aData, m_DataSize); return pSnap->TotalSize(); } the second mem_copy
Avatar
Or a static member inside m_SnapshotBuilder overflowed (edited)
Avatar
Avatar
Jupstar ✪
it tells you "this address, this line, this variable"
sure
17:25
wait
Avatar
Yeah, that sounds about right, CSnapshot::MAX_SIZE is just not big enough
Avatar
Jupstar ✪ 2024-09-18 17:25
"In software, a stack buffer overflow or stack buffer overrun occurs when a program writes to a memory address on the program's call stack outside of the intended data structure, which is usually a fixed-length buffer." Is the snap builder on the stack or what
Avatar
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
17:28
here u go ig xd
17:28
it really doesnt say much
Avatar
It tells you exactly what went wrong, what else do you want from it?
Avatar
Jupstar ✪ 2024-09-18 17:29
ACHSO
Avatar
Avatar
Learath2
Yeah, that sounds about right, CSnapshot::MAX_SIZE is just not big enough
Jupstar ✪ 2024-09-18 17:29
And lea even helped you
17:30
with his jedi mind
Avatar
CSnapshotBuilder is stored right next to CSnapshotDelta, when that mem_copy overflows it corrupts CSnapshotDelta
Avatar
Jupstar ✪ 2024-09-18 17:30
@Learath2 sry for off-topic, but did u watch star wars?
greenthing 1
Avatar
Avatar
Jupstar ✪
@Learath2 sry for off-topic, but did u watch star wars?
Nope, I really want to sometime, but just never got to it
🇸 2
🅰️ 2
🇲 2
🇪 2
Avatar
ah lol yea im retarted ofc
Avatar
Jupstar ✪ 2024-09-18 17:30
Ok, yeah seems like that's an age thing
Avatar
Actually I once asked a couple starwars enjoyer friends of mine which order to watch it in. They got into a fight and I never got my order
17:31
So I never watched
Avatar
Jupstar ✪ 2024-09-18 17:31
You don't even need to watch it to enjoy it
17:32
just for the memes
Avatar
Avatar
Learath2
Yeah, that sounds about right, CSnapshot::MAX_SIZE is just not big enough
idk what the consequences of making this larger are, but I know you can't do it without a client change too
Avatar
grandma sends starwars memes on facebook
Avatar
Maybe allowing more parts would be fine, the clients that don't support that many parts might just drop the snap and not crash
Avatar
Avatar
Learath2
idk what the consequences of making this larger are, but I know you can't do it without a client change too
idk this is about saving the demo ig
17:32
idk if loading will work either way
17:32
i hope so
17:32
xd
17:32
ahahah
17:33
i increased it to 2^16
17:33
now the client instantly crashes upon startup
17:33
xddd
Avatar
excellent
Avatar
works if its 1024
17:36
gonna try some stuff ig
17:37
okay lets see if it can handle 6402 aipgores runs
17:37
it can not
Avatar
This really looks weird. CSnapshotBuilder::Finish write to the pSnapData argument which is a char buffer of size CSnapshot::MAX_SIZE. The function then copies the offsets and the data into this buffer, but the data could be as large as CSnapshot::MAX_SIZE so it wouldn't fit together with the offset and the m_DataSize and m_NumItems values.
Avatar
Jupstar ✪ 2024-09-18 17:38
omg
17:38
u leaked it
17:38
🤦
Avatar
spoiler pepeH
Avatar
Jupstar ✪ 2024-09-18 17:42
@Robyt3 leak todo list until 2024 ends
17:42
What do you use for todo list?
17:42
notepad?
17:42
one drive?
17:42
leak that too
Avatar
Avatar
Jupstar ✪
What do you use for todo list?
TODO.md in Sublime Text
Avatar
Jupstar ✪ 2024-09-18 17:43
ez (edited)
17:45
has sublime text no copy paste or what
Avatar
C-c and C-v no? (edited)
Avatar
Avatar
Jupstar ✪
@Robyt3 leak todo list until 2024 ends
After the touch controls are mostly done,
  • Better skin loading (also load downloaded skins from file, only redownload if changed)
  • Fix all the crashes and bugs when the connecting process goes wrong (see assigned issues)
  • Maplist in rcon
  • Android CI
(in no particular order)
Avatar
Avatar
Jupstar ✪
has sublime text no copy paste or what
works normally, I use markdown since I can also draft issues in the TODO file
Avatar
Jupstar ✪ 2024-09-18 17:48
  • learn rust
17:48
🌟
Avatar
learn emacs + orgmode 🌟
17:53
lmao
17:54
when i turn up MAX_PARTS and MAX_ITEMS it will crash while constructing CHTTP
Avatar
will try asan once again
Avatar
Jupstar ✪ 2024-09-18 17:54
simply always use asan
17:54
every other tool is trash
Avatar
Avatar
Jupstar ✪
every other tool is trash
printf statements gigachad
Avatar
Jupstar ✪ 2024-09-18 17:55
trash
Avatar
Jupstar ✪ 2024-09-18 17:55
sry
Avatar
wholesome
Avatar
MilkeeyCat 2024-09-18 17:55
that's how i was learning tw protocol justatest
Avatar
Avatar
Jupstar ✪
simply always use asan
stack-overflow YAY
17:56
stack-overflow on address 0x7ffef67224d8 (pc 0x651fa5de7db0 bp 0x7ffefa7229e0 sp 0x7ffef6721d40 T0)
17:56
always the evil address
17:56
SUMMARY: AddressSanitizer: stack-overflow /home/teero/software/ddnet/src/engine/client/client.cpp:93 in CClient::CClient() (edited)
17:58
AddressSanitizer:DEADLYSIGNAL ================================================================= ==56981==ERROR: AddressSanitizer: stack-overflow on address 0x7ffef67224d8 (pc 0x651fa5de7db0 bp 0x7ffefa7229e0 sp 0x7ffef6721d40 T0) #0 0x651fa5de7db0 in CClient::CClient() /home/teero/software/ddnet/src/engine/client/client.cpp:93 #1 0x651fa5e92e75 in CreateClient() /home/teero/software/ddnet/src/engine/client/client.cpp:4406:13 #2 0x651fa5e8c369 in main /home/teero/software/ddnet/src/engine/client/client.cpp:4610:21 #3 0x778f6354ec87 (/usr/lib/libc.so.6+0x25c87) (BuildId: 32a656aa5562eece8c59a585f5eacd6cf5e2307b) #4 0x778f6354ed4b in __libc_start_main (/usr/lib/libc.so.6+0x25d4b) (BuildId: 32a656aa5562eece8c59a585f5eacd6cf5e2307b) #5 0x651fa5339ab4 in _start (/home/teero/software/ddnet/build/DDNet+0x14c4ab4) (BuildId: 16d480194dacca7529c8c37226d7454bd767caec) SUMMARY: AddressSanitizer: stack-overflow /home/teero/software/ddnet/src/engine/client/client.cpp:93 in CClient::CClient() ==56981==ABORTING like wtf
17:58
where is the stack overflow
Avatar
MilkeeyCat 2024-09-18 18:00
on address 0x7ffef67224d8
🚀 1
18:03
thank me later
🚀 1
Avatar
blessed
Avatar
oh im having a char array with size 67108864
18:05
small oopsie
18:05
should be fine tho
Avatar
dont do that.
Avatar
Avatar
Jupstar ✪
tbh: cmake -DCMAKE_CXX_FLAGS="-Wl,--stack,4194304000"
Jupstar ✪ 2024-09-18 18:12
teeero
18:12
just give it infinite stack
18:12
8mb is max on linux
Avatar
what's the closest of the tw protocol "events" that indicates that I correctly joined the game and can now join spec.
Avatar
Avatar
Jupstar ✪
teeero
Teero is the most intelligent while brainpooped youngling I've ever met
18:14
@Teero send binary I want to bench
Avatar
Jupstar ✪ 2024-09-18 18:14
yeah
18:15
wow
Avatar
Jupstar ✪ 2024-09-18 18:15
melon leaks that he wants cheats in #developer
18:15
as moderator
18:15
and i thought i am brave
Avatar
cheat client???
Avatar
Jupstar ✪ 2024-09-18 18:15
i was wrong
Avatar
what cheat client
Avatar
Jupstar ✪ 2024-09-18 18:15
i am a nobody
Avatar
? Ofc I've been using treealein for years (edited)
Avatar
Original message was deleted or could not be loaded.
Jupstar ✪ 2024-09-18 18:16
dont
Avatar
Deletus
18:16
Don't mention names tyowo
Avatar
yeetus
Avatar
Jupstar ✪ 2024-09-18 18:16
i'm just joking melon
Avatar
i just tested melon
Avatar
Jupstar ✪ 2024-09-18 18:16
every dev enjoyer knows u have rx 7950x3d and rx 7900xtx
18:17
64gb ram
Avatar
Avatar
Jupstar ✪
every dev enjoyer knows u have rx 7950x3d and rx 7900xtx
64gb ram DDR 5 6K
Avatar
Jupstar ✪ 2024-09-18 18:17
nix user
Avatar
intel celeron 1 core
18:17
1 gb ram
18:18
ddr 2
18:18
windows 11 (edited)
Avatar
pepe_ew92 windows 11 uses like 1gb idle with nothing running cat_hehe
Avatar
more like 4
18:20
lmao
Avatar
Jupstar ✪ 2024-09-18 18:20
you think this mf does anything rn?
Avatar
Avatar
Jupstar ✪
you think this mf does anything rn?
he cached your entire pc
Avatar
Avatar
Jupstar ✪
you think this mf does anything rn?
KEKW
Avatar
You want it to use ram, it's caching files aggressively
Avatar
Avatar
Learath2
You want it to use ram, it's caching files aggressively
I can't stand this aggression, that's why I code everything without it!
18:21
(I just failed to set it up on nix today and I wanna cry)
poggers2 1
Avatar
MilkeeyCat 2024-09-18 18:21
@Learath2 you just mentioned youtube lags yesterday and now videos are not loading for me xd
Avatar
Avatar
MilkeeyCat
@Learath2 you just mentioned youtube lags yesterday and now videos are not loading for me xd
see I'm telling you, we need to hang every google executive
Avatar
Avatar
Learath2
see I'm telling you, we need to hang every google executive
Can we code ddplayer to replace YouTube pls
Avatar
Avatar
meloƞ
Can we code ddplayer to replace YouTube pls
Jupstar ✪ 2024-09-18 18:25
u like the dddemoplayer?
18:25
dddddddemoplayer
Avatar
pg moment
Avatar
dumb dump deutsch drown dummy don't dig drag down race network\ (edited)
Avatar
drown
Avatar
Avatar
meloƞ
Can we code ddplayer to replace YouTube pls
MilkeeyCat 2024-09-18 18:28
Avatar
Avatar
meloƞ
pepe_ew92 windows 11 uses like 1gb idle with nothing running cat_hehe
what windows 11 is that
Avatar
what the fuck is this hell yeaaaaaaah
Avatar
Jupstar ✪ 2024-09-18 18:30
c'mon, no google could never file a lawsuite against me lol
18:30
i don't even have rounded edges
Avatar
Want an admin account? Run this on your terminal
Avatar
zillyhuhn rustelecom advertisement
Avatar
Avatar
zaerin
Want an admin account? Run this on your terminal
don't
Avatar
Avatar
zaerin
Want an admin account? Run this on your terminal
ok
Avatar
Jupstar ✪ 2024-09-18 18:32
bro since when does yt has this weird pink color in thebar
18:32
this gradient from red to pink
Avatar
holy shit
Avatar
I thought it was just me getting older
Avatar
310 players worked
18:32
AAAA
Avatar
Avatar
Teero
310 players worked
310 bots AT ONCE????
Avatar
Avatar
Teero
310 players worked
woooow u go so fast
Avatar
ok wait i have to set MAX_CLIENTS to 310 xd
Avatar
Avatar
meloƞ
310 bots AT ONCE????
another 5min compiling then
18:33
i will upload to tube zillyhugn
Avatar
my PC could do it in 1.2 mins
18:34
Send it
18:34
peepoveryhappy
Avatar
chiller give me account
Avatar
Chiller where account
Avatar
Avatar
meloƞ
my PC could do it in 1.2 mins
thonk
18:34
i like 1 fps while having the demo open tho
18:34
tbf i was on debug build
Avatar
Jupstar ✪ 2024-09-18 18:34
melon would have 6 fps
Avatar
Avatar
Jupstar ✪
melon would have 6 fps
man
Avatar
Avatar
Teero
man
Jupstar ✪ 2024-09-18 18:35
the truth hurts
18:35
always
18:35
i am also mad that my pc is worse than his
Avatar
Jupstar ✪ 2024-09-18 18:35
i feel like a second class person
Avatar
Avatar
Jupstar ✪
i am also mad that my pc is worse than his
whats your specs
Avatar
Avatar
zaerin
whats your specs
Jupstar ✪ 2024-09-18 18:38
thanks for asking
Avatar
Avatar
Jupstar ✪
thanks for asking
Mines worse, I wonder what melon has
18:39
dual 4090
Avatar
1000p worked
18:40
but the demo player can't handle it i assume?
Avatar
Avatar
Jupstar ✪
8mb is max on linux
ulimit -s inf
18:44
or smth like that
Avatar
Avatar
zaerin
Mines worse, I wonder what melon has
Jupstar ✪ 2024-09-18 18:44
rx 7950x3d, rx 7900xtx
18:44
only one richer is chiller with 4090 and some badass intel
Avatar
ez 1gb stack if you need it
18:45
but it needs to be allocated contiguously
Avatar
Avatar
Jupstar ✪
only one richer is chiller with 4090 and some badass intel
what os hes running?
Avatar
Avatar
zaerin
Mines worse, I wonder what melon has
FyI
Avatar
Avatar
Jupstar ✪
thanks for asking
11 hours uptime - my guy...
Avatar
Avatar
meloƞ
11 hours uptime - my guy...
Jupstar ✪ 2024-09-18 18:47
oh
18:47
did i restart today?
Avatar
Avatar
Ewan
Click to see attachment 🖼️
i respect your 9 flatpak packages
Avatar
Avatar
Ewan
Click to see attachment 🖼️
Jupstar ✪ 2024-09-18 18:48
Raphael
Avatar
Avatar
Jupstar ✪
Raphael
i have the same
Avatar
Avatar
meloƞ
11 hours uptime - my guy...
mine often goes for days
18:49
i have just been turning off the surge protector for all my pc stuff at night
Avatar
you have more packages than me :o
Avatar
Avatar
Ewan
Click to see attachment 🖼️
Jupstar ✪ 2024-09-18 18:49
Lightly sounds like white theme
18:49
can you explain yourself?
Avatar
ok im poor asf
Avatar
i respect that we all hating on wayland constantly - yet we all use it
Avatar
Avatar
MilkeeyCat
pepeW
x11 enjoyer spotted
Avatar
Avatar
meloƞ
i respect that we all hating on wayland constantly - yet we all use it
Jupstar ✪ 2024-09-18 18:51
that is bcs it sucks as much as it is good
Avatar
Avatar
meloƞ
x11 enjoyer spotted
Jupstar ✪ 2024-09-18 18:52
i use x11 too btw xd
Avatar
Avatar
meloƞ
i respect that we all hating on wayland constantly - yet we all use it
its my first week in linux idk about it 😬
Avatar
Avatar
zaerin
ok im poor asf
your hyprland config is riced tho - i respect it!
18:53
could immediatly tell off of the edges u know
Avatar
GitHub BOT 2024-09-18 18:53
Toxic players may take advantage of someone's request to swap, for example by committing suicide and then accepting the request at the start, or by intentionally dying in a place where they cannot be saved and then accepting the request.

Checklist

  • [x] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [x] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test...
Avatar
Avatar
meloƞ
could immediatly tell off of the edges u know
the edges are default, I just changed the border radius and the background blur & opacity
18:56
Not really a rice but Im working on it
Avatar
Avatar
Jupstar ✪
Lightly sounds like white theme
typically it is
18:58
but QPalette
Avatar
Jupstar ✪ 2024-09-18 19:00
we are such weirdos
19:00
sharing our linux setups as if we are cool kids
19:00
i thought about it yesterday
19:00
and the only reason this is as cool as it is is bcs it's one of the few things you can't really throw money at to make better
19:00
it's solely about the time that you put into it
Avatar
i got 10:59
Avatar
uptime?
Avatar
not bad
Avatar
microsoft suddenly cancelled my product key after a clean install (edited)
Avatar
Avatar
zaerin
microsoft suddenly cancelled my product key after a clean install (edited)
Avatar
i love how that site has grown
19:05
i downloaded my windows iot ltsc and windows server ISOs from there
Avatar
Avatar
meloƞ
your hyprland config is riced tho - i respect it!
I never got wayland to work with games. Even tho I thought fullscreen apps shouldt depend on x11 or wayland, i always have stutters on wayland... for me its a mysterium
Avatar
what wm?
19:07
you just open powershell and type the command on the right side of that image
Avatar
you guys are on my list now
Avatar
Avatar
Ewan
you just open powershell and type the command on the right side of that image
Im on linux
Avatar
Avatar
Ewan
what wm?
gnome? is that a wm?
Avatar
oh no there's a list
Avatar
Avatar
zaerin
Im on linux
oh lol
🤣 1
Avatar
Avatar
Gumba
gnome? is that a wm?
not technically
19:08
but yea
19:08
mutter just sucks
19:08
bad
Avatar
Avatar
Gumba
gnome? is that a wm?
i think gnome ships with Mutter ?
Avatar
can i too?
Avatar
i lied before
Avatar
Avatar
meloƞ
you guys are on my list now
Jupstar ✪ 2024-09-18 19:08
why does it say A?
Avatar
it was 1051
Avatar
I wouldve riced fastfetch if you said beforehand
KEKW 1
Avatar
Avatar
meloƞ
i think gnome ships with Mutter ?
should i change it so i can rice my hyprland like the cool boys
Avatar
its literally default
Avatar
@Gumba I was running GNOME on wayland for a bit (on 150% screens) and every game would run at 75% resolution and have terrible baseline latency, FPS and stutters
19:09
any windows fans.
Avatar
Avatar
Gumba
should i change it so i can rice my hyprland like the cool boys
dont recommend if you've familiarized yourself for now
Avatar
Avatar
louis
heh.
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH deletes
Avatar
Avatar
louis
any windows fans.
No ty
Avatar
Avatar
Gumba
should i change it so i can rice my hyprland like the cool boys
not necessarily hyprland but some wlroots compositor
👍 1
19:09
you should have better results
Avatar
should have riced
Avatar
Avatar
Teero
should have riced
11 hours of bot coding
Avatar
Avatar
meloƞ
11 hours of bot coding
?!
Avatar
the tiling features took me a while to get used to again (even after having run i3 on my laptop in high school)
Avatar
Avatar
Ewan
the tiling features took me a while to get used to again (even after having run i3 on my laptop in high school)
tiling is the best
Avatar
Avatar
Ewan
@Gumba I was running GNOME on wayland for a bit (on 150% screens) and every game would run at 75% resolution and have terrible baseline latency, FPS and stutters
yeah, I didnt got it to work properly on my intel/nvidia desktop nor on my amd based laptop ... at some point i gave up and used x exclusively, even tho everypne always talks about how nice wayland is
Avatar
Precision Tower 3620
Avatar
u guys really need to try light theme
Avatar
Avatar
louis
heh.
Jupstar ✪ 2024-09-18 19:10
no
Avatar
Avatar
zaerin
Precision Tower 3620
dont tower shame
Avatar
Avatar
Gumba
yeah, I didnt got it to work properly on my intel/nvidia desktop nor on my amd based laptop ... at some point i gave up and used x exclusively, even tho everypne always talks about how nice wayland is
xorg on GNOME is much more stable than wayland tbh
19:11
i hear XFCE works well on wayland now
19:11
havent used since 2020
Avatar
Avatar
Teero
should have riced
Why 60hz tho 😦
Avatar
new list incoming
Avatar
Avatar
louis
u guys really need to try light theme
yea
Avatar
my brain doesnt like it
19:12
nor does my power bill... or rather my conscience knowing that light theme will cost me an extra 2 cents per month
kek 3
Avatar
nixos 🤝 🫶
Avatar
gentoo is missing
Avatar
i did use light on windows for a good while but my screens are large and bright
Avatar
@Ryozuki
Avatar
we lost ryo after he got a girl
Avatar
am i a noob if i dont know that snowflake os? is it gentoo or nixos?
Avatar
Avatar
Gumba
am i a noob if i dont know that snowflake os? is it gentoo or nixos?
ban
Avatar
Avatar
meloƞ
we lost ryo after he got a girl
Jupstar ✪ 2024-09-18 19:13
is sad but true
Avatar
(it's nixos)
Avatar
Jupstar ✪ 2024-09-18 19:14
@meloƞ & u r only here bcs your girl is on this discord too
19:14
😉
Avatar
are u cheating on me
Avatar
Jupstar ✪ 2024-09-18 19:14
😉
Avatar
basically jupsti and milkeey want stuff to be stable - zaerin and teero want customizable shit - and me and ewan just hate ourselfs and love reading manuals for 20 hours a day just to realise it's a single typo messing up our entire config
Avatar
what is srt-bwrap 😭
Avatar
Avatar
Jupstar ✪
@meloƞ & u r only here bcs your girl is on this discord too
stop leak
Avatar
nixos has taken a legitimate toll on my mental health
Avatar
Avatar
meloƞ
basically jupsti and milkeey want stuff to be stable - zaerin and teero want customizable shit - and me and ewan just hate ourselfs and love reading manuals for 20 hours a day just to realise it's a single typo messing up our entire config
MilkeeyCat 2024-09-18 19:15
i want stuff to work* xd
Avatar
Avatar
Ewan
nixos has taken a legitimate toll on my mental health
same...
Avatar
i have pages and pages of things to fix in my notes
KEKW 1
19:15
and every time i look at it i shit my pants
KEKW 1
Avatar
real and true...
Avatar
^words of a windows user (edited)
19:15
be strong
Avatar
Avatar
meloƞ
basically jupsti and milkeey want stuff to be stable - zaerin and teero want customizable shit - and me and ewan just hate ourselfs and love reading manuals for 20 hours a day just to realise it's a single typo messing up our entire config
Jupstar ✪ 2024-09-18 19:16
debian sid is the most unstable shit ever XD
Avatar
Avatar
Jupstar ✪
debian sid is the most unstable shit ever XD
true
Avatar
Jupstar ✪ 2024-09-18 19:16
it's just that every time i try arch, it's even worse or has fewer packages
Avatar
Avatar
zaerin
what is srt-bwrap 😭
its just a sandboxxed shell environment (?) - source: google
Avatar
like in debian most of the stuff i want doesnt even fucking exist in the package manager since its 7 years behind to be "stable"
Avatar
arch is prob the best distro for learning
Avatar
Avatar
Ewan
i have pages and pages of things to fix in my notes
Same, missing taskbar, 90s file manager, no clipboard
Avatar
pcmanfm
19:17
best
Avatar
nautilus user here
Avatar
nautilus bloat
Avatar
Avatar
meloƞ
its just a sandboxxed shell environment (?) - source: google
Is discord really picking my terminal emulator as activity
Avatar
although i mostly use the terminal xdd
Avatar
sometimes i like to browse remote filesystems graphically. and it integrates the best into gnome disks
19:17
this was my main desktop waiting in germany
Avatar
but nowdays i dont care bout looks cuz i actually have to work xdd
Avatar
looks straight out of unixporn
bluekitty 1
Avatar
i need to get my config to a stable point so i dont have to be managing it all the time
Avatar
Avatar
Teero
looks straight out of unixporn
they all use neovim there
Avatar
but then i want more...
Avatar
Yeah, i went with the nordic theme, but i didnt install a nice wm tbh
Avatar
Avatar
zaerin
they all use neovim there
true
19:19
like most ppl should (edited)
Avatar
i think gnome is actually the best as far as UX goes
Avatar
Avatar
Ewan
i need to get my config to a stable point so i dont have to be managing it all the time
the day you have a single shortcut to automatically open up a terminal with your config cd'd into and nvim started in webrc is the day you question yourself what you're doing with your life...
Avatar
their devs just dont care about anything but office use n shit
Avatar
Avatar
meloƞ
the day you have a single shortcut to automatically open up a terminal with your config cd'd into and nvim started in webrc is the day you question yourself what you're doing with your life...
yea
Avatar
Avatar
meloƞ
the day you have a single shortcut to automatically open up a terminal with your config cd'd into and nvim started in webrc is the day you question yourself what you're doing with your life...
Spend 6 hours automating it
Avatar
Avatar
zaerin
Spend 6 hours automating it
._.
Avatar
i super + q and type "c", autocomplete code --new-window ~/shit/ --disable-gpu
19:20
then i lose
Avatar
I clean installed arch 2 times to figure out my bluetooth headset
KEKW 1
Avatar
u just need to enable codecs in whichever pipewire session manager u use
Avatar
laughs in hardware.bluetooth.enable = true;
Avatar
still have to connect, disconnect, connect again to get the correct profiles to show up idk why
Avatar
Avatar
meloƞ
the day you have a single shortcut to automatically open up a terminal with your config cd'd into and nvim started in webrc is the day you question yourself what you're doing with your life...
MilkeeyCat 2024-09-18 19:20
i have bind in tmux to open projects i work on with key shortcut 😏
cat_hehe 1
Avatar
Avatar
Ewan
u just need to enable codecs in whichever pipewire session manager u use
I tried.....
Avatar
bluetoothEnhancements = { "monitor.bluez.properties" = { "bluez5.enable-sbc-xq" = true; "bluez5.enable-msbc" = true; "bluez5.enable-hw-volume" = true; "bluez5.codecs" = [ "ldac" "aptx" "aptx_11_duplex" "aptx_11" "aptx_hd" "opus_05_pro" "opus_05_71" "opus_05_51" "opus_05" "opus_05_duplex" "aac" "sbc_xq" ]; "bluez5.roles" = [ "a2dp_sink" "a2dp_source" "bap_sink" "bap_source" "hsp_hs" "hsp_ag" "hfp_hf" "hfp_ag" ]; }; }; };
19:21
mine
19:21
but u cant
19:21
cuz NIXOS
Avatar
Avatar
Ewan
u just need to enable codecs in whichever pipewire session manager u use
it may not actually be this
19:22
nixos is kind of smoke and mirrors
19:23
as far as what packages and config files are actually being used
19:23
when u type feature.enable = true
Avatar
my entire workspace froze trying to screenshot the issue
Avatar
basically codecs dont show up unless you connect it a second time
19:24
in pavucontrol
Avatar
oh are u using pulseaudio
19:25
@meloƞ weird question. what NIC do you have
Avatar
Avatar
Ewan
oh are u using pulseaudio
Pulseaudio (on pipewire 1.2.3)
Avatar
you're not actually using pulseaudio then
19:26
pipewire reimplements the pulse protocol
19:26
i dont think the config tool is necessarily the issue but i find pwvucontrol does generally work better
19:27
i think the cards tab is totally different
Avatar
the ones missing are a2dp
Avatar
Avatar
zaerin
the ones missing are a2dp
hsp is always there
Avatar
Avatar
Ewan
i think the cards tab is totally different
but if u change it here i think it should persist on a non-declarative system
Avatar
Avatar
zaerin
hsp is always there
hmm
19:28
I cant screenshot the dropdown
Avatar
aac is probably your best bet
Avatar
Avatar
Ewan
aac is probably your best bet
Yeah it works great
Avatar
that looks like pavucontrol tho
19:28
try pwvucontrol
Avatar
Avatar
Ewan
try pwvucontrol
I thought you did a typo there 🤦‍♂️
19:29
woah
Avatar
Avatar
Ewan
@meloƞ weird question. what NIC do you have
network card?
Avatar
0e:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05)
19:29
ig
19:29
i ahve intel i-225v
19:29
igc driver crashes all the time
19:29
ew
Avatar
Avatar
Ewan
try pwvucontrol
is it on the AUR
Avatar
i think it'd be in extra repos
19:30
pwvucontrol
19:30
😎
Avatar
oh wait that's something else?
Avatar
how to solve it?
Avatar
it was on the aur
Avatar
remove skins
Avatar
Avatar
Galard0
how to solve it?
remove 4k and high resolution skins and assets
Avatar
Avatar
Galard0
how to solve it?
it literally says it btw. please read the error message
Avatar
the game has no lazy loading - so it loads everything at once
Avatar
Avatar
zaerin
it was on the aur
ah
Avatar
Avatar
Galard0
how to solve it?
Jupstar ✪ 2024-09-18 19:31
where did you download you custom skins from?
Avatar
How do I start pwvucontrol
Avatar
pwvucontrol
Avatar
Jupstar ✪ 2024-09-18 19:32
we had all the annoying 4k skins gone
19:32
now many ppl this again xd
Avatar
is teedata still unmaintained?
Avatar
zsh: command not found: pwvucontrol
Avatar
Avatar
zaerin
zsh: command not found: pwvucontrol
how did you install it from aur?
19:32
did you use a helper? restart your terminal session
Avatar
Avatar
meloƞ
how did you install it from aur?
yay pwvucontrol
Avatar
Avatar
meloƞ
did you use a helper? restart your terminal session
I did
Avatar
i think yay needs -S
Avatar
Avatar
meloƞ
remove 4k and high resolution skins and assets
how to do it
19:33
if u wanted to win
Avatar
ah there was an error in the installation
19:33
im blind
Avatar
Avatar
Galard0
how to do it
#questions
19:34
i need a developer!! i can't read!!
NotLikeKogasa 1
Avatar
blund of you to assume i can read
Avatar
Avatar
meloƞ
remove 4k and high resolution skins and assets
I don't understand because I searched all the folders and didn't find the textures that I installed, and when I go into the settings, this error pops up in the interior of the game
Avatar
how do u get the bot to say the data dir
Avatar
$rtfm configdir
Avatar
Avatar
zaerin
Click to see attachment 🖼️
AUR moment
Avatar
Setting not found.
Avatar
!datadir
Avatar
nah it was $
Avatar
$rtfm local
Avatar
Setting not found.
Avatar
god damn it bot
Avatar
Avatar
Ewan
AUR moment
this happened before but I forgot the fix
Avatar
Jupstar ✪ 2024-09-18 19:36
$configdir
Avatar
Avatar
Jupstar ✪
$configdir

DDNet config directory:

On Windows: Old: %appdata%\Teeworlds New: %appdata%\DDNet On Linux: Old: ~/.teeworlds New: ~/.local/share/ddnet On macOS: Old: ~/Library/Application Support/Teeworlds New: ~/Library/Application Support/DDNet
Avatar
THANK YOU
Avatar
Avatar
Galard0
I don't understand because I searched all the folders and didn't find the textures that I installed, and when I go into the settings, this error pops up in the interior of the game
press Win + R; type %appdata%\DDNet; delete everything in skins and downloadedskins i guess
19:37
@Galard0 forgot to ping you
Avatar
Avatar
Ewan
AUR moment
ghostscript is on the arch repos too
19:37
but it still fails
19:37
not aur
Avatar
get it first
19:37
yay -S ghostscript
Avatar
Avatar
meloƞ
we lost ryo after he got a girl
not rly its work taking over my programming battery
Avatar
or w/e
Avatar
Avatar
Ewan
or w/e
same error on all
Avatar
Avatar
meloƞ
basically jupsti and milkeey want stuff to be stable - zaerin and teero want customizable shit - and me and ewan just hate ourselfs and love reading manuals for 20 hours a day just to realise it's a single typo messing up our entire config
gentoo
Avatar
Avatar
Ewan
press Win + R; type %appdata%\DDNet; delete everything in skins and downloadedskins i guess
Thank you my friend
Avatar
Avatar
Ryozuki
gentoo
gentoo if you hate yourself and all your ancestors - you dont care what happened or will happen, all you do is wear a single batch hidden from peasants eyes mildly displaying "i use gentoo btw" on your left arm
Avatar
Avatar
Galard0
Thank you my friend
Jupstar ✪ 2024-09-18 19:39
@Galard0 where did u download your skins from?
Avatar
Avatar
Jupstar ✪
@Galard0 where did u download your skins from?
15.16 MB
Avatar
Avatar
Galard0
Click to see attachment 🖼️
Jupstar ✪ 2024-09-18 19:40
where did u get that rar 😄
19:40
is there some discord for that?
Avatar
that's not even the best skins rar (edited)
Avatar
nak tekctyp anr ddne.rar ._.
19:40
ik
Avatar
Avatar
Jupstar ✪
@Galard0 where did u download your skins from?
I downloaded a lot of textures at once, and that's why I was thrown out of the game.
Avatar
Avatar
Galard0
I downloaded a lot of textures at once, and that's why I was thrown out of the game.
Jupstar ✪ 2024-09-18 19:41
yes, but who gave you these textures
Avatar
just add skins 1 by one as you need them
Avatar
Avatar
Jupstar ✪
yes, but who gave you these textures
who cares XD
Avatar
Jupstar ✪ 2024-09-18 19:41
your friend?
Avatar
jupstar goes on a manhunt
19:41
>
Avatar
Avatar
Ewan
who cares XD
Jupstar ✪ 2024-09-18 19:41
well i care bcs ppl should understand that sharing 4k textures is bad
Avatar
it isn't
Avatar
Jupstar ✪ 2024-09-18 19:41
alter
Avatar
Avatar
Jupstar ✪
yes, but who gave you these textures
There are many intusiasts on Russian YouTube
Avatar
Avatar
Galard0
There are many intusiasts on Russian YouTube
Jupstar ✪ 2024-09-18 19:42
ok thanks
Avatar
u dont zooz much do u jopsti
19:42
there is a real need for it
19:42
esp at hi res
Avatar
Jupstar ✪ 2024-09-18 19:42
cmon (edited)
19:42
don't do this to me tonight
Avatar
so close to rm -rf /*
Avatar
1:42 pm
Avatar
Avatar
Jupstar ✪
ok thanks
Since I'm from Russia, this is not a problem, but with solving problems like removing textures, it's a real trouble
19:43
Thank you, I'm off.
Avatar
Avatar
Galard0
Since I'm from Russia, this is not a problem, but with solving problems like removing textures, it's a real trouble
Jupstar ✪ 2024-09-18 19:43
yeah it's a problem that they share textures for 32k monitors 😄
19:43
nobody has those
Avatar
if u use the vulkan backend i believe that skins will be backed by system memory if u have no vram
Avatar
Avatar
Jupstar ✪
yeah it's a problem that they share textures for 32k monitors 😄
ya
19:43
well if they don't warn about the 4k skins it's bad
Avatar
Jupstar ✪ 2024-09-18 19:44
the problem is, even on opengl these textures probably cause some laggs
19:44
bcs they are really cache unfriendly
Avatar
Avatar
Jupstar ✪
yeah it's a problem that they share textures for 32k monitors 😄
Yes, it is more so when weak computers it depresses the situation
Avatar
tho u know the real answer right
19:44
that's a DDNet problem
19:44
not a skins problem
Avatar
Avatar
Ewan
well if they don't warn about the 4k skins it's bad
Jupstar ✪ 2024-09-18 19:44
yeah maybe we should, depending on the users resolution or smth xd
Avatar
where do they find 4k ddnet skins
Avatar
there are SVGs online
19:45
you can render at any res
19:45
ach i gotta get some work done
19:46
bbl
👋 1
Avatar
Avatar
Ewan
there are SVGs online
Got it from flatpak but now it crashes on any button click
Avatar
GitHub BOT 2024-09-18 19:57
Taken from https://github.com/teeworlds/teeworlds/pull/2730 Previously it may have been confusing if you were to run your server outside of the scope, e.g. 8311 and it not showing up because of it. The only mention of the port range is in the sv_port description which is easy to miss. !LAN

Checklist

  • [x] Tested the change ingame
  • [x] Provided screenshots if it is a visual change
  • [ ] Teste...
Avatar
Avatar
zaerin
Got it from flatpak but now it crashes on any button click
i thought this tool was way more popular tbh
19:58
works great for me
Avatar
Avatar
Ewan
works great for me
It worked after rebooting
20:04
fixed my problem too
20:04
tyyy
Avatar
GitHub BOT 2024-09-18 21:29

Checklist

  • [x] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test (especially base/) or added coverage to integration test
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with [ASan+UBSan or valgrind's memcheck](https://github.com/ddnet/ddnet/#using-ad...
Avatar
GitHub BOT 2024-09-18 21:46
9b1a6ac better lan page no servers found message - dobrykafe 16adc7d Merge pull request #8989 from dobrykafe/pr-lan-page-message - def-
Avatar
GitHub BOT 2024-09-18 22:09
9e8dfc7 editor: allow non-conflicting keybinds while line input is active - dobrykafe e72ace2 Merge pull request #8990 from dobrykafe/pr-editor-line-input - def-
Avatar
ws-client BOT 2024-09-18 23:16
<ChillerDragon> @Teero accounts on my video platform are useless xd you need ssh access to upload files haha
Avatar
gimme ssh access xddd
Avatar
ws-client BOT 2024-09-18 23:18
<ChillerDragon> justatest
Avatar
Also I need a cpu supercomputer if you have some laying around chiller
23:31
Would be nice uwu
Exported 986 message(s)
Timezone: UTC+0