mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
11 lines
374 B
Python
11 lines
374 B
Python
import sys
|
|
from resources.datatables import Options
|
|
|
|
def setup(core, object):
|
|
#object.setAttachment('radial_filename', 'object/conversation');
|
|
#object.setAttachment('conversationFile','junk_dealer')
|
|
object.setOptionsBitmask(Options.CONVERSABLE | Options.INVULNERABLE | Options.QUEST)
|
|
object.setStfFilename('mob/creature_names')
|
|
object.setStfName('ephant_mon')
|
|
return
|
|
|