Initial commit. Updated release archive.

This commit is contained in:
Jaysyn904
2024-06-20 15:47:42 -04:00
parent d14b20cb85
commit e49d03aa23
6897 changed files with 6107848 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
void main()
{
object o_pros = GetObjectByTag("prostitute_bad");
int o_gender = GetLocalInt(o_pros, "gendercheck");
object o_hostile = GetObjectByTag("crusader_thug");
object o_pc = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, OBJECT_SELF, 1);
ChangeFaction(o_pros, o_hostile);
if (o_gender != GENDER_FEMALE)
{
AssignCommand(o_pros, SpeakString("Quickly, grab him!", TALKVOLUME_TALK));
}
else
{
AssignCommand(o_pros, SpeakString("Quickly, grab her!", TALKVOLUME_TALK));
}
AssignCommand(o_pros, ActionAttack(o_pc, FALSE));
}