Caricamento...
1 file piaciuto
819 commenti
25 video
1 caricamento
23 seguaci
6.565 downloads
  • Gtav76

    @Ss4gogeta0 Easy to miss, she wrote lots of stuff, but I always look for the essential files, particularly the gameconfig. What I find funny is the logo missing. I've never seen that before so I'm guessing the installation is corrupt. Since she wrote she verified the file integrity, which was smart, the culprit is most likely in the mods folder - other mod conflict?

    1 giorno fa
  • Gtav76

    @Ss4gogeta0, @EncryptedReality Her comment clearly states she has heap/pack etc.installed.

    @AliciaW. Yes the mod, addon or total conversion, works fine with the current version of GTA V.
    No, you don't need the asi or YOS data, these are optional are pretty much useless because if you're developing from scratch you should use UE5 or Unity, not a RAGE engine from the 2010s.
    The gameconfig packaged in the OIV should be fine although gameconfigs aren't one size fits all and they aren't magic bullets.

    The first rule of trouble shooting is "does the game run in vanilla mode". Given this mod doesn't require additional modded scripts (dll or asi) and given you have proper hardware, the issue is with your mods folder. However, before troubleshooting mods, if the logo doesn't show up you're obviously missing the frontend.ytd - in other words your installation is wrong or corrupt.

    1 giorno fa
  • Gtav76

    @Antthony_12 Glad you fixed it. The "keys error" is likely due to System.Windows.Forms which needs to be added as a reference in VS for your key events. Don't understand why the video you watched took 20 minutes. Essentially, once VS is installed, you need a Class Library (.NET Framework) template and select 4.8 as your framework. That's it.

    In passing, you can tell when a YouTuber is a noob when they don't recognize that the V and similar letters in the GTA franchise are actually Roman numerals. That's why you'll hear them pronounce Scripthook Vee instead of Five, Open Eye Vee instead of Open 4 etc. Funny how they recognize it's GTA 4 and GTA 5, not GTA Eye Vee and GTA Vee.

    7 giorni fa
  • Gtav76
  • Gtav76

    @Antthony_12 I can't reproduce your errors. I mean from the log it's very clear that your compiler can't find the necessary assemblies/references. Without knowing what IDE and/or C# compiler you're using I can't comment further. If you do use VS and I strongly recommend it, you will need to add the reference, whether they be System or mod libraries such as SHVDN, nativeui, lemonui, ifruit...etc.

    7 giorni fa
  • Gtav76

    @gtavjamal It was very surprising and definitely set a precedent...so after short reflection, I thought F it. I'm taking all the scripts down. It's just the principle - taking someone's work, decompiling it, making changes, and then publicly posting it - without any permission nor any consideration for the author.

    7 giorni fa
  • Gtav76

    @Antthony_12 P.S. Are you using VS to compile? Either way, compile with .NET Framework 4.8

    7 giorni fa
  • Gtav76

    @Antthony_12 There is nothing wrong with using Chat AI. However there are caveats. The learning models use whatever code they can find and most of it is outdated. As a result, the code it generates often is also outdated and the worst of it is that it will invent properties and methods. I haven't compiled your code and I really don't understand why SHVDN would generate such errors. I just spotted your errors in the text. I also use a timer, when I test for stability, and have never encountered such errors. When I have a chance, I'll compile your code and report back.

    Finally, in passing, not all code will run uncompiled (for example LemonUI) and if you do use uncompiled scripts the convention is to use .3.cs, for example myscript.3.cs when using SHVDN3.

    7 giorni fa
  • Gtav76

    @gtavjamal A moderator here, decompiled, edited, and uploaded my TV script on pastebin - without permission. This was under the false pretense that my script was causing crashes (it wasn't) and his edited version would fix all issues and school me at the same time. Well wrong on all counts. The script was fine and my knowledge is light years ahead of his.

    7 giorni fa
  • Gtav76

    @Antthony_12
    You stated you couldn't compile this script? I'm assuming you're using an old script or tutorial, or more likely AI. If the latter please be aware that the chat AI models (ChatGPT or other) didn't have the best learning resources for SHVDN and consequently Chat AI often invents its own methods and properties. I'm a big fan of AI, as in Stable Diffusion, but it is not the best way to script GTA V.

    Since your script is not compiled - the code is exposed- i'm assuming it's both proper and ethical to review it. Most importantly, I hope you don't mind these suggestions and the reason your code isn't compiling yet still working:
    You should be using the latest version of SHVDN if you're uploading mods.
    For your directives you have choices:
    using GTA.UI; //For notification and Subtitles
    using Screen = GTA.UI.Screen; //For Subtitles

    For notifications, depending on your directives:
    Notification.PostTicker("Lap started!",true); //was Notification.Show

    For ShowSubtitle, depending on your directives:
    GTA.UI.Screen.ShowSubtitle("Elapsed time: " + formattedTime);
    or
    Screen.ShowSubtitle("Elapsed time: " + formattedTime); // based on your directives

    8 giorni fa