ID:164595
 
can someone tell me how to use the Admin options because i dont have a clue about it?
it is a naruto game if it helps.

i am new to game making
You, could probably find something here. You should search BYOND for demos and libraries, as well.
Hope this helps.

mob/admin/verb/Boot()
//Boot Coding here
usr<<"hi"

mob/proc/admincheck()//check to see if the player is an admin
if(src.ckey == "rickoshay")//if there key is in here they get the verbs. Make sure there key is in lowercase too.
src.verbs += (typesof(/mob/admin/verb/))//add the admin verbs like this
else return //if there key isn't here return

mob/Login()
admincheck()//Do the check
src<<"hi"