mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-28 23:15:53 -04:00
22 lines
927 B
Python
22 lines
927 B
Python
import sys
|
|
from resources.datatables import Options
|
|
from resources.datatables import State
|
|
|
|
def addPlanetSpawns(core, planet):
|
|
########################################################
|
|
# DO NOT ADD ANYTHING ELSE TO THIS SCRIPT, PLEASE USE THE
|
|
# SUBFOLDERS FOR EACH PLANET AND CREATE NEW SCRIPTS FOR
|
|
# EACH AREA OF A PLANET. - LEVARRIS
|
|
########################################################
|
|
stcSvc = core.staticService
|
|
# Blue Frog: Uncomment only when needed for testing.
|
|
stcSvc.spawnObject('object/tangible/terminal/shared_terminal_character_builder.iff', 'dantooine', long(0), float(4196), float(9), float(5206), float(0.70), float(0.71))
|
|
|
|
########################################################
|
|
# DO NOT ADD ANYTHING ELSE TO THIS SCRIPT, PLEASE USE THE
|
|
# SUBFOLDERS FOR EACH PLANET AND CREATE NEW SCRIPTS FOR
|
|
# EACH AREA OF A PLANET. - LEVARRIS
|
|
########################################################
|
|
return
|
|
|