Permanently Change Singleplayer Walking Style
-
Is there a program or way to do this? Change Franklin/Michael/Trevor's walking style?
-
@JessicaCruz Possible with many trainers, not permanently though.
-
May I ask which one does that (that also lets you type in skin names)? Thanks Akila.
-
@JessicaCruz Making a simple .cs file could fix this and may end-up giving you a preferable walking style and skin permanently.
-
New the modding scene, how would I do that ashishcw? Thank you!
-
-
@JessicaCruz That's okay, it doesn't matter if you are new, since it's fairly easy.
So do you have Visual Studio? Or even a notepad would do.
-
@JessicaCruz I assume, you have scripthook plugin installed already.
If yes then here, copy and paste below code into the Notepad and save that any name you wish with extension .cs. Later put that file into the Scripts folder of your GTA V. Now in game, press Key L to change your player's skin to hostess or something, IDK, I just picked the model name randomly.using GTA;
using GTA.Native;
using System;
using System.Collections.Generic;
using System.Windows.Forms;public void onKeyUp(object sender, KeyEventArgs e)
{if (e.KeyCode == Keys.L)
{
GTA.Model modelyouwant = new GTA.Model(PedHash.Airhostess01SFY);
if (modelyouwant.IsValid)
{
if (modelyouwant.IsLoaded && modelyouwant.IsValid)
{
Function.Call(Hash.SET_PLAYER_MODEL, GTA.Game.Player, modelyouwant.Hash);
Function.Call(Hash.SET_PED_DEFAULT_COMPONENT_VARIATION, GTA.Game.Player.Character.Handle);
}
else
{
Script.Wait(300);
}
modelyouwant.MarkAsNoLongerNeeded();
}}
}
-
This post is deleted!
-
@ashishcw That is an incomplete script and won't run. Where is your namespace definition, class designation, constructor, eventhandler assignments?
-
@LeeC2202 @ashishcw Just to be clear I'm looking for something that only changes walking style. I already have a skin.
-
@JessicaCruz I normally do that with a trainer when I do change skins, so I can't provide a script to do that right at this moment I'm afraid.
-
@LeeC2202 Which trainer changes walking styles AND lets you enter in skin names?
-
@JessicaCruz Simple Trainer V will do it, it's called "Change Animation Sets" or something like that and if you go into Model Spawning, you can change into any of the game's models. I spend most of my time as the dead hooker.
There's also a section for addon peds.
-
@LeeC2202 Fantastic, you rock! Since you know so much, would you happen to know why I am having problems with https://www.gta5-mods.com/player/momiji-from-dead-or-alive-add-on-replace? I can replace Franklin just fine, but when I replace Michael the same way he turns out really freaky! Thank you Lee!
-
@JessicaCruz I've not actually tried that one yet, if I get chance later I will have a look. I have it downloaded, just been that busy writing mods I don't get much time to play with addon peds.
It's probably going to be in a few hours though, things are kinda busy here at the moment.
-
@LeeC2202 You're the best Lee! I'm eager to hear what you find!
-
@JessicaCruz Me too, cos she's a real hottie and it would be nice to play as someone who isn't dead for a change.
-
@JessicaCruz I've just tried this, recorded a video to show it working, come back into my Windows 7 install and then realised, I hadn't checked how you were using it. I installed it as a replace using the default filename "a_f_y_tourist_01" and it worked fine with both Trevor and Michael.
Is that how you were using it, or were you using the AddonPeds mod?
-
@LeeC2202 I followed the steps to replace the main character skins (deleting all the player_zero, player_one, and player_two folders and replacing them with the new skin). I want to replace the main characters because if you change your player skin to someone other than a main character you can't do missions.
-
@JessicaCruz Ah, okay... that's a bit more involved than what I do with Ped mods... I'll have to find the instructions to do that and try again later. I tend to just use them as replace peds so you get proper female voices, proper facial animations and a full animation set.
Then again, it's been almost 12 months since I finished Story mode, so I sometimes forget the game has missions to do.
-
@LeeC2202 Hehe, it's definitely tough for me. Lol on the 12 months since story mode.
Hope to hear from you soon!
-
@JessicaCruz I don't know if this is relevant to the problem you're having but after trying to find some info on how to do what you're doing, I found this comment on another player mod.
"Guys, to fix the proble when replacing Michael, you need to delete the player_zero folder andthe player_zero.ymt file in this folder:
(update / x64 / dlcpacks / patchday4ng / dlc.rpf / x64 / models / Cdimage / patchday4ng.rpf / HERE)"I presume that you would copy that folder into your mods folder and delete it in there, not in the original files of course.
I have just looked at the folders for all the player_zero etc... and if I am being honest, I have no idea what to do with those files.
But that info ^^^ might be relevant to your problem, let me know if it is or isn't and if not, I will try and fight my way into those folders later.
-
@LeeC2202 Wow!!!!! Works perfectly!! Thank you so much Lee!!!
-
@JessicaCruz I don't know all the answers straight away but if I can find them, I will... glad to hear it worked.