File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,25 @@ Bool[] Function SearchListForForms(FormList akHaystack, Form[] argNeedles) Globa
6060Bool[] Function SearchListsForForm(FormList akHaystack, Form akNeedle) Global Native
6161```
6262
63+ ## ObjectReference Functions
64+
65+ ``` papyrus
66+ ; Returns actors in loaded cells within `afRadius` of `akOrigin`
67+ Actor[] Function FindNearbyActors(ObjectReference akOrigin, Float afRadius) Global Native
68+
69+ ; Returns commanded actors in loaded cells within `afRadius` of `akOrigin` who are controlled by `akOrigin`
70+ Actor[] Function FindNearbyCommandedActors(ObjectReference akOrigin, Float afRadius) Global Native
71+
72+ ; Returns teammates and player-controlled commanded/summoned actors in loaded cells within `afRadius` of player
73+ Actor[] Function FindNearbyFollowers(Float afRadius) Global Native
74+
75+ ; Returns summoned actors in loaded cells within `afRadius` of `akOrigin`
76+ Actor[] Function FindNearbySummons(ObjectReference akOrigin, Float afRadius) Global Native
77+
78+ ; Returns teammates in loaded cells within `afRadius` of player
79+ Actor[] Function FindNearbyTeammates(Float afRadius) Global Native
80+ ```
81+
6382## String Functions
6483
6584``` papyrus
You can’t perform that action at this time.
0 commit comments