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