News:

Zatikon is back and free to play! https://www.chroniclogic.com/zatikon.htm

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Jonathan_NL

#91
General Discussion / Gish Trainer?
September 22, 2005, 02:51:56 AM
Is that even possible without cracking the game?
#92
Gish Editor / The level format
September 17, 2005, 04:51:17 PM
What do you mean? Reading a .pla file works like this:
Code Sample
fp = fopen(path, "rb");
fread(&plastruct, sizeof plastruct, 1, fp); /* making assumptions about struct packing */
fclose(fp);
/* swap bytes on a big-endian machine */

Reading levels works almost the same, but there are points where you depend on previous data, such as lists of dynamic size. That gives:
Code Sample
fread(&lvlstruct, untilfirstlist, 1, fp);
/* swap bytes on a big-endian machine */
int i;
for(i=0; i<numitems; i++) fread(&somewhere, sizeof somewhere, 1, fp);
/* etc */

Of course there should be error checks in a real program.
#93
Gish Editor / The level format
September 17, 2005, 12:13:25 AM
Quote (Kampfschaf @ Sep. 17 2005,1:31)
No ICQ? Where you live? ^^

In front of my computer. http://67.15.141.32/iB_html/non-cgi/emoticons/laugh.gif" border="0" valign="absmiddle" alt=':laugh:'>
Can you send me you C Code? I can this a little bit! I think i can use this 4 my VB Code a little bit! http://67.15.141.32/iB_html/non-cgi/emoticons/smile.gif" border="0" valign="absmiddle" alt=':)'> To make the GISH Trainer much better.
How would code to read levels help reading player files?
#94
Gish Editor / The level format
September 16, 2005, 10:10:58 PM
Quote (Kampfschaf @ Sep. 16 2005,10:21)
If you would like to make much more hacks please contact me n ICQ: 306155901

I don't have ICQ.
I program the Gish Trainer in VB!
I used C, and I'm not using Windows.
Maybe we can program a tool to make much more ;)
I don't feel like doing much with it now.
#95
Gish Editor / The level format
September 16, 2005, 07:08:03 PM
It's the whole level format. I figured it out mainly by looking with a hexeditor, and writing a program that parsed as much as possible and often presented parts in a better format than the hexeditor. That way I reached the end fairly quickly.
#96
Gish Editor / The level format
September 15, 2005, 10:11:55 PM
Josiah/Alex: Do you think the encryption is still useful? Can I add it here?
#97
Gish Support / Physics Bug
September 12, 2005, 09:34:38 PM
It's the way their physics engine works.
#98
General Discussion / wow
September 12, 2005, 05:17:47 PM
I've seen them both on Windows now. I'll have to agree with DopefishTom, but that's just my opinion and I think I became pretty much a pro.

Wouldn't limited oxygen make for a neat feature?
#99
General Discussion / wow
September 12, 2005, 04:21:55 PM
That's handy sometimes. I still have to watch the replay on Windows.

Did everyone notice my new CGI avatar? It shows how the sun lights our planet, and is centered at 0 lat and lon.
#100
General Discussion / wow
September 11, 2005, 11:33:18 PM
I got it on a video. Just so you can see what happens when you watch replays on another platform than they're made on. Will upload it soon if I can get it reasonably small.

Edit: http://home.filternet.nl/~eo000199/jonathan/gish/boring.mp4.gz" target="_blank">boring.mp4.gz
#101
Gish Support / 2080X1024 resolution?
September 06, 2005, 10:40:14 AM
Then use:
Code Sample
00 05 00 00  00 04 00 00

Note that 1280/1024=5/4 and not 1024/768=4/3, so you'll get a bit of distortion. If your screen leaves black borders when the aspect ratio doesn't match, I recommend 1280x960 (1280/960=4/3).
#102
Gish Editor / Piston Help
August 30, 2005, 01:48:49 AM
- half pulled piston (hold 8) from anchor to left of circle
- pull piston (hold 7) from anchor to bottom of circle
- half pushed piston (hold 6) from anchor to right of circle
#103
Gish Editor / Piston Help
August 30, 2005, 12:36:12 AM
I solved it by reconnecting the pistons. http://67.15.141.32/iB_html/non-cgi/emoticons/rock.gif" border="0" valign="absmiddle" alt='???'> Maybe you used the wrong type? (can't check because the editor doesn't allow me to, and I don't know yet which number is which anchor on an object)
#104
Gish Editor / Piston Help
August 29, 2005, 11:46:46 PM
If you want me to help, post either:
- A more detailed description.
- The level or a reduced test case.
#105
Gish Support / Read This if you have a certain prob.
August 28, 2005, 05:06:26 AM
NEVER post binary files directly as text: it generally renders them unusable. uuencode, base64, hexdumps, etc should work.