Guild icon
DDraceNetwork
DDraceNetwork / questions
For newcomers to ask questions and get help. Also check https://wiki.ddnet.org/wiki/FAQ
Between 2022-03-03 00:00:00Z and 2022-03-04 00:00:00Z
Avatar
why do i have suddenly 65 ping on ger2 server?
00:06
when i always had a 25 ping
Avatar
bad routing probably. just use ger3 for now?
Avatar
how can i solve bad routing?
Avatar
talk to your isp
00:07
and send them a tracert ger2.ddnet.tw from cmd.exe
Avatar
hm i'd rather just wait for now and see if it fixes itself
Avatar
1. What does the DD in DDrace Stand for 2. I have edited some image files to have a cool banner in the main menu, IF they game updated would my changes to the game be overwritten or not affected? [Note: No ingame advantages just image edits]
Avatar
dd means Dummy Drag i think
03:33
also nah ur menu theme would be fine updates dont affect custom skins so themes should be just as fine (edited)
Avatar
aight cool. thx for tellin me 😄
Avatar
Avatar
Retr0Breezy
1. What does the DD in DDrace Stand for 2. I have edited some image files to have a cool banner in the main menu, IF they game updated would my changes to the game be overwritten or not affected? [Note: No ingame advantages just image edits]
As long as your menu stuff is in the Teeworlds folder it's safe
Avatar
Avatar
deen
Never heard of that. Any strange software running in the background?
nope
Avatar
Avatar
Csipesz
Hey guys! I got a problem where I can't move and shoot/hammer at the same time, the game only lets me use left click after like 1.5-2 seconds of not moving. I know for a facts it's not a mouse or computer issue. I tried restarting, deleting and reinstalling, with a completely clean config file, nothing seems to work. It happens annoyingly frequently and I'd like to know if there's a solution that is not waiting days/weeks for it to magically resolve itself. If anybody knows anything that might help, I'd greatly appreciate it. Cheers!
do you mean mouse moving or player moving?
Avatar
Avatar
Csipesz
Hey guys! I got a problem where I can't move and shoot/hammer at the same time, the game only lets me use left click after like 1.5-2 seconds of not moving. I know for a facts it's not a mouse or computer issue. I tried restarting, deleting and reinstalling, with a completely clean config file, nothing seems to work. It happens annoyingly frequently and I'd like to know if there's a solution that is not waiting days/weeks for it to magically resolve itself. If anybody knows anything that might help, I'd greatly appreciate it. Cheers!
I know something similar from touchpad drivers, that they block the keyboard when you use the touchpad, or the other way around. Are you playing on a notebook? (edited)
Avatar
Player moving
13:40
Yes currently I am
13:40
But it is an issue on a PC as well
Avatar
who have passed mazepack?
13:57
no demo tho :/
Avatar
Hi everyone I need some help. I don’t know why I hold a or d and toggle dummy ,and it don’t keep moving. Dose anyone know why? It usually works.
Avatar
Avatar
Ayano
who have passed mazepack?
Avatar
Avatar
200
Hi everyone I need some help. I don’t know why I hold a or d and toggle dummy ,and it don’t keep moving. Dose anyone know why? It usually works.
cl_dummy_resetonswitch 0 to make it keep holding (edited)
Avatar
Avatar
bencie
Click to see attachment 🖼️
thanks
Avatar
Avatar
bencie
cl_dummy_resetonswitch 0 to make it keep holding (edited)
Thank you I not good at bind xd
Avatar
bind x "toggle cl_dummy_resetonswitch 0 1"
Avatar
Avatar
Zeral
bind x "toggle cl_dummy_resetonswitch 0 1"
Oh thank you
happy 1
14:03
wow it work I need to learn more about bind xd
14:06
^to display in chat whether resetonswitch is on aswell as toggling on 1 key
Avatar
does anyone has a list which team has which color?
Avatar
Avatar
HappyFray
does anyone has a list which team has which color?
one moment I can create you one. Do you want it in RGB? the formular is: ColorHSLA(TeamNumber / 64.0f, 1.0f, 0.75f)
♥️ 1
Avatar
Avatar
HappyFray
does anyone has a list which team has which color?
I used this script import math def clamp(value, min_value, max_value): return max(min_value, min(max_value, value)) def saturate(value): return clamp(value, 0.0, 1.0) def hue_to_rgb(h): r = abs(h * 6.0 - 3.0) - 1.0 g = 2.0 - abs(h * 6.0 - 2.0) b = 2.0 - abs(h * 6.0 - 4.0) return saturate(r), saturate(g), saturate(b) def hsl_to_rgb(h, s, l): r, g, b = hue_to_rgb(h) c = (1.0 - abs(2.0 * l - 1.0)) * s r = (r - 0.5) * c + l g = (g - 0.5) * c + l b = (b - 0.5) * c + l return r, g, b print('Team ID\tNameplate color\tScoreboard color') for TeamNumber in range(64): r, g, b = hsl_to_rgb(TeamNumber / 64.0, 1, 0.75) nameplate_color = (int(r * 255), int(g * 255), int(b * 255)) r, g, b = hsl_to_rgb(TeamNumber / 64.0, 1, 0.5) scoreboard_color = (int(r * 255), int(g * 255), int(b * 255), 127) print(f"{TeamNumber}\t{nameplate_color}\t{scoreboard_color}") (edited)
👍 1
Avatar
better with an image
18:22
👍 2
Avatar
left is nameplate, right is scoreboard
Avatar
Avatar
Chairn
better with an image
awesome image!
Avatar
Avatar
HappyFray
does anyone has a list which team has which color?
Avatar
Avatar
Chairn
Click to see attachment 🖼️
Can you share with me the script you used to create the image? Maybe one can use it for something else
Avatar
48 is my team # nobody allowed to use it
Avatar
47 and 48 are the best colors
Avatar
48 matches my tee 🥰
Avatar
Where is the teeworlds folder on Arch linux?
19:22
Im searching a saved map but i have no idea where it go (edited)
Avatar
Avatar
Chairn
Click to see attachment 🖼️
Omg you are a Genius thx That you Took your Tine to create That !
Avatar
Avatar
Deleted User
Where is the teeworlds folder on Arch linux?
your config folder is on ~/.teeworlds or /home/your_username/.teeworlds the game folder is in /usr/share/ddnet (edited)
Avatar
Avatar
Deleted User
Im searching a saved map but i have no idea where it go (edited)
downloaded maps are in ~/.teeworlds/downloadedmaps
Avatar
Yep thx
19:49
👍
Avatar
what is the easiest insane map?
justatest 1
Avatar
Avatar
c0d3d3v
Can you share with me the script you used to create the image? Maybe one can use it for something else
i rougly copy-pasted your code + the example from matplotlib: https://matplotlib.org/stable/gallery/color/named_colors.html
2.54 KB
❤️ 1
Avatar
Avatar
HappyFray
Omg you are a Genius thx That you Took your Tine to create That !
about 10 minutes ^_^
Avatar
Avatar
Allekstat
what is the easiest insane map?
Looking at the number of finishes, I would guess Ravillion. But I'm not even a Brutal player, so I can only guess.
Avatar
oh thanks
Avatar
Avatar
c0d3d3v
Looking at the number of finishes, I would guess Ravillion. But I'm not even a Brutal player, so I can only guess.
i think its not the easiest insane, the reason it has too many finishes is because its not a faily map
Avatar
you mean because 80% are gifted finishes
justatest 1
Avatar
Next map in line would be Binary, which has about half as many finishes, is little faily and has existed almost twice as long.
Exported 61 message(s)