That's a good subject to make a tutorial on. Unless Kaz wants to do one, I will get it done asap.
As for you issue what you need is a script in the sign's OnUsed event that will starts a conversation with the PC.
Then you make a conversation with whatever info you want on the sign, attach it to the sign in it's 'Conversation' field.
The script is as following:
| Code: |
//This script starts a private conversation with the PC upon use of the placeable.
void main()
{
object oPC = GetLastUsedBy();
ActionStartConversation(oPC, "", TRUE, FALSE);
} |