mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-02 03:15:52 -04:00
Added Imperial Recruiters Moved all Imperial Recruiters to factional_recruiter file Reduced amount of spawns around Mos eisley.
18 lines
485 B
Python
18 lines
485 B
Python
import sys
|
|
# Project SWG: Imperial Recruiters tatooine: 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_4.iff', 'lok', long(0), float(-1843), float(12), float(-3069), float(0.71), float(0), float(0.70), float(0))
|
|
|
|
return |