mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-28 23:15:53 -04:00
23 lines
491 B
Python
23 lines
491 B
Python
import sys
|
|
# Project SWG: Mos Taike: 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
|
|
|
|
# TODO Check all NPCs for personalized scripting, change format.
|
|
|
|
|
|
#Junkdealer
|
|
stcSvc.spawnObject('object/mobile/shared_junk_dealer_m_01.iff', 'tatooine', long(0), float(3902), float(33), float(2362), float(0), float(0))
|
|
return
|
|
|