ID:83495
Oct 8 2009, 2:04 pm
|
|
What's the code for medals? I can't find anything that exactly shows the code for them on the DM guide.
|
Masqurade wrote:
world.SetMedal("exact name of medal herer", usr) Ok thanks. =] |
Wouldn't you have to define a proc for the medal?
Ex. mob/proc/Level_Check() (tab)if(usr.level==1) (tab)world.SetMedal("Medal Name",src) Then in the Level Up() you put usr.Level_Check() so that it checks to see if the usr is lvl 1. |
This is how you implement medals as well as scores: http://www.byond.com/members/ DreamMakers?command=view_post&post=55025
|
then place it into the part of code you want like for a login medal you would put at login part of the code.