ID:178719
 
how do u make things like movies or pictures show up on the browser part of the game after you talk to a certain mob
You'll probably want to look up browse and browse_rsc in the reference. Use browse_rsc() to send the image file to the player first, then browse() to send some html that references the image file.

Here's a quick example:
mob/Guru/verb/talkto()
set src in oview(1)
usr << browse_rsc('paradise.gif')
usr << browse({"
<html>
The guru turns to you and says, "This is what paradise looks like.
Be righteous in all your endeavors, and you will reach it at last."
<p>
<img src=paradise.gif>
</html>"}
)
Ug wrote:
how do u make things like movies or pictures show up on the browser part of the game after you talk to a certain mob

For a pretty comprehensive tutorial on how to use the mini-browser in your games, I recommend checking out my Dream Tutor article on BYONDscape:

Dream Tutor: What Good Is The Browser?

That should have all the info you need to get started--and then some.

Lummox JR