Initial commit
Initial commit [v9.7]
This commit is contained in:
39
_module/nss/femalewaitress.nss
Normal file
39
_module/nss/femalewaitress.nss
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user