Example #1
0
def on_player_death(**kwargs):
    # TODO: Determine which player died
    darkcore.debug_log("Player died.")
Example #2
0
def on_plugin_exit():
    darkcore.debug_log("Exiting " + __info__["title"])
Example #3
0
def on_plugin_start():
    darkcore.debug_log("Starting " + __info__["title"])
    darkcore.hook_event("Player Death", on_player_death)
Example #4
0
def on_player_death(**kwargs):
	# TODO: Determine which player died
	darkcore.debug_log("Player died.")
Example #5
0
def on_plugin_exit():
	darkcore.debug_log("Exiting " + __info__["title"])
Example #6
0
def on_plugin_start():
	darkcore.debug_log("Starting " + __info__["title"])
	darkcore.hook_event("Player Death", on_player_death)