ID:167472
 
I really need to know how can I make it so when a mob logs in, for the first time, they see a cut-scene. I need to know how I can make mob's in it and how they talk. And after the cut-scene is done, you normally start playing.
This has been asking various times before. Really, you people never use 'Search'?

mob/firstchar/Login()
..()
src.client.eye=locate(x,y,z)
sleep(30)
var/mob/m = new /obj/npc/king(locate(x,y,z))
walk(m,NORTH)
sleep(500)
walk(m,0)
src<<"The king is here! Hail!"
src<<"Unknown Man: Runaway!!"
src<<"Unknown Man: The king will be murdered, leave!!"
src.client.eye=src
src<<"Quest Objective; Save the King!"
In response to Mysame
Hmm thats flawed. Imagine 2 people login at the same time. I posted this same question before without really thinking of a solution myself. Using images where only 1 person can see the icon is better. That way the cinematics won't be already playing for someone.