trib3craft Posted February 25, 2014 Posted February 25, 2014 i found this commands and vars http://mod.gib.me/skyrim/functions.html#commands where i can find the itemvars ? like this MyPlayerRef.AddItem(MyFirewood, 99) and its a different for german and english clients at "firewood" ? thx for help
MimiTheAlchemist Posted February 26, 2014 Posted February 26, 2014 (edited) You have to set up properties for your MyPlayerRef and MyFirewood. Just double-click on the name of your script to bring up the properties window and click on the new property button. MyFirewood would be a MiscObject and MyPlayerRef would be an ObjectReference. You don't really have to create a property for the player though. Just make your property for Myfirewood and type this in your script. Game.GetPlayer().additem(MyFirewood, 99) Here are some tutorials that will help you. Creation Kit Papyrus Tutorial:http://www.creationkit.com/Bethesda_Tutorial_Papyrus_Hello_World Scripting Tutorial for quests:http://www.creationkit.com/Bethesda_Tutorial_Basic_Quest_Scripting I hope this helps. :smile: Edited February 26, 2014 by MimiTheAlchemist
Recommended Posts