ID:150072
 
How can I make this be assigned or granted ot people ingame? like GM powers ? so it will say Cop-Blah or Cop-BookerT







mob/GM_verbs

verb

Jail(mob/M in world)
set category = "Cop"
set name = "Jail"
set desc="To jail a criminal"
M.loc=locate(8,59,8)

UnJail(mob/M in world)
set category = "Cop"
set name = "Unjail"
set desc="To jail a criminal"
M.loc= locate(4,20,1)
usr << "You have Unjailed [M]"
M << "You have been Unjailed by [usr]"
usr << "You have Jailed [M]"
M << "You have been jailed by [usr]"

Warp_To_HQ()
set name="Police HQ"
set category="Cop"
usr.loc=locate(12,36,8)
Make a verb like this.

Cop(mob/M as mob in world)
set category="Cop"
if(!M.client)
return
else
M.name="Cop-[usr]"
In response to Super16
it wont show up in my GM verbs



verb/Cop(mob/M as mob in world)
set category="Cop"
if(!M.client)
return
else
M.name="-==Cop==-[usr]"
In response to Migzor
Migzor wrote:
it wont show up in my GM verbs



verb/Cop(mob/M as mob in world)
set category="Cop"
if(!M.client)
return
else
M.name="-==Cop==-[usr]"



No that makes the cop thing appear in front of there name when they login or someting like when a GM logs in it makes there name "Cop-Stealth2k" for example if I was a GM and you had that code in I would log in as Stealth2k but my name would be changed to the cop part in front of it....


Stealth2k