Jump to content

Adding Items to Inventory


daftshadow

Recommended Posts

Can someone point me to the right direction on how to add items automatically to your inventory using GECK? I tried to look it up but couldn't find it. Thanks.

 

 

You need to create a simple quest and add a script. Make sure the quest is start game enabled and make sure your script is marked as a quest script.

 

Scn DaftshadowItemSCRIPT

begin gamemode
    
     player.additem your item == 1

end

 

I think this should work.

Link to comment
Share on other sites

Try this instead:

 

Scn DaftshadowItemSCRIPT

short doonce

begin gamemode
    if doonce == 0
        player.additem your item == 1
        set doonce to 1
    endif
end

 

Joe's will probably keep adding your item infinitely.

 

You could also just insert a line into Joe's script, right under the additem line, reading 'stopquest yourquestname'. Then the script wouldn't run at all anymore.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...