not sure how this works there is a static of a chest i want to use when i place the static and use the object inspector to get the serial id when i put it in and load the server its a bag not the static look i want is there a way to fix this
 
You want to use the item's ItemID. For example, if you said
Code:
[add static 2475
and clicked your desired location you'd get a metal chest that was already set movable = false.
 
You want to use the item's ItemID. For example, if you said
Code:
[add static 2475
and clicked your desired location you'd get a metal chest that was already set movable = false.
yes im sorry i mean i want to use the statics serial to make a in game usable container
 
Anything you want to interact with in game needs to be a scripted item. For example, you can

[add metalchest
or
[add metalgoldenchest

and get a usable treasure chest. When you add them that way be sure to [set movable false so they won't decay or be picked up by players.

If you're not sure of the name of the item you want to add, you can do a partial name and get a menu of all the matches, like
[add chest

Be careful - "chest" will also match various armor chest pieces, a chest of drawers, and dozens of other items.
 
Back