Initial commit
Initial commit [v9.7]
This commit is contained in:
40
_module/nss/malewaiter.nss
Normal file
40
_module/nss/malewaiter.nss
Normal file
@@ -0,0 +1,40 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: FileName malewaiter
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Script Wizard
|
||||
//:: Created On: 10/8/2002 8:11:30 PM
|
||||
//:://////////////////////////////////////////////
|
||||
int StartingConditional()
|
||||
{
|
||||
string FLIRT_HELLO2_1 = "Why my lady, I have to say you are the most stunning women I have ever seen. *whisper* Meet me upstairs later, we'll have some fun.";
|
||||
string FLIRT_HELLO2_2 = "I have a thing for women 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_FEMALE)
|
||||
{
|
||||
PlayVoiceChat(VOICE_CHAT_LAUGH, OBJECT_SELF);
|
||||
SpeakString("I'm sorry, I'm for Ladies 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