Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : visualstudio via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect the thing is that if you have the address of the function which loads the decryption key for the sound, you easily can search and retrieve the encryption key. URL: https://forum.audiogames.net/post/517738/#p517738 -- Audiogames

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @30Nah. Just scan ram for an assembly sequence that's known to start decryption, set a breakpoint there, figure out the register or stack offset that contains the key.  But without ASLR that's probably the same on everyone's machine

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @29, yep, I did enjoy making your point. You could indeed automate it, but you'd need memory addresses from the disassembler. But those aren't exactly hard to obtain. URL: https://forum.audiogames.net/post/517721/#p517721

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @29, yep, I did enjoy making your point. You could indeed automate it, but you'd need memory addresses fromthe disassembler. But those aren't exactly hard to obtain. URL: https://forum.audiogames.net/post/517721/#p517721

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @28Er.  So basically what you're telling me is that I should have done this because you could automate this with a Python script that talks to the MSVC debugging APIs, whereupon it would go from a few hours to a few minutes

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @27, BGT's encryption has already been broken; specifically, the algorithm (AES-256-CBC) hasn't been broken, but it is possible to extract cryptographic material trivially (it takes a few hours, tops). All you need are a disassembler

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @27, BGT's encryption has already been broken; specifically, the algorithm (AES-256-CBC) hasn't been broken, but it is possible to extract cryptographic material trivially (it takes a few hours, tops). All you need are a disassembler

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @23No one in this community should really care about extraction of sounds, frankly.  The only reason BGT has "solved" this is by being obscure enough that no one has bothered breaking the encryption and publishing how yet.

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : manamon_player via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect at24 thanks a lot, example please URL: https://forum.audiogames.net/post/517578/#p517578 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : tdani via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @22Thanks for this detailed answer!I was pretty much in possession of these concepts too, but so I already know for sure that I even need to call another programming language for help, for example because BGT can’t handle the https

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @23For distributing code you can use Pyinstaller, which builds an executable binary. Packing and Extracting can be done easily with a Zipfile, and depending you can pack your files into the executable itself. Loading sounds can also

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-09 Thread AudioGames . net Forum — Developers room : manamon_player via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect sorry for off topic buti'm wurying to swiching to python, because of sounds that i'm not sure how packing/extracting works, and hows coad executable URL: https://forum.audiogames.net/post/517554/#p517554 -- Audiogames-reflector

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect Okay so, it's late, I can't give this a proper treatment now.  But I can answer some of this. And with respect to a proper treatment, consider how long this post is, and consider that I don't consider it a proper treatment, and you

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : visualstudio via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @20 if you want reliability use tcp (http/s is built around it).undead assault uses a library called PodSixNet which is a simple wrapper around python's socket library and it uses tcp as well.if you want a reliable/encrypted

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @18: you have a thums up for that, I couldn't put it like that, however many posts and atitudes of writing I tryed. To be clear, I don't love bgt in the slightest, for those of you that haven't got it yet, the entire thing is kind

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @18: you have a thums up for that, I couldn't put it like that, however many posts and atitudes of writing I tryed. To be clear, I don't love bgt in the slightest, for those of you that haven't got it yet, the entire thing is kind

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect I have to agree with everything Camlorn has said. I have been quite harsh on people to move away from BGT -- and I will continue to be so -- because it is detrimental to everyone. Its ancient, its insecure, its abandoned

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect I have to agree with everything CAmlorn has said. I have been quite harsh on people to move away from BGT -- and I will continue to be so -- because it is detrimental to everyone. Its ancient, its insecure, its abandoned

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @17BGT's manual doesn't teach good game coding practice. Additionally, there are enough sighted game resources that the information is out there, and those of us who are older than BGT remember the days when people tried to use

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @14: My username is actually a bitter irony for the true bgt lovers out there. I can't say I precisely hate bgt, but neither do I precisely clame the opposite.The thing is, however, that bgt played a great role in audiogaming

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : tdani via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect Thanks to everyone who answered my question!I see some people speaking negatively in my past on this forum about me.I also know that what I was doing was wrong, that is, that I shared the source code.I did so in part so that whoever

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : visualstudio via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @7, post #2 gave his own idea and others did that as well.@10, the thing is that for someone newbie, multiplayer should be at least very very hard to understand, not to just mention the technical points.it doesn't mean that bgt

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : manamon_player via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect at2, are you bgt lover or bgt hater? URL: https://forum.audiogames.net/post/517364/#p517364 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : Jaidon Of the Caribbean via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect 12 good point. I;m just really, really tired of people telling people to switch  from BGT to, say python, by saying these complexed reasons. TBH  I didn't have a problem wwith you answering him with all the terms and not going easy

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @10Either you need to speak English well enough to understand technical concepts at a high level or you need to find people (or resources by people) who speak your first language to explain them to you.  It's not feasible to take

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : simter via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @1 lol i kind of expected a btb link.@2 Nicely said, i my self switched to python but networking is the only thing i really don't get in python. Btw, what is with your bgt version that you posted about?@5 btb is a klone of a game

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : Jaidon Of the Caribbean via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @8, most of the people coding in BGT don't have any time for all the technicalities. I'm pretty willing to learn, however the demographics of the people you're trying to talk to just won't connect to what you're saying. Its good

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : Jaidon Of the Caribbean via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @8, most of the people coding in BGT don't have any time for all the technicalities. I'm pretty willing to learn, however the demographics of the people you're trying to talk to just won't connect to what you're saying. Its good

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @8. thumbs up. URL: https://forum.audiogames.net/post/517320/#p517320 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @7This is the second or third time I've seen someone make a post like this. So I'm just going to point out that everyone answered the question, whether you like those answers or not.  Those of us who don't tone it down to the level

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : Jaidon Of the Caribbean via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect post  number 2 was the best way I saw someone telling people they should switch, plus they actually still tried to anser OP's question. And that's why I give you a thumbs up. I wish people could be more like you, unlike others who

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect There is probably a function in BGT that runs the Enet loop for a bit when you call it. You probably need to call that function more often on both sides.Python etc. aren't slow at this because they also use native libraries

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @3: what is btb?@4: well, because of that and the great packet loss and whatever else, I gave him advice that, I think, is generally aplicable and relevant for most modern games or applications of any kind, no matter in what

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : visualstudio via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect @1 and @2, bgt's network is on top of eNet which is a udp library.for your information, udp is not reliable at all. this is the reason that it is used in games (this makes it faster).@2, he doesn't know anything programming. so

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect Could it possibly be because you want to try and revive BTB? URL: https://forum.audiogames.net/post/517233/#p517233 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: BGT multiplayer game a lot of ping client disconnect I am sorry to bring this to you, especially now during a bgt game project, but bgt is quite dead by now, mainly because of the same problem you are experiencing , as well as other factors widely known in this community, so, I don't

BGT multiplayer game a lot of ping client disconnect

2020-04-08 Thread AudioGames . net Forum — Developers room : tdani via Audiogames-reflector
BGT multiplayer game a lot of ping client disconnect Hey everyone!I could a lot of a multiplayer audiogames, written in BGT, that ping is too large, a game client, if connected on server, it was drop of the players.Someone have a problem an TCP/UDP ports in BGT multiplayer section.I saw