mob/NPC/Django
icon = 'django.dmi'
verb
Talk(mob/X)
set category = "NPC"
set src in oview(3)
if(usr.PK <= 50 && usr.Level >= 99)
alert("You have a good soul.You will get this reward.")
usr.icon = 'django.dmi'
usr.verbs += /mob/Icon_verb/verb/Django_Icon
usr.name = "Solar Boy[usr.key]"
usr.CreateName()
usr.Django = 1
else
alert("...")
Problem description:The player's name dont change, but he/she receive the verb and icon.
Help please.
Also, you have a useless arugment in your Talk verb. Just use Talk(), not Talk(mob/X).