58 lines
2.4 KiB
Plaintext
58 lines
2.4 KiB
Plaintext
#include "en5_misc"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iRandom;
|
|
string sText;
|
|
string sAccomplishment;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetLocalInt(OBJECT_SELF,"Talk") == 0)
|
|
{
|
|
iRandom = Random(5)+1;
|
|
switch (iRandom)
|
|
{
|
|
case 1: sText = "What ya want?"; break;
|
|
case 2: sText = "What ya need?"; break;
|
|
case 3: sText = "What can I do for ya?"; break;
|
|
case 4: sText = "How can I help you?"; break;
|
|
case 5: sText = "Is there something you need?"; break;
|
|
}
|
|
sAccomplishment = GetLocalString(GetPCSpeaker(),GetMyZone()+ "_Accomplishment");
|
|
if (sAccomplishment != "" && GetLocalInt(OBJECT_SELF,"Brag") == 0 && Random(3)==0)
|
|
{
|
|
sText = "I heard you " + sAccomplishment + ". You have my thanks. How can I help you?";
|
|
SetLocalInt(OBJECT_SELF,"Brag",1);
|
|
}
|
|
SetCustomToken(401,sText);
|
|
SetLocalString(OBJECT_SELF,"Talk1",sText);
|
|
iRandom = Random(8)+1;
|
|
switch (iRandom)
|
|
{
|
|
case 1: sText = "Not much to tell. We live. We eat. We come in here and drink, har har."; break;
|
|
case 2: sText = "Captain Rogers was in here last night complaining that his guards are stretched thing."; break;
|
|
case 3: sText = "I hear Ann is back from Morath Village. I think I'll pay a visit to her later."; break;
|
|
case 4: sText = "Things sure are dangerous around here lately."; break;
|
|
case 5: sText = "Used to be that you could come in here and get something to eat without a bunch of adventurer's bothering you."; break;
|
|
case 6: sText = "The sergeant has been working late into the night lately. Only thing that can mean is it's been tough going."; break;
|
|
case 7: sText = "I heard a merchant was waylaid by bandits on his way here from Adon Village."; break;
|
|
case 8: sText = "The ale here is the finest within a hundred leagues."; break;
|
|
}
|
|
if (sAccomplishment != "" && GetLocalInt(OBJECT_SELF,"Brag") == 0 && Random(5)==0)
|
|
{
|
|
sText = "Not much to tell, but I did hear you " + sAccomplishment + ". You have my thanks.";
|
|
SetLocalInt(OBJECT_SELF,"Brag",1);
|
|
}
|
|
SetCustomToken(402,sText);
|
|
SetLocalString(OBJECT_SELF,"Talk2",sText);
|
|
SetLocalInt(OBJECT_SELF,"Talk",1);
|
|
} else {
|
|
SetCustomToken(401,GetLocalString(OBJECT_SELF,"Talk1"));
|
|
SetCustomToken(402,GetLocalString(OBJECT_SELF,"Talk2"));
|
|
}
|
|
|
|
return iResult;
|
|
}
|