ID:264279
 
Code:
mob/DM
key ="B-Blast"

mob/Stat()
statpanel ("Admin")
mob/
verb
Annoucement()
set category ="Admin"
Annoucement(msa as text)
world << "<b><center><font color='green'>[usr] Annouce:<br> [msa]</font></center></b>"


Problem description:

I cant find the problem??
I think its right.
Read the DM Guide please.
Well, this section of code doesn't make sense:

mob/
verb
Annoucement()
set category ="Admin"
Annoucement(msa as text)
world << "<b><center><font color='green'>[usr] Annouce:<br> [msa]</font></center></b>"


You are seemedly defining a verb within itself, which makes zero sense. I think you wanted to do this:

mob
verb
Announcement(msa as text)
set category ="Admin"
world << "<b><center><font color='green'>[usr] Annouce:<br> [msa]</font></center></b>"


Do you understand the fundamental difference there?
In response to Popisfizzy
I get it thank you!!


I still have a problem
If i do the key away..
Admin is still one?
In response to B-Blast
I guess you never checked if a mob should receive administrative verbs.
Blind guesses work counter productive when programming.
This is why people tell you to read the DM guide first.
Without knowing what you are doing, you are just running into myriads of problems.