Fallout: New Vegas

Fallout: New Vegas

View Stats:
H.U.N.K May 15, 2023 @ 2:57pm
Need help saving a console command
I'm trying to find a way to save a console command in my game does anyone please know a way to do it?
< >
Showing 1-13 of 13 comments
Tribe Reimanen May 15, 2023 @ 3:44pm 
Not sure what you mean but if youre just looking for a faster way to post commands you already used then get this mod: https://www.nexusmods.com/newvegas/mods/70801

After using a command you can use the Arrow Up button to automatically paste previously used commands.
H.U.N.K May 15, 2023 @ 3:51pm 
Originally posted by ✪Reimanen:
Not sure what you mean but if youre just looking for a faster way to post commands you already used then get this mod: https://www.nexusmods.com/newvegas/mods/70801

After using a command you can use the Arrow Up button to automatically paste previously used commands.
Thanks but what I'm trying to do is make a command to always be enabled like "Teofis" it disables most effects I'm trying to make it permanent or maybe make it execute itself every time I play the game
Vex Hilarius May 15, 2023 @ 6:26pm 
I think making a .bat file is what you want. I don't know much about it so you may have to do some research yourself. I have seen some modders use it for certain things.
H.U.N.K May 15, 2023 @ 6:59pm 
Originally posted by Vex Hilarius:
I think making a .bat file is what you want. I don't know much about it so you may have to do some research yourself. I have seen some modders use it for certain things.
Thanks but a bat file needs to be manually played ingame so it wouldnt be very useful ;-;
Vex Hilarius May 15, 2023 @ 7:51pm 
Well it would still be quicker I imagine than manually entering in the commands every time you boot up the game.

What you're asking for just simply isn't possible I'm afraid. At least as far as i know. Maybe someone else knows for sure.
Last edited by Vex Hilarius; May 15, 2023 @ 7:52pm
H.U.N.K May 15, 2023 @ 7:57pm 
Originally posted by Vex Hilarius:
Well it would still be quicker I imagine than manually entering in the commands every time you boot up the game.

What you're asking for just simply isn't possible I'm afraid. At least as far as i know. Maybe someone else knows for sure.
Thats the thing it wouldn't be quicker because I would always have to launch the game open up the console and type "bat filename" instead of just "teofis" :/
Salamand3r- May 15, 2023 @ 8:00pm 
You can make a quick mod using JIP's scriptrunner capabilities that will just run a console command every time you load a game.

Assuming you have JIP LN installed, create a text file under nvse\plugins\scripts named gl_WhateverYouWant.txt (the gl_ prefix is the important part, since that tells JIP when to run it - gl_ is GameLoad)

Inside the text file, you should just be able to put the console command and it will run every game load for you. I use it to set a few travelling merchants to essential, should work effectively the same.
H.U.N.K May 15, 2023 @ 8:04pm 
Originally posted by Salamand3r-:
You can make a quick mod using JIP's scriptrunner capabilities that will just run a console command every time you load a game.

Assuming you have JIP LN installed, create a text file under nvse\plugins\scripts named gl_WhateverYouWant.txt (the gl_ prefix is the important part, since that tells JIP when to run it - gl_ is GameLoad)

Inside the text file, you should just be able to put the console command and it will run every game load for you. I use it to set a few travelling merchants to essential, should work effectively the same.
Wow thank you so much for this you have no idea how long I've been looking for something like this :D
Vex Hilarius May 15, 2023 @ 8:23pm 
Originally posted by H.U.N.K:
Originally posted by Vex Hilarius:
Well it would still be quicker I imagine than manually entering in the commands every time you boot up the game.

What you're asking for just simply isn't possible I'm afraid. At least as far as i know. Maybe someone else knows for sure.
Thats the thing it wouldn't be quicker because I would always have to launch the game open up the console and type "bat filename" instead of just "teofis" :/

Oh that's my bad I thought you wanted a bunch of commands along with teofis.

But yeah Salamd3r here to save the day yet again
H.U.N.K May 15, 2023 @ 8:28pm 
Originally posted by Vex Hilarius:
Originally posted by H.U.N.K:
Thats the thing it wouldn't be quicker because I would always have to launch the game open up the console and type "bat filename" instead of just "teofis" :/

Oh that's my bad I thought you wanted a bunch of commands along with teofis.

But yeah Salamd3r here to save the day yet again
Either way thanks for the help :)
H.U.N.K May 15, 2023 @ 8:31pm 
Originally posted by Salamand3r-:
You can make a quick mod using JIP's scriptrunner capabilities that will just run a console command every time you load a game.

Assuming you have JIP LN installed, create a text file under nvse\plugins\scripts named gl_WhateverYouWant.txt (the gl_ prefix is the important part, since that tells JIP when to run it - gl_ is GameLoad)

Inside the text file, you should just be able to put the console command and it will run every game load for you. I use it to set a few travelling merchants to essential, should work effectively the same.
oh btw do you know how to make it load only once cause I noticed something when I first load into the game it works fine BUT if I die and reload the "JIP" uses the command again (that turns off teofis :/ )
Salamand3r- May 15, 2023 @ 8:44pm 
Originally posted by H.U.N.K:
Originally posted by Salamand3r-:
You can make a quick mod using JIP's scriptrunner capabilities that will just run a console command every time you load a game.

Assuming you have JIP LN installed, create a text file under nvse\plugins\scripts named gl_WhateverYouWant.txt (the gl_ prefix is the important part, since that tells JIP when to run it - gl_ is GameLoad)

Inside the text file, you should just be able to put the console command and it will run every game load for you. I use it to set a few travelling merchants to essential, should work effectively the same.
oh btw do you know how to make it load only once cause I noticed something when I first load into the game it works fine BUT if I die and reload the "JIP" uses the command again (that turns off teofis :/ )

gr_*.txt on game start, gl_*.txt on game load, gs_*.txt on game save, gx_*.txt on game exit, xm_*.txt on exit to the main menu, gn_*.txt on new game (as of JIP LN 56.34), ln_*.txt on new game and game load (as of JIP LN 56.95).

Those are the various times a scriptrunner can be executed, denoted by the prefix you give to the text file.
H.U.N.K May 15, 2023 @ 8:48pm 
Originally posted by Salamand3r-:
Originally posted by H.U.N.K:
oh btw do you know how to make it load only once cause I noticed something when I first load into the game it works fine BUT if I die and reload the "JIP" uses the command again (that turns off teofis :/ )

gr_*.txt on game start, gl_*.txt on game load, gs_*.txt on game save, gx_*.txt on game exit, xm_*.txt on exit to the main menu, gn_*.txt on new game (as of JIP LN 56.34), ln_*.txt on new game and game load (as of JIP LN 56.95).

Those are the various times a scriptrunner can be executed, denoted by the prefix you give to the text file.
Thank you :)
< >
Showing 1-13 of 13 comments
Per page: 1530 50

Date Posted: May 15, 2023 @ 2:57pm
Posts: 13