ID:167627
 
Hello, how would I code a storyline. By that I mean like when you log on, someone is saying something and it looks like hes talking through world say. Like for example bob is talking, I want it to say like "Bob: What is this bizzar world?" And only the person who is logging in for the first time can see this. Thanks.
Euh...
mob/Login() src.story()

mob/proc/story()
src<<"Bill says; New in town? Lemme give you a tour!"

And so on and so forth. Of course, you can put it all in the login, too.
In response to Mysame
Is there a way that the whole message doesn't show up all ay once? Like "bob: sfsfs" and then a little while and then "bob:afdqawfab". Like that.
In response to Bamrulez
look up sleep()
In response to DarkCampainger
mob
Login()
src.storyline()

mob/proc/storyline()
src<<"Bob says: Hello [src] nice to see you in (YOUR GAME)"
sleep(10)
src<<"Bob says:blalablbalblalablblabalbalbalballab"
sleep(10)
src<<"Bob says:So go out to the open world
src.loc locate(10,10,1)