ID:273580
 
Okay so I have a View Player Info() verb like so:
mob/verb            
ViewPlayerInfo(mob/M in world)
set category = "Master"
set name = "View Player Info"
var/profile="<head><title>Player Profile: [src]</title></head><body bgcolor=#000000 text=#FFFFFF><center>\icon[src.face_icon]<BR><BR><B><U><font color = red><font size=2><left><font face=Verdana>Name & Key:</U></B></font><center>[src.name] ([src.key])<BR><BR><B><U><font color = red><font size=2><left><font face=Verdana>Money:</U></B></font><center>$[src.money]<BR><BR><B><U><font color = red><font size=2><left><font face=Verdana>AP:</U></B></font><center>[src.AP]"
usr << browse(profile,"window=profile")

The thing is, when I test it, sometimes the src.face_icon doesn't display and only a red X appears where the image is supposed to be like so:
http://img96.imageshack.us/img96/7600/scrnshotf.png

However, there are rare occasions when certain face icons do appear :| like so:
http://img829.imageshack.us/img829/968/scrnshot2.png

So is there anything I can add to the code to make the icon always appear? or is that too much to ask?
Look up browse_rsc()
In response to Garthor
Oh wow, a whole new world opened up to me, thanks so much for giving me the tip! n.n