Click()
if(list.Find(src,usr.contents))
var/people = list()
usr<<"Scan Results:"
usr<<"-------------------------------------"
for(var/mob/player/M in oview(20))
people += M
// usr<<"[M] Level: [M.level], [src.class] Direction: <font color=green>[[dir2text(get_dir(usr,M))]]</font color> PL: [ac(M.powerlevel)]"
if(!people)
usr<<"<font color = green>Theres nobody around you"
usr<<"-------------------------------------"
I'd just like to know how to check if the Scouter is in the usr's contents.
if(usr.contents.Find(src))
You were close though. :) 'list' should be replaced with the actual list you want to use find on. I.E:
var/list/ListyList
if(ListyList.Find("stuff")) world<<"STUFF"