Log in

View Full Version : Visual C++


Vulcan
Sep 18, 2010, 07:11 PM
Does anyone know where I can look or who i can talk to to how to make a jj2 prog with Visual C++ 2008?

1.I dont know where to get the codes

2.i dont know HOW to get them

3.How do i make it a JJ2 prog for jj2?

4 and wth does Attach to Proccess mean?

5.where do I go to look to find all this stuff for jj2?

HELP:confused::confused::confused:

Violet CLM
Sep 18, 2010, 07:49 PM
Around #3 I lost track of how many layers your problem has, but <a href="http://www.jazz2online.com/wiki/index.php?List+of+Jazz+Jackrabbit+2+Memory+Address es">this list</a> might well have some useful information for you, depending on what it is you want to do. <a href="http://www.jazz2online.com/wiki/search.php?search=file+format">Or maybe these.</a>

Vulcan
Sep 19, 2010, 06:04 AM
What are they?

the first one doesnt work.

AlL i want to know is how to make a JJ2 prog with Visual C++ and where to get the codes.

Speeza
Sep 19, 2010, 06:08 AM
The first one didn't work because the link had two spaces in it, you only had to backspace it.
http://www.jazz2online.com/wiki/index.php?List+of+Jazz+Jackrabbit+2+Memory+Address es

This link should work.

Violet CLM
Sep 19, 2010, 10:33 AM
And I'm trying to guess what "the codes" might mean. (<a href="http://www.jazz2online.com/wiki/?Jazz_Jackrabbit_2_cheats">I guess conceivably you might mean this as well?</a>)

FQuist
Sep 19, 2010, 11:47 AM
What are they?

the first one doesnt work.

AlL i want to know is how to make a JJ2 prog with Visual C++ and where to get the codes.
It is not easy to make a program with Visual C++. That you're asking this many questions probably means it is too hard for you. You seem to think that if someone posts a one-line explanation you will know how to make a program. Learning to program takes time though, and requires you to be able to find out things on your own and - when you have a problem - be able to explain it clearly so others can help you.

Right now, your post is not clear at all, to anyone. Nobody will know if you mean the serial to crack Visual C++ so you can use it for free (this is not legal and not tolerated here, btw), the JJ2 source code, the source code of existing JJ2 programs, or the code required to make your own program.

FQuist
Sep 19, 2010, 02:08 PM
Actually, not trying to crush dreams, person who negrepped me (i will proceed to explode and flame!!!) Just trying to make him think.

But you may have a bit of a point. So, Cooldude, a question:
What do you want to make?

Vulcan
Sep 19, 2010, 04:14 PM
It is not easy to make a program with Visual C++. That you're asking this many questions probably means it is too hard for you. You seem to think that if someone posts a one-line explanation you will know how to make a program. Learning to program takes time though, and requires you to be able to find out things on your own and - when you have a problem - be able to explain it clearly so others can help you.

Right now, your post is not clear at all, to anyone. Nobody will know if you mean the serial to crack Visual C++ so you can use it for free (this is not legal and not tolerated here, btw), the JJ2 source code, the source code of existing JJ2 programs, or the code required to make your own program.


I want both the souce code for jj2 and the source code for am existing prog

Speeza
Sep 19, 2010, 04:24 PM
Well sorry to burst you bubble cooldude, but we sadly don't have the source code for JJ2.

Violet CLM
Sep 19, 2010, 05:41 PM
<a href="http://www.jazz2online.com/jcf/showthread.php?t=14563">Specifically,</a>

To find the source code for a specific program, you are best off finding a program (made in Visual C++, I suppose) that you think is somewhat similar to whatever it is you want to do (which we still don't know) and asking the author personally for the source. The community generally is not likely to have the source code for a specific program made by a specific person.

Sfaizst
Sep 19, 2010, 11:36 PM
To Answer your questions:

1.I dont know where to get the codes

Like earlyer said, the JJ2 source code is not aviable... (i think its completly lost)

2.i dont know HOW to get them

^^

3.How do i make it a JJ2 prog for jj2?

Never written programms in C++ / Visual C++, but in Delphi i normally have the same WinAPI Calls, so google for:
- ReadProcessMemory, WriteProzessMemory, CreateRemoteThread, VirtualAllocEx,.....

4 and wth does Attach to Proccess mean?

If you want to read/write memory out/in an other process you need to get the PID (processID), there are about some api calls too to get it (FindWindow (/...) --> GetWindowThreadProcessId --> OpenProcess (this returns the PID in the end, this is everytime needed when you want to access JJ2's Memory), just google a bit).

5.where do I go to look to find all this stuff for jj2?

The "List of Jazz Jackrabbit 2 Memory Addresses" was sent earlyer, so with this and a bit googleing you should not have problems now

Wish you a lot of fun and don't gve up, but first lern the language where you want to write your programms in (if you are good it takes about 1 Month to lern and use the basics)...

Sfaizst