mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
Added Reb recruiters(rotation need to be worked on) Moved Recruiters to factional_recruiters file Added Rec recruiters to planetary map
21 lines
781 B
Python
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 |