Guild icon
DDraceNetwork
Development / developer
Development discussion. Logged to https://ddnet.tw/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 2020-05-04 00:00:00Z and 2020-05-05 00:00:00Z
Avatar
8c48588 Update tournament results - def-
Avatar
@Learath2
08:54
how to on
08:54
arrows
08:54
to see it
08:56
how to see
08:56
how u move
Avatar
settings > ddnet if I remember correctly
Avatar
[quakenet] ChillerDragon BOT 2020-05-04 10:38:58Z
Yes its easy to find in the ui as NeXus said under settings > ddnet but the config name is kinda hard to guess imo cl_show_direction
Avatar
better than cl_show_others_keypresses or whatever other naming it could get
13:49
and there are commands with harder names, that's why https://ddnet.tw/settingscommands/ happens to be very useful
Avatar
@Soreu ❤️
13:52
Ty
14:28
someone tell me why is this a thing
Avatar
also i cant connect the dummy because the server thinks its already there and when i try to disconnect it tells me like do i really want to do that because the time is >20 minutes
14:29
and i cant connect dummy again
Avatar
why does the server think its already there
14:30
it should allow 4/ip on ddnet
Avatar
yeah idk why i said that the server thinks its there
14:32
the client thinks its there
14:32
but the server doesn't let it back in
Avatar
[quakenet] ChillerDragon BOT 2020-05-04 14:36:08Z
@fokkonaut it says 39/128 and server full on connect :/
Avatar
lol really?
Avatar
[quakenet] ChillerDragon BOT 2020-05-04 17:07:51Z
can i restart mysql while tw servers are running?
Avatar
@ChillerDragon restart my Server please i am not at home
Avatar
[quakenet] ChillerDragon BOT 2020-05-04 17:31:44Z
restarted
17:32
do you know why it says its full?
Avatar
@noby
18:30
u can help?
Avatar
:d
18:30
how to gide
18:30
hide
18:30
nicknames
Avatar
cl_nameplates 0
Avatar
tyy
Avatar
why u ping specific mods/admins
19:17
just ask in general chat
Avatar
yes exactly
19:17
and just say what u want
19:17
first
19:21
saving this
19:22
puts into words why this type of behavior irritates me
Avatar
Don't Just Say "Hello" in Chat.
19:22
Asking about your attempted solution rather than your actual problem
Avatar
where dou find these
Avatar
candide on freenode has commands for these
19:23
like ,xy and ,justask
19:23
we can add them to @DDNet 😛
Avatar
0350dbf Add donation by 182 € donation Sweeeeet GM :>, fully covered for 2020! - def-
Avatar
any ddnet experts here?
Avatar
no, wrong discord, I think
Avatar
bcb456d Revert "Update tournament results" - def-
21:02
8361a9f Revert "Revert "Update tournament results"" - def-
21:03
Revert Revert Revert Revert
Avatar
is the mouse_max_distance bind blocked?
Avatar
cl_mouse_max_distance
21:27
should work fine
Avatar
when I use cl_mouse_max_distance 2 I start lagging, cant move and cant shoot with grenade
Avatar
@NeXus bind <key> "+toggle cl_mouse_max_distance 2 <your_regular_distance>"
Avatar
I know, I have it bound for ages and it always worked
Avatar
@NeXus works for me
Avatar
Restarted the client, I can shoot again but it still starts to lagg
21:31
hm
21:31
try moving while shooting with distance 2 (edited)
Avatar
ok, there's definitely something wrong going on
Avatar
you can recreate it on run_2rockets
Avatar
with my bind mouse5 "+toggle cl_mouse_max_distance 2 250; +toggle inp_mousesens 1 200" I'm getting laggy for up to 5 sec
21:34
didn't happen on other map with laser
21:34
but on run_2Rockets it does with nade every single time
21:37
ok, nvm, seems it coincidentally happened at the same time with general server lags xd
Avatar
out of interest, why were the tournament results reverted?
Avatar
I have found a feature all programming languages should have, breaking out of any arbitrary block
22:04
the usual deep nesting of if statements is just not easy to read
22:04
the usual advice from "seasoned" veterans would be to move things to a function, yet if we had a generic break, it'd look much cleaner
Avatar
agree for normal imperative languages
22:05
python lacks it, c/c++ lack it
22:05
not sure about go
Avatar
I somehow feel like one day you guys will be so tired of fighting with all the languages you will for real create own one
Avatar
I don't know of any language that has it tbh
Avatar
rust, java
Avatar
Even better would be a generic break out of n layers of blocks
22:06
@heinrich5991 I don't think java has one
Avatar
ah, I probably misunderstood what you mean
22:06
you also want to break out of bare {} blocks
Avatar
yes, any block
Avatar
wasm has that 😄
22:07
you can "emulate" it in languages which have break out of any loop
Avatar
well it might be because i've been looking at way too much assembly the last couple days, but error handling looks so much more elegant with a flag and break
22:08
do{}while(false)?
Avatar
while(1) { if(false) break; // you can break here break; }
Avatar
or that
Avatar
ah yea, also with do {} while() (if you support labeled break)
Avatar
Hm, might even be better then exceptions
22:11
``` { if(someissue){ error = true; break; } ... } if(error) handleerror();
22:11
noooo
22:11
stupid discod
22:11
discord*
22:15
Update: now a pull request Feature Name: label_break_value Summary Allow a break not only out of loop, but of labelled blocks with no loop. Like loop, this break can carry a value. This depends on RFC 1624 landing. I proposed this here. An identical proposal was part of th...
22:15
rust doesn't seem to have it, and apparently java can do it with labelled blocks
Avatar
java can break out of any (labeled) block?
22:17
TIL
22:20
@Learath2 apparently implemented in rust, but not stable yet: https://github.com/rust-lang/rust/issues/48594
This is a tracking issue for RFC 2046 (rust-lang/rfcs#2046). Steps: Implement the RFC (done in #50045) Adjust documentation (see instructions on forge) Stabilization PR (see instructions on forge) ...
Avatar
pf, so much discussion for such a simple feature
22:28
I wonder if it'll ever get stable
Avatar
dunno, also just read that whole discussion ^^
Avatar
in go u would do for { // stuff break }
22:50
btw go doesnt have while
Avatar
can you break out of outer loops in go?
Avatar
you can break with a label
22:50
Avatar
ah, like java
22:51
and I guess go's while loop is just a while loop where the keyword was replaced with for? or can you truly not write a while loop?
Avatar
you can do
22:52
for x <= 2 {}
22:52
for x := 0; x < 10; x++{}
22:52
i like how modern languages tend to remove unnecessary stuff
22:52
like () around if
22:52
also
22:52
for x := range a {}
Exported 134 message(s)