A little help with the Conversation entity

Post topics regarding Level Building/Design and Entity Usage with Reality Factory
Post Reply
frogman502
Posts: 6
Joined: Mon Mar 17, 2008 5:03 am

A little help with the Conversation entity

Post by frogman502 » Fri Mar 28, 2008 1:41 am

Could someone help me a little with the conversations.I have the conversation written out. I just need help with the entity and what to write it in.my scripting for my conversation is l1p1.s

(ps.) I have less than 2 days to do this so please help and help quickly!

here is the script for l1p1.s

l1p1[ ()
{
Speak("l1p1","");
Reply(1,"l1p1r");
Reply(2,"l1p1r2");
Reply(3,"l1p1r3");
Reply(4,"l1p1r4");
switch(Conversation(0))
{
case 1
{
NewConversation("l1p1",true);
}
case 2
{
NewConversation("l1p1",true);
}
case 3
{
NewConversation("l1p1",true);
}
case 4
{
NewConversation("l1p1",false);
}
}
} ]

}

Post Reply