|
-
Jul 18th, 1999, 02:01 AM
#1
Thread Starter
New Member
I want to be able to open various game files in my programs. For example, GTA maps, FlightSim textures, Carmageddon *.pix files etc etc. Do you need a special decoder of something? If yes, is there anyway of writing this decoder? Is there any humanly possible way of doing this using ordinary controls and the API if needed, and, if not, how else could you do it? Cheers for any help.
-
Jul 23rd, 1999, 07:41 PM
#2
Thread Starter
New Member
-
Jul 23rd, 1999, 10:44 PM
#3
New Member
Hi,
I might have a solution
In VB you get a GET and PUT statement.
If you create for example your own game, here is an example.
Let's say you wan't to create a password and name, here's an example code:
{Save}
Code:
Dim PassWord
Open "game.dat" for random as #1
Put #1,1,PassWord
Close #1
Text1.Text=PassWord
{Open}
Code:
Dim PassWord
Open "Game.dat" for random as #1
Get #1,1,PassWord
Close #1
Text1.Text=PassWord
Well I hope that helps you and so on.
Play around with it for a while and so on.
!!! Remember !!!
The 'Dim PassWord' must have a data string for example 'Dim PassWord "as String"'
I tried to use this statements to get some Dune 2000 files and so on. Well I didn't succeed but I'm trying on other things.
Well I hope you succeed!
------------------
\\|//
|o o|
-ooo-------ooo-------
E - Mail: [email protected]
---------------------
-
Jul 28th, 1999, 01:19 AM
#4
Thread Starter
New Member
Thanks, it helps a bit. I was thinking more specificly about picture files though - I want to create a game file editor. I'm sure it can be done because I have various programs that can edit game files.
-
Feb 23rd, 2000, 09:18 AM
#5
Lively Member
<<Need Some Move Help?>>
<<Yes or No; Back to the top!>>
Website
Send an e-mail to [email protected] to get a sample of my games.
1. Hardware: The parts of a computer system that can be kicked.
2. f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.
3. Bad command or file name. Go stand in the corner.
4. Never trust a computer you can't throw out the window.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|