Skip to content

Commit ee2705b

Browse files
committed
Updated readme
1 parent cf149c1 commit ee2705b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,25 @@ Bool[] Function SearchListForForms(FormList akHaystack, Form[] argNeedles) Globa
6060
Bool[] 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

0 commit comments

Comments
 (0)