The Elder Scrolls V: Skyrim Special Edition

The Elder Scrolls V: Skyrim Special Edition

Ver estadísticas:
osama bin ladder 13 JUL 2024 a las 1:03 a. m.
Where to find Form ID?
New to modding. I have Skyrim Anniversary Edition and I'm trying to give myself telekenesis arrows, ID FExxx800. What do I put in for xxx when using the player.Add.Item command?
< >
Mostrando 1-10 de 10 comentarios
AllergicToBrainRot 13 JUL 2024 a las 1:15 a. m. 
player. additem FExxx800

Add a number next to the ID to get amount you wanted
osama bin ladder 13 JUL 2024 a las 1:21 a. m. 
Publicado originalmente por I-sell-diet-water:
player. additem FExxx800

Add a number next to the ID to get amount you wanted
Item 'FExxx800' not found for parameter ObjectID.
Ihateeverybody 13 JUL 2024 a las 1:22 a. m. 
Help Telekenesis is the best way. Should give you everything with that word.

You can also try Help "Telekenesis Arrows" and that should narrow things down.

Two additional things. If you are looking for a spell tome you will be looking for something prefaced with BOOK:

If you are looking to add the spell directly you will need to use player.addspell instead of player.additem
Última edición por Ihateeverybody; 13 JUL 2024 a las 1:24 a. m.
xybolt 13 JUL 2024 a las 1:53 a. m. 
Publicado originalmente por osama bin ladder:
New to modding. I have Skyrim Anniversary Edition and I'm trying to give myself telekenesis arrows, ID FExxx800. What do I put in for xxx when using the player.Add.Item command?
the "xxx" is put there because that value is dependent on where the plugin (that has all the information of those arrows) is located in your load order. It can be on place 10 or 50 etc You have to replace it with the location of your plugin in your load order otherwise the engine would not know on which place it needs to check into.

using the help command can give you the proper form id.
help ' Telekinesis Arrows'
A response is given with a list of form id and names that matches with the given entry. If you cannot find the arrows, you can use the PgUp and PgDown to scroll through the list.

Once found, use the id to add it to your inventory
player.additem <formId> <number>
the formid is what you have to supply. The number is optional. If you don't fill it in, it defaults to 1.

example: put one daedric arrow in your inventory
player.additem 000139c0

another example: put 100 daedric arrows in your inventory
player.additem 000139c0 100
Última edición por xybolt; 13 JUL 2024 a las 1:56 a. m.
osama bin ladder 13 JUL 2024 a las 2:18 a. m. 
Publicado originalmente por xybolt:
Publicado originalmente por osama bin ladder:
New to modding. I have Skyrim Anniversary Edition and I'm trying to give myself telekenesis arrows, ID FExxx800. What do I put in for xxx when using the player.Add.Item command?
the "xxx" is put there because that value is dependent on where the plugin (that has all the information of those arrows) is located in your load order. It can be on place 10 or 50 etc You have to replace it with the location of your plugin in your load order otherwise the engine would not know on which place it needs to check into.

using the help command can give you the proper form id.
help ' Telekinesis Arrows'
A response is given with a list of form id and names that matches with the given entry. If you cannot find the arrows, you can use the PgUp and PgDown to scroll through the list.

Once found, use the id to add it to your inventory
player.additem <formId> <number>
the formid is what you have to supply. The number is optional. If you don't fill it in, it defaults to 1.

example: put one daedric arrow in your inventory
player.additem 000139c0

another example: put 100 daedric arrows in your inventory
player.additem 000139c0 100

Just typed Help "Telekinesis Arrows" and got the Form ID as FE00082A.

Typed "player.AddItem FE00082A" and got "Invalid Inventory object 'FE00082A' for parameter ObjectID."

Why is this so ♥♥♥♥♥♥♥ difficult.
Última edición por osama bin ladder; 13 JUL 2024 a las 2:19 a. m.
osama bin ladder 13 JUL 2024 a las 2:24 a. m. 
Another thing when you have time. My companion Talvas just died. I want to resurrect him using the console. How would I go about doing this?
osama bin ladder 13 JUL 2024 a las 2:27 a. m. 
Publicado originalmente por osama bin ladder:
Another thing when you have time. My companion Talvas just died. I want to resurrect him using the console. How would I go about doing this?
Ignore this he just disappeared that's all. God this game pisses me off but I love it.
osama bin ladder 13 JUL 2024 a las 2:31 a. m. 
Publicado originalmente por xybolt:
Publicado originalmente por osama bin ladder:
New to modding. I have Skyrim Anniversary Edition and I'm trying to give myself telekenesis arrows, ID FExxx800. What do I put in for xxx when using the player.Add.Item command?
the "xxx" is put there because that value is dependent on where the plugin (that has all the information of those arrows) is located in your load order. It can be on place 10 or 50 etc You have to replace it with the location of your plugin in your load order otherwise the engine would not know on which place it needs to check into.

using the help command can give you the proper form id.
help ' Telekinesis Arrows'
A response is given with a list of form id and names that matches with the given entry. If you cannot find the arrows, you can use the PgUp and PgDown to scroll through the list.

Once found, use the id to add it to your inventory
player.additem <formId> <number>
the formid is what you have to supply. The number is optional. If you don't fill it in, it defaults to 1.

example: put one daedric arrow in your inventory
player.additem 000139c0

another example: put 100 daedric arrows in your inventory
player.additem 000139c0 100
Just figured it out myself. I just needed to replace the "xxx" with "000", wasn't that hard after all...
realskeal 13 JUL 2024 a las 7:22 a. m. 
you can filter searches in the console by typing in what you want to search then 4 followed by whatever category the item you want is in.

I.E:
'help dwarven 4 weap' will show all weapon id's with 'dwarven' in the name
'help elven 4 armo' will show all armour id's with 'elven' in the name

You can do this with 'Book' - for books, 'Alch' for potions, 'armo' for armour, 'weap' for weapons, 'misc' for miscellaneous, 'ingr' for ingredients, 'ammo' for arrows and bolts, 'keym' for keys and 'cell' for teleporting with the coc command.

If you can get your head round they way the help command works it's the fastest way to find what you want without tabbing out and googling
alexander_dougherty 13 JUL 2024 a las 9:18 a. m. 
Publicado originalmente por osama bin ladder:
New to modding. I have Skyrim Anniversary Edition and I'm trying to give myself telekenesis arrows, ID FExxx800. What do I put in for xxx when using the player.Add.Item command?
the xxx represents where in the load order the mod (including CC mods) that adds the item is.... in most of the load orders I've seen it seems to be 256 for some reason.
< >
Mostrando 1-10 de 10 comentarios
Por página: 1530 50

Publicado el: 13 JUL 2024 a las 1:03 a. m.
Mensajes: 10