예제 #1
0
def init():
    auxiliary.install(aux_types.AUX_TYPE_ENTITY, "inventory", InventoryAux)
    command.add_command("inventory", inventory_command)
    command.add_command("fit", fit_command)
    command.add_command("unfit", unfit_command)
    command.add_command("test.add_active_warp_scanner", test_add_active_warp_scanner_command)
    hook.add(hook_types.REMOVE_MOBILE, clear_inventory_hook)
예제 #2
0
파일: jump.py 프로젝트: ecdavis/spacegame
def init():
    command.add_command("jump", jump_command)
예제 #3
0
파일: info.py 프로젝트: ecdavis/spacegame
def init():
    command.add_command("position", position_command)
    command.add_command("location", location_command)
예제 #4
0
파일: chat.py 프로젝트: ecdavis/spacegame
def init():
    command.add_command("chat.global", chat_global_command)
    command.add_command("chat.private", chat_private_command)
예제 #5
0
파일: thrust.py 프로젝트: ecdavis/spacegame
def init():
    command.add_command("thrust.speed", thrust_speed_command)
    command.add_command("thrust.vector", thrust_vector_command)
예제 #6
0
파일: warp.py 프로젝트: ecdavis/spacegame
def init():
    command.add_command("warp", warp_command)
    command.add_command("warp.beacon", warp_beacon_command)
    command.add_command("warp.scan", warp_scan_command)
    command.add_command("warp.scan.activate", warp_scan_activate_command)