Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: BNU-MaStEr on August 29, 2003, 01:56 PM

Title: C++
Post by: BNU-MaStEr on August 29, 2003, 01:56 PM
Hey I'm a little new to programming in general, but I was wondering if there was anyone here that could help me with C++, I mainly need something I can mess around with to learn how functions on it work. If you have like an old out of date C++ bot or somethin, that would be cool. I just need to be able to see somethin.

Either way, reply if you can. :)
Title: Re:C++
Post by: drivehappy on August 29, 2003, 02:15 PM
http://mousepad.d2network.com/files/mh/d2maphack_46c.cpp
Title: Re:C++
Post by: Zakath on August 29, 2003, 05:56 PM
http://mindview.net/Books/TICPP/ThinkingInCPP2e.html
Title: Re:C++
Post by: UserLoser on August 29, 2003, 11:21 PM
www.pscode.com ! Just search for what you want to know and get a start and figuring out how the code works and try to understand it, or you can always go and get books/tutorials off the web
Title: Re:C++
Post by: BNU-MaStEr on August 30, 2003, 11:27 AM
Hrm...thanks guys for the help, but I was looking for like, an outdated chatbot c++  I just wanna see how it works. I don't know if anyone else is like this, but I learn much better by doing, than by reading.
Title: Re:C++
Post by: Hitmen on August 30, 2003, 12:13 PM
This (http://www.cold-chaos.net/hitmen/zDSBot3-2109.zip) might be of some help. But remember, code leeching is bad!  :P
Title: Re:C++
Post by: Spht on August 30, 2003, 05:42 PM
A good example (less complex) would be Skywing's MiniChat (http://www.valhallalegends.com/skywing/files/MiniChat.cpp).
Title: Re:C++
Post by: Camel on August 30, 2003, 08:12 PM
Quote from: Spht on August 30, 2003, 05:42 PM
A good example (less complex) would be Skywing's MiniChat (http://www.valhallalegends.com/skywing/files/MiniChat.cpp).

(ReadFileEx((HANDLE)Sock, Data, DATA_SIZE-1, &Overlapped, (LPOVERLAPPED_COMPLETION_ROUTINE)&ReceiveCompletion) || GetLastError() == ERROR_IO_PENDING) == False
Title: Re:C++
Post by: Adron on August 30, 2003, 08:42 PM
lol, Skywing likes to write that sort of code? Doesn't it look very simple? :P
Title: Re:C++
Post by: Camel on August 30, 2003, 08:47 PM
Well it's not that hard to figgure out, but I would bet that most newbies to code wouldnt be able to figgure out why the GetLastError call is okay on the same line. I always try to space my code out so I don't end up with that kind of code -- the compiler has to work it out anyways, so why bother?

[edit] Did you know that there's a 't' in the word 'bet'?
Title: Re:C++
Post by: Eibro on August 31, 2003, 07:00 AM
Quote from: Spht on August 30, 2003, 05:42 PM
A good example (less complex) would be Skywing's MiniChat (http://www.valhallalegends.com/skywing/files/MiniChat.cpp).
Seems to me that code won't work unless the Internal* and Offset* member variables of the OVERLAPPED struct are zeroed out. At least, in the past i've had problems with leaving them as-is.
Title: Re:C++
Post by: Skywing on August 31, 2003, 11:18 AM
Quote from: Eibro on August 31, 2003, 07:00 AM
Quote from: Spht on August 30, 2003, 05:42 PM
A good example (less complex) would be Skywing's MiniChat (http://www.valhallalegends.com/skywing/files/MiniChat.cpp).
Seems to me that code won't work unless the Internal* and Offset* member variables of the OVERLAPPED struct are zeroed out. At least, in the past i've had problems with leaving them as-is.
Yeah, that's a bug I never fixed in the version I posted.