MatthiosArcanus Posted January 29, 2016 Posted January 29, 2016 Hey everyone!I've run into quite a frustrating issue that I cannot figure out despite all my best efforts.I'm trying to find all object references in a given cell and keep getting met with "method GetNumRefs not found on Cell" in the logs. I know this is an SKSE function and have installed and reinstalled it many times by now trying to get this to work, but clearly I'm overlooking something.My script is as follows. Scriptname test extends ObjectReference Cell Property StagingCell Auto ObjectReference[] f ;Furniture, 40 Event OnInit() f = new ObjectReference[100] RegisterForUpdate(0.5) EndEvent Event OnUpdate() GetFurniture() EndEvent Function GetFurniture() ;Get furniture objects into an ObjectReference array int i = StagingCell.GetNumRefs(40) while i i -= 1 f[i] = StagingCell.GetNthRef(i, 40) Debug.Trace(i) Debug.Notification(f[i].x + ":" + f[i].y + ":" + f[i].z) endwhile EndFunction In case more detail is needed, I've made a staging cell which houses multiple objects. I'm attempting to find these object references, duplicate them, then place them around the player at run-time. This script is attached to an x marker in the cell itself, in case that matters.If anyone has any idea why this isn't working, I would greatly appreciate it.Thanks, and take care!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.