Everything using RAGE engine to make a mod in GTA5 (someone elses work...R*'s) is a public license and no one is getting paid for nothing so it's fair use. Not stealing.

Posts made by zeroxzerotwo
-
RE: Redux + MVGA
-
RE: Redux + MVGA
@CP said in Redux + MVGA:
Redux is a shitty mod with stolen content. Better switch to NaturalVision
I talked to the creator personally and he states that he never stated he made everything in mod... His goal of redux was to combine mods he liked and make giant package of it so IM not sure where your going from there with that claim you made
-
RE: Setting up Hotkey to Spawn Ped Model
@NotOfTheWorld said in Setting up Hotkey to Spawn Ped Model:
@Jitnaught Holy Moley!! Got it to work! The Ped Model name for the fish was A_C_Fish. It works perfect now, Thank you!
glad everything worked out for you
-
RE: Setting up Hotkey to Spawn Ped Model
@Jitnaught said in Setting up Hotkey to Spawn Ped Model:
@zeroxzerotwo I already provided instructions on how to use the code. You don't need to compile it to use it
yeah but doesnt none compiled code create more lag? using it compiled makes it less stressful on the engine right ?
-
RE: Setting up Hotkey to Spawn Ped Model
@NotOfTheWorld Yeah so use his code and compile it wit Hook V in visual studio and you don't need to use a mod menu
-
RE: Setting up Hotkey to Spawn Ped Model
@Jitnaught said in Setting up Hotkey to Spawn Ped Model:
@zeroxzerotwo It spawns an attacker, not a bodyguard.
that code you provided. Is that HookV or RAGE hook ?
-
RE: Setting up Hotkey to Spawn Ped Model
@NotOfTheWorld Not sure I haven't reviewed the code. To replace the player I think some additional code is required. Quick google is possible. Hope you know how to compile code
EDIT
yeah it spawns a ped that acts as an attacker I believe. If you read the comments in the codebut im just showing you that if you want to change your player without a menu. This is what your gonna have to do because everyone uses a menu and no one has made something that your asking about. It's weird but yeah.. i guess you don't like menu's
-
RE: Max GFX settings but I get this..
@DSG99 said in Max GFX settings but I get this..:
It's change frame scaling mode to 1.0 rather than .5 like you have.
-
RE: Vehicle Mods, Can they be customized?
paints as well but all modders add this feature by default.. if not than the mod was rushed and is crap
-
RE: Stunt props are not collidable (i can go through it)
@kotn3l wow then IDK. I guess you can't install it then... ask the mod creator
-
RE: Stunt props are not collidable (i can go through it)
@kotn3l do you have DLC unlocker installed ?
-
RE: Stunt props are not collidable (i can go through it)
@kotn3l bigrace.xml? If that's a default RockStar file and your loading it into single player. That might be your problem
you may need to edit the xml file. Send me the xml file I'll have look at itand to give you an idea what I mean.. check out this thread with similar problem
https://forums.gta5-mods.com/topic/7269/menyoo-objects-are-not-solid/5
-
RE: Setting up Hotkey to Spawn Ped Model
Someone might have a different perspective on how to solve this but here is mine
Use ScriptHookV or RagePluginHook
create a script and assign a hotkey to a ped model so everytime you press that key... that ped spawns
Using RagePluginHook to spawn a random ped. Your code would look like this
CODE PROVIDED BY TitanSloth || It's a ped generatorinternal static class EntryPoint { public static void Main() { Vector3 spawnPoint; Ped Player = Game.LocalPlayer.Character; Ped myPed; Blip myBlip; while (true) { bool player_Has_Weapon = false; // Sets the spawnPoint spawnPoint = Player.GetOffsetPosition(Vector3.RelativeFront * 10); if (Game.IsKeyDown(Keys.F)) { myPed = new Ped(spawnPoint); myBlip = myPed.AttachBlip(); if (!myPed.Exists()) break; if (!myBlip.Exists()) break; // While the player DOES NOT have the weapon... while (!player_Has_Weapon) { // Give the Ped a weapon myPed.Inventory.GiveNewWeapon("WEAPON_ADVANCEDRIFLE", 150, true); // Set this to true player_Has_Weapon = true; if (player_Has_Weapon) { break; } } myPed.RelationshipGroup = new RelationshipGroup("ATTACKER"); Game.SetRelationshipBetweenRelationshipGroups("ATTACKER", "PLAYER", Relationship.Hate); myPed.Tasks.FightAgainstClosestHatedTarget(20f); } GameFiber.Yield(); } } }
}
-
RE: Stunt props are not collidable (i can go through it)
@kotn3l be careful when using menyoo to spawn props... when you spawn props using that mod. They stay forever
I'm looking forward to see the video for further helping you
-
RE: Vehicle Mods, Can they be customized?
It depends whether or not the creator added support for that. Most creators will add a .txt file explaining what they added to the car. The YCA modding team make some of there cars tune compatible.
It can be custom bumper or vanilla bumpers.
take example of this mod
https://www.gta5-mods.com/vehicles/lexus-is300-tunable -
RE: I need help on how to installed it
@nietfier said in I need help on how to installed it:
@Jitnaught ok, thanks
and for education purposes. ASI is another form of a .DLL ( Dynamic Link Library)... Not sure why Alexander Blade made the extensions .ASI.
-
RE: Max GFX settings but I get this..
you might want to check out nvidia control panel
its probably coming out bad because its just vanilla or your nvidia contol panel settings aren't configured to quality settings. Which heavily deals with how your games operate on the Graphics Card.
-
RE: Is there a posible way to create more then one carcols.meta ?
40-46 is the max I believe. Simple Trainer allows up to 46 addon car slots. So i'm basing that number off of that.
Check out these threads. As people had the same problem and please google your problem before posting a duplicate thread.
https://forums.gta5-mods.com/topic/679/gta-5-err_fil_pack_1/15
https://forums.gta5-mods.com/topic/16133/err_fil_pack_1-crash-error
https://forums.gta5-mods.com/topic/13461/how-to-fix-the-err-fil-pack-1-error
https://forums.gta5-mods.com/topic/4783/err_fil_pack_1-game-error
https://forums.gta5-mods.com/topic/2684/err_fil_pack_1-once-again-after-installing-some-addon-cars
THREADS WITH SIMILAR PROBLEM -
RE: Max GFX settings but I get this..
@Alae63 said in Max GFX settings but I get this..:
u have msaa off i guess , try turn it on at x8 or x4 if u can run it
yeah and you might need to change resolution? IDK your just showing us a picture.
You might want to check out these graphics mods ?
-
RE: Max GFX settings but I get this..
Whats your resolution ? Whats your specs? We need more in order to help you
-
RE: Trying to find a mod
@Jitnaught said in Trying to find a mod:
@zeroxzerotwo Sounds like a mod he's seen before and just wants to find it. Probably saw it in a YouTube video or something.
Next time just report topics that are in the wrong section and moderators will move it.will do
-
RE: BODYGUARD MENU 1.7 HOT TO CHANGE MENU OPTIONS PLEASE FUCKING HELP?!
@Jitnaught said in BODYGUARD MENU 1.7 HOT TO CHANGE MENU OPTIONS PLEASE FUCKING HELP?!:
@TDanceTV2 This is what the description says for the mod:
The controls can be edited via the .ini file using these keys:
www.cambiaresearch.com/articles/15/javascript-char-codes-key-codesyeah what he said
-
RE: License Plates / Spawning with turbo
You can make a script that makes cars have turbo pre installed... As far the license plate thing goes. You have to edit the models in 3ds Max and remove them I believe
-
RE: GTA V - Vengeance For The Plunderers
Not sure what you mean by "WD"
but they are using RagePlugin hook to create these scripted events.