- Found in:
- Vanilla
Description
Wiki Description
Forces the actor to equip the specified spell in the specified source.
Documentation Comment
Forces this actor to equip the specified spell. The casting source can be:
0 - Left hand
1 - Right hand
2 - Other
Caveats
Parameters
intaiSource
CK Wiki Description
The source to equip the spell into.
-
One of the following values is acceptable:* 0:Left hand
- 1:Right hand
- 2:Voice (use this for Powers)
-
aiSource is required, but it will be overridden by the Spell's Equip Slot if it is set to anything other than BothHands in the editor.
Examples
; Forces bob to equip ward into his right hand
Bob.EquipSpell(WardProperty, 1); Equip the Beast Form power. Note that WerewolfChange's Equip Slot must be set to Voice.
Bob.EquipSpell(WerewolfChange, 2)Auto-Generated Example
Spell mySpell__akSpell
int myInt__aiSource
myActor__toCallFunctionOn.EquipSpell(mySpell__akSpell, myInt__aiSource)Related Pages
- Actor
- Actor.GetEquippedSpell(...)
- Actor.UnequipSpell(...)
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
