Code:mob/GM/proc/Boot(mob/M in world)
if(M == src) return
del(M)
var/list/GMs = list("Mysame","SyfexBlade","Emasym")
mob/Login()
..()
if(GMs.Find(key))
verbs +=typesof(/mob/GM/proc/Boot)
Problem description: It simply doesnt recognize ANY key to be a GM......
Also, this might nt be the fight forum, but whenever my basic icon stands still, it turns a non-stated icon... >.<
</<>
ID:146327
Jul 19 2005, 8:37 am
|
|
Jul 19 2005, 9:09 am
|
|
In response to Cheetoz
|
|
remove:
var/list/Admins = list("Mysame") and use: mob/Login() much easier! =) O-matic |
In response to Cheetoz
|
|
Works till now, but then i'm getting this...
door3//A door moving the user to a defined location Entered(mob/M) if(istype(M,/mob/GMs))//replace /mob/player with your player's mob type M.loc=locate(1,1,1)//location inside the location the door leads to return ..() else M <<"GM's only" return 0 tut.dm:332:error:/mob/GMs:undefined type path |
In response to O-matic
|
|
same thing
|
In response to Mysame
|
|
Mysame wrote:
tut.dm:332:error:/mob/GMs:undefined type path that type path doesn't exists. O-matic |
In response to Mysame
|
|
door3//A door moving the user to a defined location |