Code: Show/Hide E <pymod> error loading python module 'br'
Traceback (most recent call last): File "/as3/omega-fire/bin/br.py", line 73, in ? cb3 = reg_callback(CB_KILL_POST_NOTIFY, kill) NameError: name 'CB_KILL_POST_NOTIFY' is not defined |
Code: Show/Hide def c_top(cmd, params, p, targ): top_kills = [ 0 ] top_p = [ None ] def for_each(i): if i.arena == p.arena: try: if i.kills[0] > top_kills[0]: top_kills[0] = i.kills[0] top_p[0] = i except: pass for_each_player(for_each) if top_p[0]: chat.SendMessage(p, "%s Has The Highest Kills With %d Kills" \ % (top_p[0].name, top_kills[0])) def c_kills(cmd, params, p, targ): try: chat.SendMessage(p, "You have %d Kills" \ % (p.kills)) except: kills = [0] |