mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
- Added Follow State to AI - Pets get attacked by enemies and do attack damaging enemies - Some QA fixes
11 lines
172 B
Python
11 lines
172 B
Python
import sys
|
|
|
|
def setup(core, actor, target, command):
|
|
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
pet = actor.getCalledPet()
|
|
pet.addDefender(target);
|
|
return
|