ID:140738
 
Code:
mob
proc
Murder()
if(src.kills2 ==0)
if(src.kills >=50)
world.SetMedal("Murder",src)
src <<"<font color=red> <center> ((( You have Unlocked 'Murder' Medal)))"
world << "<font color =red>(System) Medals Information:<font color=white>[usr] has Unlocked 'Murder' Medal."
src.kills2 +=1
return


Problem description:
No errors but the coding is messed up because it will not give the medal to the player.
Does the medal exist?
In response to Megelic (#1)
Yes its on the Hub with the same name as in the coding.
In response to Drehdog7 (#2)
Did you check if kills2 is 0 or if its just null? If it's null, you have to do this:
if(!kill2)

instead of just if(kills2 ==0)