00:42 <+bridge> [ddnet] also blockworlds hates ddnet 00:42 <+bridge> [ddnet] they support the bot client ath 00:47 <+bridge> [ddnet] but why would we disallow ddnet players to use zoom there? :thonkery: 00:49 <+bridge> [ddnet] its not ddnets problem to care about the needs of blockers 00:49 <+bridge> [ddnet] <ᶰ°Konͧsti> I can zooz on any mod :GWfroggyPeepoDetective: 00:49 <+bridge> [ddnet] yes 9.4 00:49 <+bridge> [ddnet] <ᶰ°Konͧsti> :troll: :troll: 00:49 <+bridge> [ddnet] i had my own ddnet where i can do it too, but i removed it 00:58 <+bridge> [ddnet] ya blockworlds kicks u if u use ddnet client. "come back with a legit client, please!" 00:59 <+bridge> [ddnet] :troll: 01:01 <+bridge> [ddnet] we should ddos blockworlds 01:02 <+bridge> [ddnet] xD 01:02 <+bridge> [ddnet] no 01:02 <+bridge> [ddnet] not funny 01:02 <+bridge> [ddnet] ddos is gay 01:02 <+bridge> [ddnet] look at ddnet 01:03 <+bridge> [ddnet] no i have an idea 01:04 <+bridge> [ddnet] how bout we all log on the server at once and block everyone 01:04 <+bridge> [ddnet] and we will take over the server and wayblock any non ddracers 01:08 <+bridge> [ddnet] xD 01:21 <+bridge> [ddnet] @heinrich5991 can you try to fix #1226 02:20 <+bridge> [ddnet] @ezy @tght the difference is that in the first example ur passing the value of x (0), and in the second example u call it by doing: 02:20 <+bridge> [ddnet] `func(&x);` which says, pass the address of the local variable x 02:20 <+bridge> [ddnet] then when u `*x = 1;` the * operator dereferences the pointer so u can modify whatever it points to 02:21 <+bridge> [ddnet] 👏 02:21 <+bridge> [ddnet] theres alot of other uses for pointers but thats a common one, bc if u do it the first way it just makes a copy that gets discarded when func() is done 02:22 <+bridge> [ddnet] that means when ur calling the function u only have to have set *x somewhere and it works? 02:22 <+bridge> [ddnet] well why would it return 0 in the first place that's dumb 02:22 <+bridge> [ddnet] ``` 02:22 <+bridge> [ddnet] if(messages("noby") > 5) 02:22 <+bridge> [ddnet] mute("noby");``` 02:23 <+bridge> [ddnet] it doesnt return anything 02:23 <+bridge> [ddnet] u 02:24 <+bridge> [ddnet] `void func (int x) { x = 1; }` 02:24 <+bridge> [ddnet] it makes a copy of whatever number u pass in func(x), sets that copy to 1, then destroys the copy when returning 02:24 <+bridge> [ddnet] 02:24 <+bridge> [ddnet] `void func (int *x) { *x = 1; }` 02:24 <+bridge> [ddnet] points to the original int that ur trying to change so the change will stay once the function exits 02:24 <+bridge> [ddnet] idk how to explain it well lol 02:24 <+bridge> [ddnet] so ur changing something in a global scale? 02:25 <+bridge> [ddnet] ur actually changing the int itsself? 02:25 <+bridge> [ddnet] oh 02:25 <+bridge> [ddnet] well that's only if u define x outside of func? 02:25 <+bridge> [ddnet] the context would be like 02:25 <+bridge> [ddnet] `void func (int *x) { *x = 1; } 02:25 <+bridge> [ddnet] 02:25 <+bridge> [ddnet] int main () { 02:25 <+bridge> [ddnet] int x = 0; 02:25 <+bridge> [ddnet] func(&x); 02:25 <+bridge> [ddnet] ` 02:25 <+bridge> [ddnet] after that line x would be 1 02:25 <+bridge> [ddnet] now x is actually 1 02:25 <+bridge> [ddnet] ya 02:26 <+bridge> [ddnet] oh 02:26 <+bridge> [ddnet] i get if 02:26 <+bridge> [ddnet] i get it 02:26 <+bridge> [ddnet] never actually have had to use it tho 02:26 <+bridge> [ddnet] i just use return shit for that xd 02:26 <+bridge> [ddnet] 02:26 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/472198133732999188/Soj6kHjKsI.jpg 02:26 <+bridge> [ddnet] i think its more common when ur using only C bc it doesnt have as many abstractions that hide the pointers from u 02:27 <+bridge> [ddnet] 02:27 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/472198292554514443/nigggee.png 02:27 <+bridge> [ddnet] :DDDD 02:27 <+bridge> [ddnet] ciclop 02:28 <+bridge> [ddnet] why jao complains when i talk about coding in #general but not when people spam images in #developer :thonkery: 02:28 <+bridge> [ddnet] :thonkery: 02:28 <+bridge> [ddnet] :thonkery: 02:28 <+bridge> [ddnet] yea 02:28 <+bridge> [ddnet] :thonkery: 02:28 <+bridge> [ddnet] stop 02:28 <+bridge> [ddnet] :thonkery: 02:28 <+bridge> [ddnet] :banhammer: 02:28 <+bridge> [ddnet] ok they were deleted 02:28 <+bridge> [ddnet] nigga doesn't fear death 02:29 <+bridge> [ddnet] i guess pointers just save u some coding 02:29 <+bridge> [ddnet] instead of having to define a new var and assigning it to the return value 02:48 <+bridge> [ddnet] how to add points on server? 02:53 <+bridge> [ddnet] ? 02:57 <+bridge> [ddnet] i wanna add points on my server 02:57 <+bridge> [ddnet] its good for when u want to return multiple values from a function but dont really have a structure set up to do so 02:57 <+bridge> [ddnet] there is tutorial on forum to set up server with sql 02:58 <+bridge> [ddnet] thx 03:00 <+bridge> [ddnet] i just saw broadcast saying ddnet tournament starting on friday 03:00 <+bridge> [ddnet] its already friday 03:01 <+bridge> [ddnet] whose friday is it starting on 03:01 <+bridge> [ddnet] xD 03:16 <+bridge> [ddnet] next 03:17 <+bridge> [ddnet] next friday is tournament so that i can finish map and be tournament winner:troll: 03:46 <+bridge> [ddnet] wasn't this channel restricted to sane people? 03:46 <+bridge> [ddnet] it was 03:47 <+bridge> [ddnet] yes 04:39 <+bridge> [ddnet] can someone help me? i can play on a local teeworlds server with OP ping but whenever i try to connect to another teeworlds server my wifi shits on me 04:41 <+bridge> [ddnet] wait im stupid 04:41 <+bridge> [ddnet] my wifi shits on me whenveer i play anything 04:42 <+bridge> [ddnet] it lagspikes for half a second around every 2 seconds its so annoying 05:45 <+bridge> [ddnet] hi im having trouble configuring ddnet on cmake 05:45 <+bridge> [ddnet] 05:46 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/472248261617385472/unknown.png 05:46 <+bridge> [ddnet] i get those errors 05:46 <+bridge> [ddnet] ive downloaded python and stuff 05:46 <+bridge> [ddnet] am i retarded or something 05:57 <+bridge> [ddnet] download ddnet 9 05:57 <+bridge> [ddnet] and use bam 06:12 <+bridge> [ddnet] you only need visual studio 06:12 <+bridge> [ddnet] wat 07:19 <+bridge> [ddnet] ddnet-libs 08:27 <+bridge> [ddnet] @deen when does the tournament start 11:26 <+bridge> [ddnet] 11:26 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/472333883074019340/Screenshot_20180727-112544.jpg 11:26 <+bridge> [ddnet] someone 11:26 <+bridge> [ddnet] yeah 11:27 <+bridge> [ddnet] it casts it to int type 11:27 <+bridge> [ddnet] ty 11:27 <@deen> that's some bad code though 11:28 <@deen> the entire function body should be "return (int) (x*1000) == (int) (y*1000);" 11:28 <+bridge> [ddnet] casting to int doesn't round but only cuts off decimal digits 11:29 <@deen> yes, but that's what you want here, right? 11:29 <@heinrich5991> was just ment to be a presentation of a fact :) 11:29 <@heinrich5991> 0.9 = -0.9 11:30 <@heinrich5991> I wouldn't know what I want there, so whatever 11:35 <+bridge> [ddnet] syltoox is learning to make his own bots :GWfroggyMonkaThink: 11:37 <+bridge> [ddnet] I think my posts from IRC are not coming through to here btw 11:37 <+bridge> [ddnet] yeah heinrich made it one way but maybe its not needed anymore? with twvoice 11:38 <+bridge> [ddnet] That seems weird, so I respond to people on IRC and they never get to read it? 11:38 <+bridge> [ddnet] it's one-way due to the amount of spam we get on IRC 11:38 <+bridge> [ddnet] better to have no bridge than a unidirectional one 11:39 <+bridge> [ddnet] I think I told you it's one-way when you first tried to respond to someone :/ 12:03 <@heinrich5991> deen: now the bridge is no-way