I know that .SetAngle(0.0,0.0,Ang1) will set the angle but it wont work with the container ZZBurntCorpse01 unless I can reference the container as an object which is what I am asking how to do.
Object, or ObjectReference?
ObjectReference ZZBurntBad = ZZBurntBad_Alias.GetReference()
The above will get you the ObjectReference of an alias (assuming the "chest" is an alias) ... I would be surprised if that won't then allow you to do SetAngle.
If it won't and you need the BaseObject, then convert the ObjectReference (above) to it's BaseObject, using this ...
http://www.creationkit.com/GetBaseObject_-_ObjectReference
