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-11-04 00:00 and 2024-11-05 00:00
Avatar
GitHub BOT 2024-11-04 00:08
Closed #9201

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/#...
Avatar
ws-client BOT 2024-11-04 00:51
<ChillerDragon> @Evelyn fixed
01:52
And where to specify the zone for the block tournament?
Avatar
ws-client BOT 2024-11-04 03:42
<ChillerDragon> @Evelyn index 131
Avatar
can anyone help me with my idea? I want to render a flag if variable is true. my shit code c++ if (g_Config.m_RenderFlag) { Graphics()->TextureSet(m_pClient->m_GameSkin.m_SpriteFlagBlue); // m_pClient->m_GameSkin.m_SpriteFlagRed Graphics()->SetColor(1.f, 1.f, 1.f, 1.f); Graphics()->RenderQuadContainerAsSprite(m_HudQuadContainerIndex, m_FlagOffset, 1.0f * Pos.x, 1.0f * Pos.y, 2.5f, 2.f); } (edited)
Avatar
chillerdragon BOT 2024-11-04 05:44
Looks like you are done
Avatar
nah cuz i cant render it on my pos
05:44
;c
Avatar
chillerdragon BOT 2024-11-04 05:45
What is Pos
Avatar
on player position
Avatar
Avatar
chillerdragon
What is Pos
player char position
Avatar
chillerdragon BOT 2024-11-04 05:45
Can you show the code that sets it
05:46
Or even better link your repo
Avatar
c++ void CHud::RenderFlag() { int ClientID = m_pClient->m_aLocalIDs[g_Config.m_ClDummy]; // just shit bly const CNetObj_Character *pPrevChar = &m_pClient->m_Snap.m_aCharacters[ClientID].m_Prev; const CNetObj_Character *pCurChar = &m_pClient->m_Snap.m_aCharacters[ClientID].m_Cur; const float IntraTick = Client()->IntraGameTick(g_Config.m_ClDummy); const vec2 Pos = mix(vec2(pPrevChar->m_X, pPrevChar->m_Y), vec2(pCurChar->m_X, pCurChar->m_Y), IntraTick) / 32.0f; const vec2 Vel = mix(vec2(pPrevChar->m_VelX, pPrevChar->m_VelY), vec2(pCurChar->m_VelX, pCurChar->m_VelY), IntraTick); if (g_Config.m_udebug) { Graphics()->TextureSet(m_pClient->m_GameSkin.m_SpriteFlagBlue); // m_pClient->m_GameSkin.m_SpriteFlagRed Graphics()->SetColor(1.f, 1.f, 1.f, 1.f); Graphics()->RenderQuadContainerAsSprite(m_HudQuadContainerIndex, m_FlagOffset, 1.0f * Pos.x, 1.0f * Pos.y, 2.5f, 2.f); } }
Avatar
chillerdragon BOT 2024-11-04 05:48
LGTM have you looked at how the other flags are rendered?
05:48
Also which screen mapping are you in? World or screen?
Avatar
Avatar
chillerdragon
Also which screen mapping are you in? World or screen?
screen
Avatar
chillerdragon BOT 2024-11-04 05:49
It says CHud so I assume it’s not rendering at world coordinates
05:49
Yea map it to world
05:49
If you want to draw in the world
Avatar
Avatar
chillerdragon
LGTM have you looked at how the other flags are rendered?
i found only in hud flag render like this
05:51
in score hud
Avatar
chillerdragon BOT 2024-11-04 05:51
But that’s not what you want
05:51
That’s not in game that’s hud
Avatar
chillerdragon BOT 2024-11-04 05:52
You need to look at the other code or call the MapToWorld method thingy
05:52
Well for example draw at 0,0 could mean top left of the map or top left of your screen. That’s why there are two draw modes.
05:52
Does that make sense?
Avatar
chillerdragon BOT 2024-11-04 05:53
I am on the phone I can’t send you the code you gotta search for the method your self
Avatar
Avatar
chillerdragon
I am on the phone I can’t send you the code you gotta search for the method your self
okey
Avatar
chillerdragon BOT 2024-11-04 05:54
It takes a bunch of screen coordinates as argument and is called something MapScreenWorld whatever xd
Avatar
RenderTools()->MapScreenToGroup() <- this method fix it how i think
Avatar
chillerdragon BOT 2024-11-04 05:55
Yea that looks good
05:55
Or you just move your code to where the in game flags are rendered
05:55
Maybe in players.cpp
Avatar
Avatar
ws-client
<ChillerDragon> @Evelyn index 131
What is this?
06:27
<ChillerDragon> you can also put this image into your entities folder https://github.com/DDNetPP/DDNetPP/blob/master/data/mapres/fddracepp.png
DDraceNetwork + city + block! Based on ddnet (www.ddnet.tw) which is based on teeworlds (www.teeworlds.com). - DDNetPP/DDNetPP
Avatar
Avatar
3x1sT
RenderTools()->MapScreenToGroup() <- this method fix it how i think
and it didnt help ;/
Avatar
ws-client BOT 2024-11-04 06:38
<ChillerDragon> go send code
Avatar
c++ void CHud::RenderPlayerFlag() { int ClientID = m_pClient->m_aLocalIDs[g_Config.m_ClDummy]; // just shit bly const CNetObj_Character *pPrevChar = &m_pClient->m_Snap.m_aCharacters[ClientID].m_Prev; const CNetObj_Character *pCurChar = &m_pClient->m_Snap.m_aCharacters[ClientID].m_Cur; const float IntraTick = Client()->IntraGameTick(g_Config.m_ClDummy); const vec2 Pos = mix(vec2(pPrevChar->m_X, pPrevChar->m_Y), vec2(pCurChar->m_X, pCurChar->m_Y), IntraTick) / 32.0f; const vec2 Vel = mix(vec2(pPrevChar->m_VelX, pPrevChar->m_VelY), vec2(pCurChar->m_VelX, pCurChar->m_VelY), IntraTick); Graphics()->TextureClear(); Graphics()->TextureSet(m_pClient->m_GameSkin.m_SpriteFlagBlue); // m_pClient->m_GameSkin.m_SpriteFlagRed Graphics()->SetColor(1.f, 1.f, 1.f, 1.f); //RenderTools()->MapScreenToGroup(m_pClient->m_Camera.m_Center.x, m_pClient->m_Camera.m_Center.y, Layers()->GameGroup(), m_pClient->m_Camera.m_Zoom); Graphics()->RenderQuadContainerAsSprite(m_HudQuadContainerIndex, m_FlagOffset, Pos.x, Pos.y, 2.5f, 2.f); } with RenderTools()->MapScreenToGroup() , flag just dont render ;/
06:39
or idk, render on wrong position
06:40
but i'll try '* 32' my pos
06:44
06:44
xd
06:47
<ChillerDragon> i managed to attach it xd
Avatar
Avatar
ws-client
cool xd
Avatar
ws-client BOT 2024-11-04 06:47
<ChillerDragon> these fakin texture index shits make everything more complicated
Avatar
backpack-worlds
Avatar
ws-client BOT 2024-11-04 06:51
<ChillerDragon> @3x1sT here u go https://paste.zillyhuhn.com/Kn
06:51
<ChillerDragon> put this in items.cpp OnRender
Avatar
Avatar
ws-client
<ChillerDragon> @3x1sT here u go https://paste.zillyhuhn.com/Kn
k, thanks
Avatar
Avatar
ws-client
can i have also this?
Avatar
ws-client BOT 2024-11-04 06:53
<ChillerDragon> xd
Avatar
ws-client BOT 2024-11-04 06:53
<ChillerDragon> i already deleted the code -.-
06:54
<ChillerDragon> undo ftw
06:54
06:54
<ChillerDragon> players.cpp
Avatar
Avatar
ws-client
<ChillerDragon> players.cpp
again thanks
Avatar
ws-client BOT 2024-11-04 06:55
<ChillerDragon> new bot client with epic cosmetics incoming axaxaxax
Avatar
Avatar
ws-client
<ChillerDragon> new bot client with epic cosmetics incoming axaxaxax
frfr xD
Avatar
/ban 3x1sT asked sus questions in #developer greenthing
Avatar
Stretched nade on your head for only 10.99
06:56
Gm btw
Avatar
Avatar
Teero
Stretched nade on your head for only 10.99
? Gm
06:57
Pls not another paid client with cosmetics that take 15 minutes to make reeeee
Avatar
Avatar
meloƞ
Pls not another paid client with cosmetics that take 15 minutes to make reeeee
nouis
pepeW 1
Avatar
Make a whole ass marvel production atleast (edited)
Avatar
Avatar
Teero
Stretched nade on your head for only 10.99
good slogan btw xD
07:00
<ChillerDragon> client dev is trol
Avatar
Avatar
ws-client
Now add a server side helicopter sound, add lasers and recreate battlefield because that gamemode was the fucking Shit Back then
Avatar
MilkeeyCat 2024-11-04 07:03
Morning 0 based indexing enjoyers and others
Avatar
Avatar
MilkeeyCat
Morning 0 based indexing enjoyers and others
Mornin
Avatar
Avatar
MilkeeyCat
Morning 0 based indexing enjoyers and others
gm
Avatar
ws-client BOT 2024-11-04 07:06
<ChillerDragon> can some1 help me ping @cellegen plz
Avatar
@Cellegen sure
👀 1
Avatar
ws-client BOT 2024-11-04 07:14
<ChillerDragon> yo cellegen do you have the shields you added to game.png as svg or only as pixels?
Avatar
Avatar
ws-client
doick Cargobasket 2024-11-04 07:36
im love it
Avatar
GitHub BOT 2024-11-04 08:21
3ea862c Send password on reconnect - ChillerDragon 22571f1 Merge pull request #9204 from ChillerDragon/pr_send_pass_on_reconnect - def-
Avatar
GitHub BOT 2024-11-04 08:37

Checklist

  • [ ] 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-11-04 08:53

Checklist

  • [ ] 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
Avolicious 2024-11-04 09:41
Any rustacean used https://github.com/helix-editor/helix so far & how was his/her/* experience?
A post-modern modal text editor. Contribute to helix-editor/helix development by creating an account on GitHub.
Avatar
GitHub BOT 2024-11-04 09:44
24c2bb5 Update Turkish translation for 18.7 - GokturkTalha 2b4f32d Update azerbaijanese.txt - GokturkTalha f64ba64 azerbaijanese > azerbaijani - GokturkTalha 11c10a5 Fix CMakeLists.txt - def- 15cd607 Merge pull request #9206 from def-/GokturkTalha-master - def-
Avatar
@ChillerDragon are you here?
Avatar
ChillerDragon
11:25
arise
11:25
hehe
11:26
he's online at around 3:30am CEST
11:26
usually
Avatar
Avatar
ws-client
<ChillerDragon> yo cellegen do you have the shields you added to game.png as svg or only as pixels?
I have them in svg
11:38
I'll get them, but it'll take hours with my absolute shit internet
Avatar
ws-client BOT 2024-11-04 11:45
<ChillerDragon> @Evelyn just ask for what you need. asking if im here is never a good strategy
11:46
<ChillerDragon> @Cellegen pog
Avatar
nvm, I only have the grenade shield cuz I didnt save all of them
Avatar
ws-client BOT 2024-11-04 11:46
<ChillerDragon> rip
11:46
<ChillerDragon> send grenade anyways
Avatar
I can send you the shield and just paste in the svg weapons + colors
Avatar
ws-client BOT 2024-11-04 11:47
<ChillerDragon> also sounds good
Avatar
the shield is actually different from the original
Avatar
ws-client BOT 2024-11-04 11:47
<ChillerDragon> and the weapons inside?
Avatar
the weapons are not
Avatar
ws-client BOT 2024-11-04 11:47
<ChillerDragon> nice
Avatar
ws-client BOT 2024-11-04 11:48
<ChillerDragon> nice thanks
Avatar
np
Avatar
ws-client BOT 2024-11-04 11:50
<ChillerDragon> omg fakin matrix doesnt let me download it xd
Avatar
ws-client BOT 2024-11-04 11:50
<ChillerDragon> got it
11:50
<ChillerDragon> only took 4 different attempts
Avatar
btw chiller, you probably can't see the #town-hall channels no?
11:55
meaning you may not know about my own project #deleted-channel
Avatar
ws-client BOT 2024-11-04 11:56
<ChillerDragon> no i dont
11:56
<ChillerDragon> you mean your game engine project which i ask you about all the time?
Avatar
I guess
11:58
I'm taking it seriously now, with proper organizing and making a base for other people to build upon
Avatar
chiller\
11:58
ho
Avatar
MilkeeyCat 2024-11-04 11:58
chillerdragon: are you here?
Avatar
ws-client BOT 2024-11-04 11:58
<ChillerDragon> ijoad
Avatar
You can make it possible to redirect all actions on the server to a telegram bot or discord bot
Avatar
he's only here for me
12:00
gigachad
Avatar
ws-client BOT 2024-11-04 12:00
<ChillerDragon> what are actions
Avatar
Messages in the chat, someone has entered the team, the person’s finish time
Avatar
ws-client BOT 2024-11-04 12:01
<ChillerDragon> ah just bridge the chat
12:01
<ChillerDragon> sure i can add that
12:01
<ChillerDragon> not today
Avatar
go tomorrow pls?
Avatar
ws-client BOT 2024-11-04 12:02
<ChillerDragon> if i dont forget
Avatar
ws-client BOT 2024-11-04 12:02
<ChillerDragon> i will do discord bcs i dont know telegram is that oke?
Avatar
Avatar
Avolicious
Any rustacean used https://github.com/helix-editor/helix so far & how was his/her/* experience?
I am using it currently. Although I am not rustacean. (booting up pc)
12:17
It's ok. It does it job although until I got used to it I was constantly opening the keymap to search for things
12:17
It's ok as in it's good but has some issues/problems
12:22
The first issue that comes to mind is that there isn't a way to map the key I pressed (α ξ κ) to the corresponding english (a j k) In my previous editor ( vis ) I did it like this cmd('langmap ΑΒΨΔΕΦΓΗΙΞΚΛΜΝΟΠΡΣΤΘΩ-ΧΥΖαβψδεφγηιξκλμνοπρστθωςχυζ' .. ' ABCDEFGHIJKLMNOPRSTUVWXYZabcdefghijklmnoprstuvwxyz') (edited)
A vi-like editor based on Plan 9's structural regular expressions - martanne/vis
Avatar
And when I tried to manually set each greek letter to do the same as the english letter I ran into problems, mainly because "(σ ς)" capitalized became the same "(Σ Σ)" so helix thought it was the same key. So I kinda abandon making the mapping
12:26
Another "problem" is that it's hasn't client-server architecture as I thought it would but I didn't really mind since vis didn't either
Avatar
Avatar
Mr.Gh0s7
And when I tried to manually set each greek letter to do the same as the english letter I ran into problems, mainly because "(σ ς)" capitalized became the same "(Σ Σ)" so helix thought it was the same key. So I kinda abandon making the mapping
did you file an issue? sounds like a ridiculous problem
Avatar
the last one that is in my mind rn, is that you can't perform actions (some?) on multiple cursors which is annoying
12:28
(it has mutliple cursors but sometimes they have missing features/can't do certain things you should)
Avatar
For example (in progress making vid...)
Avatar
Avatar
zhn
did you file an issue? sounds like a ridiculous problem
I didn't justatest
12:41
I don't really remember if it was discussed though.
Avatar
Avatar
ws-client
<ChillerDragon> i will do discord bcs i dont know telegram is that oke?
Ok
Avatar
Avatar
Mr.Gh0s7
For example (in progress making vid...)
Avatar
ws-client BOT 2024-11-04 12:43
<ChillerDragon> @Evelyn nvm im done today xd
12:43
<ChillerDragon> u got a discord webhook? @Evelyn
12:46
ChillerDragon: uwu from lan server axaxax
12:47
ChillerDragon: @Evelyn u afk?
12:48
<ChillerDragon> being able to setup discord webhooks for ddnet#developer is quite funny xd
Avatar
I select everything inside the function (mif) and then I select (s) with regex awful\.key\( the awful.key so I have multiple cursors now. But when I search (/) it only searches on one cursor. So I can't do 'select awful.key then search function add new line etc' because it only works on one cursor. I remeber I had looked it up/researched it but I didn't find useful results
Avatar
ws-client BOT 2024-11-04 12:49
<ChillerDragon> well in case we miss each other the new config is sv_chat_discord_webhook and the value is your full webhook url @Evelyn
Avatar
Avatar
Mr.Gh0s7
I select everything inside the function (mif) and then I select (s) with regex awful\.key\( the awful.key so I have multiple cursors now. But when I search (/) it only searches on one cursor. So I can't do 'select awful.key then search function add new line etc' because it only works on one cursor. I remeber I had looked it up/researched it but I didn't find useful results
The good stuff is that it's good (xD). It has mutliple cursors, language server, jump to functions and stuff, highlight (ig that's a given), mouse support, submenus and generally a good workflow. edit: I am using it currently since May I think. Maybe if I find a good server/client architecture text editor I'll switch but for now I am happy with helix :). P.S. I kinda have stopped programming although I do code sometimes so maybe there are issues or features I missed to mention. (edited)
Avatar
What
Avatar
ws-client BOT 2024-11-04 12:51
<ChillerDragon> wat what
Avatar
Is it fashionable step by step ?
Avatar
ws-client BOT 2024-11-04 12:52
<ChillerDragon> i gave you all the steps where are you stuck?
Avatar
I just came in, I'm going to read everything now
Avatar
ws-client BOT 2024-11-04 12:52
<ChillerDragon> https://www.youtube.com/watch?v=fKksxz2Gdnc then add sv_chat_discord_webhook with the actual url as argument to your config
Avatar
Should I create my own WebHoook server for it now?
Avatar
ws-client BOT 2024-11-04 12:53
<ChillerDragon> to which discord channel do you want to send it?
Avatar
first, I need to create my own server
Avatar
ws-client BOT 2024-11-04 12:54
<ChillerDragon> oke
Avatar
why did you ask chiller to make his bridge in first xd
Avatar
ws-client BOT 2024-11-04 12:56
<ChillerDragon> nonono
12:56
<ChillerDragon> dont send it here xd
Avatar
#simcr name channel
Avatar
ws-client BOT 2024-11-04 12:56
<ChillerDragon> thats like a password
12:56
<ChillerDragon> you got to set it up not me
12:56
<ChillerDragon> you need to add it to your config
Avatar
Avatar
ws-client
<ChillerDragon> well in case we miss each other the new config is sv_chat_discord_webhook and the value is your full webhook url @Evelyn
this?
Avatar
ws-client BOT 2024-11-04 12:57
<ChillerDragon> you should revert that webhook before learath sends illegal messages on your server and gets you swatted
12:57
<ChillerDragon> yes this
12:57
<ChillerDragon> sv_chat_discord_webhook "https://discord.com/api/webhooks/1302979649365606470/e9Xhjy75smDhBoIYNgSiEiwYlcHchZp10IzO90mxNJp6AwU7f1Qo2sWsnt56THISjTam"
12:57
<ChillerDragon> but create a new webhook and dont share it
12:59
maybe git pull
12:59
make
Avatar
ws-client BOT 2024-11-04 12:59
<ChillerDragon> yes
12:59
<ChillerDragon> you pro
Avatar
i need to restart this?
Avatar
ws-client BOT 2024-11-04 13:01
<ChillerDragon> yes after git pull and make you need to restart
Avatar
wait building
Avatar
ws-client BOT 2024-11-04 13:01
<ChillerDragon> yes ddnet bloat
Avatar
You did all this for free, I’m afraid to imagine what would happen if you were paid for your work
Avatar
ws-client BOT 2024-11-04 13:02
<ChillerDragon> everything for you my love
13:02
<ChillerDragon> heartw
Avatar
How can I turn off all screen sessions at once?
Avatar
ws-client BOT 2024-11-04 13:03
<ChillerDragon> killall screen
13:03
<ChillerDragon> justatest
Avatar
Forgive me 60 people who are currently playing on my server
Avatar
ws-client BOT 2024-11-04 13:04
<ChillerDragon> oh no
Avatar
ws-client BOT 2024-11-04 13:04
<ChillerDragon> real pro server admins do password z128931892z389123u89;sv_shutdown_when_empty 1 in rcon
13:05
<ChillerDragon> apt-get install killall -y
13:05
<ChillerDragon> xd
13:05
<ChillerDragon> how does bloated ubuntu not have killall
13:05
<ChillerDragon> even my debian has it
13:06
<ChillerDragon> also pro tipp dont use the root user
Avatar
ws-client BOT 2024-11-04 13:06
<ChillerDragon> ddnet++ is full of bugs and if someone exploits the game server you dont want them to be linux admin
Avatar
MilkeeyCat 2024-11-04 13:06
my debian doesn't have killall
Avatar
ws-client BOT 2024-11-04 13:06
<ChillerDragon> @MilkeeyCat maybe it came with gnome pro
Avatar
Avatar
Evelyn
Click to see attachment 🖼️
.
Avatar
ws-client BOT 2024-11-04 13:07
<ChillerDragon> yo catto did you see my new project coffeeworlds?
Avatar
MilkeeyCat 2024-11-04 13:07
ye
Avatar
ws-client BOT 2024-11-04 13:08
<ChillerDragon> @Evelyn uhm apt-update -y && apt-upgrade -y && apt-get install killall
13:08
<ChillerDragon> you like java?
Avatar
MilkeeyCat 2024-11-04 13:08
i still didn't finish my "client" in my "language" feelsbadman
13:08
chillerdragon: haven't written a single line of java in my life
Avatar
ws-client BOT 2024-11-04 13:08
<ChillerDragon> hello world is quite bloated in java
Avatar
ws-client BOT 2024-11-04 13:09
<ChillerDragon> @Evelyn im stoopid sorry xd just do pkill screen
Avatar
Over
13:09
Game over....
Avatar
Avatar
MilkeeyCat
my debian doesn't have killall
tf
Avatar
ws-client BOT 2024-11-04 13:09
<ChillerDragon> you are really rude
Avatar
well pkill works
13:10
gentoo ftw
Avatar
ws-client BOT 2024-11-04 13:10
<ChillerDragon> this reminds me of the good old js chillerbot linux times in this channel
Avatar
MilkeeyCat 2024-11-04 13:10
but i'd say it's solid FizzBuzzOutputGenerationContextVisitorFactory out of 10
Avatar
ws-client BOT 2024-11-04 13:10
<ChillerDragon> posting command and getting responses
Avatar
ws-client BOT 2024-11-04 13:10
<ChillerDragon> @Evelyn if learato sends you a command to run on your server dont run it
13:11
<ChillerDragon> bro you leaked ur webhook again
Avatar
MilkeeyCat 2024-11-04 13:11
lol
Avatar
I have 4 servers with different configs, won’t it hurt?
Avatar
ws-client BOT 2024-11-04 13:11
<ChillerDragon> no its fine
13:11
<ChillerDragon> you can have them all send to differnet channels
Avatar
what if I specify a different webhook for each config?
Avatar
Avatar
Ryozuki
well pkill works
MilkeeyCat 2024-11-04 13:12
I use kill all the time :p
Avatar
ws-client BOT 2024-11-04 13:12
<ChillerDragon> hacker catto
Avatar
do u know the pid?
Avatar
ws-client BOT 2024-11-04 13:12
<ChillerDragon> tbh i also use pgrep -f and then kill
13:12
<ChillerDragon> or ps aux | fzf
Avatar
MilkeeyCat 2024-11-04 13:12
$(pidof program) justatest
Avatar
thats literally pkill
Avatar
ws-client BOT 2024-11-04 13:12
<ChillerDragon> xd
Avatar
MilkeeyCat 2024-11-04 13:12
xd
Avatar
ws-client BOT 2024-11-04 13:12
<ChillerDragon> @Evelyn works
13:13
and i create new channel
13:13
and in new channel new webhook
13:13
good?
Avatar
ws-client BOT 2024-11-04 13:13
<ChillerDragon> yes
13:15
<ChillerDragon> @Ryozuki well you see first how many results you get
13:15
<ChillerDragon> you dont wanna accidentally kill systemd
Avatar
lol shame on u i dont have systemd
Avatar
i started server?
Avatar
ws-client BOT 2024-11-04 13:20
<ChillerDragon> ok?
Avatar
ws-client BOT 2024-11-04 13:21
<ChillerDragon> ok!
Avatar
all work thx
Avatar
ws-client BOT 2024-11-04 13:22
<ChillerDragon> pro
Avatar
Somewhere a Jupstar is happy, whom I stopped pressuring with my questions
13:25
Is it possible that I could write on behalf of the server through messages in discord?
Avatar
ws-client BOT 2024-11-04 13:25
<ChillerDragon> oof
13:25
<ChillerDragon> that requires a discord bot i think i cant do that i dont have discord
13:26
small tool to moderate multiple zCatch servers via econ and discord. - jxsl13/TeeworldsEconDiscordModerationBot
13:26
<ChillerDragon> this might work
13:27
<ChillerDragon> @jxsl13 help
Avatar
And you can create a command for TestDDRace that will completely make me invisible, that is, it will hide me in the tab, and I will not be visible to others. For rcon
Avatar
ws-client BOT 2024-11-04 13:29
<ChillerDragon> hmm maybe im not too big of a fan of admin cheats
Avatar
<ChillerDragon> hmm maybe im not too big of a fan of admin cheats
13:30
oh
13:30
i translate this
13:30
It’s just that such trolling can be implemented with this
Avatar
ws-client BOT 2024-11-04 13:41
<ChillerDragon> ok done @Evelyn you can now use the rcon command hide_player followed by the client id to hide a player
Avatar
You're a hero
13:45
I need to git pull && make?
Avatar
ws-client BOT 2024-11-04 13:45
<ChillerDragon> yes
Avatar
Is it possible to do without restarting the server?
Avatar
ws-client BOT 2024-11-04 13:45
<ChillerDragon> no
Avatar
Then I'll do it later.
Avatar
ws-client BOT 2024-11-04 13:46
<ChillerDragon> ok
Avatar
by the way, there is an error in the destroylaser command
Avatar
ws-client BOT 2024-11-04 13:46
<ChillerDragon> oh boy there are so many errors xd
13:46
Its normal
13:47
Where client id?
Avatar
ws-client BOT 2024-11-04 13:47
<ChillerDragon> status
13:47
<ChillerDragon> destroylaser needs an id as argument same as hide_player
13:47
<ChillerDragon> so for example destroylaser 0
Avatar
I know the client id of people , I say even if there is nothing to enter it here
Avatar
ws-client BOT 2024-11-04 13:48
<ChillerDragon> wat
Avatar
ws-client BOT 2024-11-04 13:49
<ChillerDragon> ah its probably some1 doing /destroylaser in chat
13:49
<ChillerDragon> or idk
Avatar
ws-client BOT 2024-11-04 13:49
<ChillerDragon> if you run destroylaser 0 player with client id gets destroy laser but that weapon is probably super bugged i dont even remember what it should do
Avatar
Avatar
Ryozuki
thats literally pkill
killall?
Avatar
ws-client BOT 2024-11-04 13:49
<ChillerDragon> solly
Avatar
hello
13:50
that was an instant ... "response"
Avatar
Avatar
Solly
killall?
tells u whether u actually killed something or not
Avatar
ws-client BOT 2024-11-04 13:51
<ChillerDragon> i checked the code destroylaser does absolutely nothing xd
Avatar
MilkeeyCat 2024-11-04 13:51
poggers2
Avatar
Damn helix is a really good text editor cat_whaaa Sane defaults, easy to use if you're at least somewhat familiar with vim motions, the config is written in toml and overall a great experience 11/10 would recommend (Even tho I really miss my oily vim so I still use that to manage file dirs kek
Avatar
should also work with ddnet based servers, except for a lot of commands relying on logs to properly work across map changes
14:26
usernames are probably broken
14:26
for non zCatch
Avatar
chilller
14:31
dradon
14:31
You can do the command /duel
14:32
762.62 KB
14:34
And please, on this map, make a zone for these duels on the multi-sim playground and a zone for the block tournament and make everything work, I ask you
Avatar
Avatar
ws-client
<ChillerDragon> ddnet++ is full of bugs and if someone exploits the game server you dont want them to be linux admin
i want justatest
Avatar
ws-client BOT 2024-11-04 14:41
<ChillerDragon> @Evelyn what should /duel do? also i told you place the game tile 131 for block tournament arena spawns
Avatar
I can't, I don't know how to use the editor
14:46
Now I’ll show you what I mean by /duel
Avatar
ws-client BOT 2024-11-04 14:47
<ChillerDragon> press ctrl+shift+e to open the editor
14:47
<ChillerDragon> click on the Settings on the top then select "Show Info" "Dec"
14:48
<ChillerDragon> then click on "Game" in the left menu not on "#1 Game"
14:48
<ChillerDragon> then press space
14:48
<ChillerDragon> use the mouse and left click once on 131
14:48
<ChillerDragon> use the arrow keys to navigate the map to the arena
14:48
<ChillerDragon> click with the mouse where you want the spawns
14:49
where game
Avatar
ws-client BOT 2024-11-04 14:49
<ChillerDragon> you got it good
14:49
<ChillerDragon> now hold space
14:49
<ChillerDragon> select 131
14:50
<ChillerDragon> this is the game layer you have it already selected
Avatar
over
Avatar
ws-client BOT 2024-11-04 14:50
<ChillerDragon> scroll to zoom in
Avatar
how to move on the map?
Avatar
ws-client BOT 2024-11-04 14:51
<ChillerDragon> put your mouse on the map and use arrow keys
14:51
<ChillerDragon> <^v>
Avatar
Do I need to build a block tournament zone right now?
Avatar
ws-client BOT 2024-11-04 14:51
<ChillerDragon> or was it wasd i forgot xd
14:52
<ChillerDragon> ah no its W, A, S, D to navigate
14:52
<ChillerDragon> you can also click drag to move but thats harder to explain
Avatar
Do I need to build a block tournament zone right now?
Avatar
ws-client BOT 2024-11-04 14:52
<ChillerDragon> just place tile 131 where you want the tournament area
14:52
<ChillerDragon> its just a spawn tile
14:52
<ChillerDragon> you dont have a arena already?
Avatar
ws-client BOT 2024-11-04 14:53
<ChillerDragon> then you need to make one for that you need to learn the editor better or hire a mapper
Avatar
By the way, when teleporting to a block tournament zone, if there are people there, will they be visible to the participants?
Avatar
ws-client BOT 2024-11-04 14:53
<ChillerDragon> yes
14:53
<ChillerDragon> it should be a area that is not reachable from the spawn
Avatar
And I know where to place it, but there are already people there, can I copy this zone in the editor and paste it somewhere else?
Avatar
ws-client BOT 2024-11-04 14:54
<ChillerDragon> yes
14:55
<ChillerDragon> select the layer on the left then drag your mouse on the tiles with left click to select a area
Avatar
I want to copy this
14:56
Avatar
ws-client BOT 2024-11-04 14:56
<ChillerDragon> > select the layer on the left then drag your mouse on the tiles with left click to select a area
Avatar
and which layer on the left should I choose?
Avatar
ws-client BOT 2024-11-04 14:57
<ChillerDragon> @Evelyn you can start playing around with the editor by following this tutorial https://www.youtube.com/watch?v=UXZnF17TgEQ
Avatar
ws-client BOT 2024-11-04 14:58
<ChillerDragon> you can ctrl+left click on the tile in the map and it will select the layer for you if you dont know
Avatar
is game
14:59
lol
Avatar
ws-client BOT 2024-11-04 14:59
<ChillerDragon> yes game is for gameplay but then there is also textures
Avatar
ws-client BOT 2024-11-04 14:59
<ChillerDragon> ctrl+left click again
15:01
my ddnet is crash
Avatar
ws-client BOT 2024-11-04 15:01
<ChillerDragon> sus
15:02
<ChillerDragon> well i go to sleep now good luck
Avatar
STOO]
15:02
STOPPPO
15:02
STOPPP[
15:02
I found a block tournament areaI found a block tournament areaI found a block tournament area
15:02
I found a block tournament area
15:07
I figured it out
15:37
gm rust devs and others
Avatar
i love fish
16:06
i always just used it in my interactive terminals & used bash for everything else
16:07
no idea why
16:07
it’s beastly for scripting
Avatar
MilkeeyCat 2024-11-04 17:53
does anyone know how to fix cursor in ddnet, it's not moving
Avatar
ChillerDragon, please complete these tasks tomorrow. 1. Make the camera follow me when I'm invisible 2. Make a full translation into Russian , everything related to the block tournament , stats , teams /register , /login 3. Make sure that an unlimited number of people can participate in the block tournament, and the reward for winning increases proportionally
HUH 4
gigachad 1
Avatar
Chillerdragon: - time to stop helping people
18:19
kekw
Avatar
he got his weapon shield asset, he doesn't need more
18:20
gigachad
Avatar
I think Chillerdragon will transform to Aggressivedragon in this week by that orders 😄
Avatar
How can I check if tee has been seen in the camera/viewability area?
Avatar
Avatar
TheNofis
How can I check if tee has been seen in the camera/viewability area?
Snap.m_aCharacters[i].m_Active
19:15
means the tee is rendered
19:15
which is on screen or a bit off it
Avatar
Avatar
Evelyn
ChillerDragon, please complete these tasks tomorrow. 1. Make the camera follow me when I'm invisible 2. Make a full translation into Russian , everything related to the block tournament , stats , teams /register , /login 3. Make sure that an unlimited number of people can participate in the block tournament, and the reward for winning increases proportionally
4. send all your money to jxsl13
nouis 1
Avatar
This does not work, the players that are not visible on the camera have values of 1
19:40
xd
Avatar
then camera->m_Center and check with ScreenWidth/Height
Avatar
Been using this on my server for a long time, didn&#39;t run into any errors. Didn&#39;t test dyncam excessively, but also didnt get any reports for objects suddenly appearing or smth Chec...
Avatar
@fokkonaut whats blocking 128 player support pr?
Avatar
Avatar
Pathos
Why is my HP/shields/ammo kind of transparent all of sudden today? I didn't patch or change anything (edited)
Are you using Windows or Linux?
Avatar
Avatar
kebs
@fokkonaut whats blocking 128 player support pr?
128 players? thtts cringe, when are we getting 1024?
20:44
jesuss 128 players in scoreboard looks... well
20:44
big
20:44
i already think 64 is way too many
Avatar
Avatar
Solly
jesuss 128 players in scoreboard looks... well
Avatar
thats the image i saw
Avatar
imagine i have to reply to some russian player and im there pressing shift+tab for 5 years
💀 1
Avatar
Avatar
MilkeeyCat
does anyone know how to fix cursor in ddnet, it's not moving
MilkeeyCat 2024-11-04 21:01
Mouse for da weak, I'll use fifo :/
Avatar
Avatar
Solly
imagine i have to reply to some russian player and im there pressing shift+tab for 5 years
steam users get even more fun
Avatar
Avatar
Ewan
steam users get even more fun
y so?
Avatar
shift tab is the default keybind for opening the steam overlay
21:28
simply dfont use steam
21:29
i need a russian keyboard
21:29
for the express purpose of pinging russians
Avatar
Can I post ideas here?
Avatar
why not
Avatar
feel free to share them
21:30
if it’s smth u want added to ddnet you’d be better off making an issue on github (edited)
👍 1
Avatar
The idea is to add more orientation flags to the flags
21:31
are u talking about the player country flag or smth else
Avatar
gay player country flags? (edited)
Avatar
i guess so
Avatar
Avatar
Solly
gay player country flags? (edited)
yes
Avatar
i think u need to specify sexual oritentation
Avatar
i dont rly love that idea because the flag is supposed to serve as an indicator of where you live
Avatar
i though u were actually talking abt some editor feature
Avatar
but ppl abuse it or leave it empty all the time
Avatar
Avatar
Ewan
i dont rly love that idea because the flag is supposed to serve as an indicator of where you live
about 1% plp use it for that. the rest are in north korea or dont have one
Avatar
i sure as hell dont live in luxembourg
Avatar
Avatar
хехе
The idea is to add more orientation flags to the flags
Imagine how cool it is that in your nickname tab you have LGBT or something else displayed (edited)
Avatar
maybe as another field
Avatar
it wouldnt be compatable with 0.7, and people would use it. but i think plo would be against it as its a slippery slope, theres lots of flags
Avatar
hm I dunno really, flags are specifically for location purposes. We "could" add a second category for flags - but I'm not sure about our maintainers
Avatar
it just seems ultimately pointless
Avatar
another field for being gay is probably a bit too much
21:35
if you are adding a rainbow flag u need to draw the line where to stop adding flags
21:35
also whats the country code for rainbow flag
Avatar
i wanna be clear that i harbor zero ill will towards anyone who’d wanna use this flag but technically speaking it’d be redefining existing server/client behavior which can’t/won’t be changed everywhere so support would not be great I also question the logic that brings you to want to show ppl your gender/orientation without having to talk to them
21:36
that seems like something you keep to yourself and share with people as needed
21:36
could just be me
Avatar
or another idea - add a window to the display tab where you can enter a skin that will be displayed during the freeze / recolor the color of the freeze
Avatar
people use these flags to show their support towards these groups without belonging to them
Avatar
Avatar
Ewan
i wanna be clear that i harbor zero ill will towards anyone who’d wanna use this flag but technically speaking it’d be redefining existing server/client behavior which can’t/won’t be changed everywhere so support would not be great I also question the logic that brings you to want to show ppl your gender/orientation without having to talk to them
if you have ever been near any community they often have lots of memerobillia (?) such as flags and figures and idols etc etc. the gay community likes sticking flags on everything
Avatar
Sometimes*
Avatar
Avatar
Ewan
i wanna be clear that i harbor zero ill will towards anyone who’d wanna use this flag but technically speaking it’d be redefining existing server/client behavior which can’t/won’t be changed everywhere so support would not be great I also question the logic that brings you to want to show ppl your gender/orientation without having to talk to them
its not redefining anything, i think u can just add it to the assets and it works
Avatar
there’s no enum?
Avatar
the flag information is just a string
Avatar
then i guess i dont see why not to
Avatar
no and even if there was, its very likley theres space anyway
Avatar
it’s not about space
Avatar
space in the size of the enum such that its compatable with old servers* (edited)
Avatar
Having more LGBTQ+ flags than country flags inc EssexLemonEat
21:38
I don't really mind it - I only see another thing we need to moderate monkaStop
Avatar
yeah i think there’s no harm in having it
21:39
just seems uber pointless
Avatar
Avatar
meloƞ
I don't really mind it - I only see another thing we need to moderate monkaStop
oh no theres a ton of people with gay flags!!!!
21:39
ban them!!!
Avatar
"he called me a bitch for using the bisexual LGBTQ flag"
Avatar
having flags doesnt make people less or more homophobic
Avatar
o he called you a bitch
Avatar
im sure most people are used to general name calling
Avatar
oddly tame
Avatar
if you can just add images & it’ll work for whoever has it then whatever
Avatar
Typing on phone hard.. I think it'll increase awareness AND toxicity towards this - so I vote f3.5
Avatar
but if it’s anything more than that I say no because it’s enabling more maintenance in the future & providing justification for why the next proposed profile customization thing can be added
21:42
and then we’d just end up like discord
21:42
idk about you but that sounds terrible
Avatar
Avatar
Ewan
but if it’s anything more than that I say no because it’s enabling more maintenance in the future & providing justification for why the next proposed profile customization thing can be added
whats there to maintain, the rainbow flag doesnt change
Avatar
hmm wdym
Avatar
wdym maintanence
Avatar
oh sorry if it wasn’t clear i was elaborating on my previous msg
21:44
i mean the maintenance implied by the inverse case in the condition established by the first part of my sentence
Avatar
yeah .. but flags dont need maintaining
Avatar
to paraphrase… “if there is no maintenance to be done then i say yes” (edited)
Avatar
there is none, unless the design for them changes in which case your already doing 100, so youll be doing it with a python script anyway
Avatar
truly a great day to be a mobile user
21:45
dude
21:45
i am agreeing with you
21:45
please read
Avatar
so am i
21:45
:)
21:46
i dont get it
Avatar
im elaborating despite the fact you already agree with me
Avatar
Avatar
Solly
yeah .. but flags dont need maintaining
i dont wanna read into it too much cuz it’s a simple miscommunication but that confused the shit out of me … usually “but” means to contradict
Avatar
I understood your point 5 minutes ago, me continuing is just for shits and giggles kinda vibe
Avatar
yeah sorta like that
21:48
but not really
Avatar
Alright good night!!! I go sleepy eepy
21:49
aww u cant just add it to data/countryflags and have it show up
21:49
wait it is an enum?
21:49
21:49
why tho
21:52
genuinely not sure
21:52
probably just for this reason, no custom flags means no misinterpretation of somebody’s custom flag
Avatar
well this kinda makes it hard for custom flags
Avatar
is the rainbow flag in game already?
21:53
its probably sending an int32 anyway so why not just send a char[4]
Avatar
this is probably going to be a tough sell then
Avatar
i added
21:53
it to that file
21:53
but its still not showing up
Avatar
If I'm using std++11 library in my std++20 ddnet project, and I'm getting errors since std++11 uses std::exception::what without noexcept and everything after with, where in cmake I tell compiler to ignore it or say the lib is std++11
Avatar
GitHub BOT 2024-11-04 21:58
!image When using tune zones, it is the shooter, not the target, who must stand in the zone to unfreeze

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 ou...
Avatar
set_source_files_properties(path/to/file.cpp PROPERTIES COMPILE_FLAGS "-std cpp11")
21:59
according to chatgpt
22:00
22:01
theres an arbritrary limit that -1 is the lowest flag id you can have
22:01
if the flag is added i think that should be... removed and made -999 (as the max is 999) and u can put whatever custom flags in there
22:02
it doesnt require recompile if u use an unused flag id (edited)
Avatar
idk if we need custom flags
Avatar
Avatar
хехе
The idea is to add more orientation flags to the flags
make an issue ;)
22:03
it would require no changes to a single line change, and then u can just add as many as you want
22:03
the only flags worht adding are the rgb, lesbian, lgbtq and trans ones, the rest are kinda icky (edited)
22:04
22:04
22:04
like who the fug made this one
22:04
looks like homer simpson wearing purple trousers
Avatar
noone asked for these
22:09
and its called "country" instead of flag in some parts of the code base
Avatar
Why would anyone want this... And I feel it would only be used to insult others xd
Avatar
with the playerbase being 80% russian we all know whats going to happen (edited)
Avatar
if you see someone with a pride flag
22:13
you know they probably arent a snotty (imature) 12 year old (edited)
22:14
the great filter
Avatar
Avatar
Devinci
Why would anyone want this... And I feel it would only be used to insult others xd
im sure alot of people would use them
Avatar
I wont say my thoughts on that because free speech here is limited. But going back to the flags. I don't understand why would you ever want to mix country flags with other type of flags. (edited)
Avatar
anyone knows if theres a way to check if tune has set some value, or is it always using the defaults
Avatar
Avatar
Solly
the only flags worht adding are the rgb, lesbian, lgbtq and trans ones, the rest are kinda icky (edited)
🤔
Avatar
they are tho
Avatar
Avatar
GitHub
Click to see attachment 🖼️
so with this if the global tune is undeep 1 i can turn off it with tune zone
Avatar
lesbian one isnt that common tho (edited)
Avatar
edit: isnt*
Avatar
i guessed so
Avatar
Avatar
Devinci
I wont say my thoughts on that because free speech here is limited. But going back to the flags. I don't understand why would you ever want to mix country flags with other type of flags. (edited)
i.. think youll be fine. no one will be offended by your hatred of pride flags.... being mixed with flag flags
22:18
barely anyone uses flags for their inteded purpsoe anyway
22:18
im just gonna make an issue
22:18
xd
Avatar
See #3639 and #5176. We don't want to add non-country or unofficial flags. The only exception are regions that have an associated language like Catalan.
Avatar
From Discord: [3:32 PM] M Emile: Sorry if this isnt the proper channel but who should i ask to have a flag added [3:32 PM] M Emile: It would be nice for Québec people to find each other if we had o...
Avatar
o okey
Avatar
Avatar
kebs
so with this if the global tune is undeep 1 i can turn off it with tune zone
@Robyt3 do you know?
Avatar
Avatar
Robyt3
See #3639 and #5176. We don't want to add non-country or unofficial flags. The only exception are regions that have an associated language like Catalan.
those issues are about un-official geographical flags, not about non-geographical flags
👀 1
Avatar
im printing the tune zone value and its always 0 unless set to 1
Avatar
Avatar
kebs
@Robyt3 do you know?
no
Avatar
GitHub BOT 2024-11-04 22:22
  • Combine CSkins7::FindSkinPart and CSkins7::GetSkinPart functions into CSkins7::FindSkinPart function to simplify the usage.
  • Replace CSkins7::Num and CSkins7::Get functions with CSkins7::GetSkins function to return all skins to improve readability using for-each loops.
  • Replace CSkins7::NumSkinPart and CSkins7::GetSkinPart functions with CSkins7::GetSkinParts function to return all skin parts to improve readability using for-each loops.
  • Add `CSkins7::FindSkinPartOrN...
Avatar
Avatar
louis
those issues are about un-official geographical flags, not about non-geographical flags
i think they will be rejected for similar reason
Avatar
Avatar
Solly
im sure alot of people would use them
I think wanting to represent your country is a lot more special these days than wanting to represent your sexual minority lol (edited)
kek 2
Avatar
Avatar
risu
I think wanting to represent your country is a lot more special these days than wanting to represent your sexual minority lol (edited)
oreintation*, and yes... so people would use them (special being less frequent) (edited)
Avatar
Avatar
risu
I think wanting to represent your country is a lot more special these days than wanting to represent your sexual minority lol (edited)
not necessarily true
Avatar
Avatar
Solly
oreintation*, and yes... so people would use them (special being less frequent) (edited)
The ones in the majority don't really care about representing it so I'm technically right :P
Avatar
yep, and no one country has the majority of the population
22:24
so whats your point
Avatar
a sexual minority. is a minority of people who are sexual. we are talking about sexual orientation (and other pride flags (trans/lgbtq)) flags
Avatar
i'm sure there are more queer people in the world than the population of a lot of the world's countries
Avatar
Non country flags should just not be added so discussions like this one doesn't start in game.
Avatar
there wouldnt be bad discussion in game there would just be name calling
Avatar
Avatar
Devinci
Non country flags should just not be added so discussions like this one doesn't start in game.
I thought you were just complaining about there not being free speech earlier
Avatar
Avatar
GitHub
Click to see attachment 🖼️
this is an interesting tune
Avatar
louis, for me you can tell in chat whatever you want. I just don't think we should incite anything. Which is different
Avatar
feels weird though, i wonder how mappers will use them
Avatar
Avatar
Devinci
louis, for me you can tell in chat whatever you want. I just don't think we should incite anything. Which is different
the flag isn't doing the inciting though, it's the players
22:26
Yes the flag will cause inciting but i don't think it falls on the addition of the flag
Avatar
Avatar
louis
feels weird though, i wonder how mappers will use them
could be in a solo map like if you miss you are dead idk tbh
Avatar
but i'm not sure if its a good idea anyways because it might become a bit of a slippery slope
Avatar
Avatar
louis
Yes the flag will cause inciting but i don't think it falls on the addition of the flag
if I does I don't thinkg the reason matters. That's all
👍 1
Avatar
Avatar
oxyzo
could be in a solo map like if you miss you are dead idk tbh
oh real
Avatar
who has write access on ddnet/ddnet?
Avatar
admins
Avatar
equal to the ones in this dc?
22:28
"People" on the right side
22:28
im guessing
22:29
if one of them accepted it i dont think there would be backlash
22:29
but the consesus is probably still no
22:29
make an issue x-x
Avatar
I mean, there are other controversial flags aswell. For instance Palestinian flag, which is not a true country according to UN. Or EU flag, which also isnt a country. Or a flag that looks like Reichskriegsflagge, but is also a flag of a true country.
Avatar
Avatar
Gumba
I mean, there are other controversial flags aswell. For instance Palestinian flag, which is not a true country according to UN. Or EU flag, which also isnt a country. Or a flag that looks like Reichskriegsflagge, but is also a flag of a true country.
most are from the iso 3166-1 standard (edited)
23:23
except eu and few british ones
Avatar
Yeah, I mean idc that much, we can keep it as solely these countries, bit I think more flags arent bad either. I'd like a pirate flag and some others aswell.
Exported 605 message(s)
Timezone: UTC+0