Gate
icon_state="gate"
density = 1
Click()
if(src in oview(2))
var/password_1 = input("Please input a password") as password
if(!password_1) return
if(findtext("PISH")) in passwords //line with the problem
usr.loc = locate(/area/teleports/ZZ)
if(password_1=="PISH")
usr.loc = locate(/area/teleports/ZZ2)
usr.passwords+= "PISH"
What i want this to do is find the text PISH in the lists passwords. I always get stuck on lists,Where did i go wrong here?
~>Jiskuha