Initial commit

Initial commit [v9.7]
This commit is contained in:
Jaysyn904
2025-04-03 12:54:47 -04:00
parent ff5835fcc7
commit ebc0c6a9b2
11298 changed files with 9432842 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
//::///////////////////////////////////////////////
//:: FileName femalewaitress
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/8/2002 8:12:03 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
string FLIRT_HELLO2_1 = "Oh my god. I have to say you are the best looking customer I have ever seen. *whisper* Meet me upstairs later, we'll have some fun.";
string FLIRT_HELLO2_2 = "I have a thing for men like you. Lets meet tonight.";
string FLIRT_HELLO2_3 = "*whisper* for a good time, see me in my room tonight.";
// Add the gender restrictions
if(GetGender(GetPCSpeaker()) != GENDER_MALE)
{
PlayVoiceChat(VOICE_CHAT_LAUGH, OBJECT_SELF);
SpeakString("I'm sorry, I'm for Gentlemen only.");
return FALSE;
}
else
{
int iRespNum = Random(3);
switch(iRespNum)
{
case 0:
SpeakString(FLIRT_HELLO2_1);
break;
case 1:
SpeakString(FLIRT_HELLO2_2);
break;
case 2:
SpeakString(FLIRT_HELLO2_3);
break;
}
return TRUE;
}
}