mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-11 21:45:43 -04:00
Removed frog from Mos Eisley Added "New Frog" option for GMs on CBT Added addToFrogAdminList argument for setGodMode for GMs - allows GMs to put down items inside the frog building (ie more frogs!)
22 lines
928 B
Python
22 lines
928 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', 'tatooine', long(0), float(3525), float(4), float(-4801), 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
|
|
|