Jump to content
    1. Welcome to GTAForums!

    1. GTANet.com

    1. GTA Online

      1. Los Santos Drug Wars
      2. Updates
      3. Find Lobbies & Players
      4. Guides & Strategies
      5. Vehicles
      6. Content Creator
      7. Help & Support
    2. Red Dead Online

      1. Blood Money
      2. Frontier Pursuits
      3. Find Lobbies & Outlaws
      4. Help & Support
    3. Crews

    1. Grand Theft Auto Series

      1. Bugs*
      2. St. Andrews Cathedral
    2. GTA VI

    3. GTA V

      1. Guides & Strategies
      2. Help & Support
    4. GTA IV

      1. The Lost and Damned
      2. The Ballad of Gay Tony
      3. Guides & Strategies
      4. Help & Support
    5. GTA San Andreas

      1. Classic GTA SA
      2. Guides & Strategies
      3. Help & Support
    6. GTA Vice City

      1. Classic GTA VC
      2. Guides & Strategies
      3. Help & Support
    7. GTA III

      1. Classic GTA III
      2. Guides & Strategies
      3. Help & Support
    8. Portable Games

      1. GTA Chinatown Wars
      2. GTA Vice City Stories
      3. GTA Liberty City Stories
    9. Top-Down Games

      1. GTA Advance
      2. GTA 2
      3. GTA
    1. Red Dead Redemption 2

      1. PC
      2. Help & Support
    2. Red Dead Redemption

    1. GTA Mods

      1. GTA V
      2. GTA IV
      3. GTA III, VC & SA
      4. Tutorials
    2. Red Dead Mods

      1. Documentation
    3. Mod Showroom

      1. Scripts & Plugins
      2. Maps
      3. Total Conversions
      4. Vehicles
      5. Textures
      6. Characters
      7. Tools
      8. Other
      9. Workshop
    4. Featured Mods

      1. Design Your Own Mission
      2. OpenIV
      3. GTA: Underground
      4. GTA: Liberty City
      5. GTA: State of Liberty
    1. Rockstar Games

    2. Rockstar Collectors

    1. Off-Topic

      1. General Chat
      2. Gaming
      3. Technology
      4. Movies & TV
      5. Music
      6. Sports
      7. Vehicles
    2. Expression

      1. Graphics / Visual Arts
      2. GFX Requests & Tutorials
      3. Writers' Discussion
      4. Debates & Discussion
    1. Announcements

    2. Forum Support

    3. Suggestions

Tips On Understanding How to Decipher the Decompiled Scripts?


OfficerJohnson
 Share

Recommended Posts

OfficerJohnson

Hello everyone. Long time, no post. Been trying wrap my head around further things. Still all a bit confusing.

 

So, we have these so-called Decompiled scripts, but trying to look through them is like reading Chinese...

 

First off, what programming language are the Decompiled scripts in? C?

 

Second, do you have any tips on how to better decipher them or make them more easily understandable? Should I be using IDA?

 

Thank you for your help if you choose to reply.

Link to comment
Share on other sites

OfficerJohnson

No one? It's not a C language? Perhaps assembly? Any little bit you can provide is a start. I can research the rest.

Link to comment
Share on other sites

Decompiled scripts are in C.

They are quite hard to read but sometime you will find useful informations in them.

Link to comment
Share on other sites

OfficerJohnson

Decompiled scripts are in C.

They are quite hard to read but sometime you will find useful informations in them.

C language? Thank you. Will look into a course and get more acquainted.

Link to comment
Share on other sites

If you know C# or C++ you should understand it quite easily :)

 

What is weird about these scripts is that they are decompiled so we don't have the name of the variables or functions.

 

Variables are named depending of their type:

iLocal_0 is a local variable (its scope is limited to this script) of type int since it starts with an i.

u stands for Unknown, that's why they are noted of the var type.

f = float, b = bool, etc.

 

Functions are named func:

int func_134(int iParam0, int iParam1)

This function returns an int and accept two parameters of type int.

 

You would have written the same thing in C# ;)

Edited by Bob_74
Link to comment
Share on other sites

If you wanted to see how a function from nativedb works, do you go to each file and try to find it or do you use some sort of program to open and search all of them?

Link to comment
Share on other sites

If you wanted to see how a function from nativedb works, do you go to each file and try to find it or do you use some sort of program to open and search all of them?

I'm not an expert on decompiled scripts, but what I do is opening all scripts at once with Notepad++ and searching the function I want to find in all the files.

That way, I'm sure to find it quickly ;)

 

EDIT: To ease Notepad++ task, sometime I make a Windows search to filter the files and have less to open in Notepad++

Edited by Bob_74
Link to comment
Share on other sites

In Notepad++ press CTRL + Shift + F and use the popup to search in a folder.

  • Like 3
Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.