Results 1 to 5 of 5

Thread: Opening game files

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 1999
    Posts
    9

    Post

    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.

  2. #2

    Thread Starter
    New Member
    Join Date
    Jul 1999
    Posts
    9

    Post

    someone answer PLEASE!!!

  3. #3
    New Member
    Join Date
    Jan 1999
    Location
    Johannesburg, Gauteng, South Africa
    Posts
    6

    Post

    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]
    ---------------------

  4. #4

    Thread Starter
    New Member
    Join Date
    Jul 1999
    Posts
    9

    Post

    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.

  5. #5
    Lively Member *Super Sniper*'s Avatar
    Join Date
    Jan 2000
    Location
    Portland, OR
    Posts
    81

    Post

    <<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
  •  



Click Here to Expand Forum to Full Width