Files
NGECore2/scripts/static_spawns/talus/factional_recruiters.py
T
tacef 9a54b2ec5c More Work on NPC Scripts
Added Reb recruiters(rotation need to be worked on)
Moved Recruiters to factional_recruiters file
Added Rec recruiters to planetary map
2014-06-01 09:12:14 +02:00

21 lines
781 B
Python

import sys
# Project SWG: Imperial Recruiters talus: Static Spawns
# (C)2014 ProjectSWG
from resources.datatables import Options
from resources.datatables import State
def addPlanetSpawns(core, planet):
stcSvc = core.staticService
objSvc = core.objectService
#recruiter Imp Outpost
stcSvc.spawnObject('object/mobile/shared_dressed_imperial_officer_m_6.iff', 'talus', long(0), float(-2192), float(20), float(2269), float(0), float(0), float(0), float(0))
#Reb recruiter
dearicCantina = core.objectService.getObject(long(3175388))
stcSvc.spawnObject('object/mobile/shared_dressed_rebel_recruiter_human_female_02.iff', 'talus', dearicCantina.getCellByCellNumber(11), float(-25.8), float(-0.9), float(-0.7), float(0), float(-0.707), float(0), float(0.707))
return