Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

18 lines
353 B
Plaintext

// OnPlayerChat script for horse commands
// Author : Proleric
// Modified : 20-Feb-2008
void main()
{
object oPC = GetPCChatSpeaker();
string sChat = GetPCChatMessage();
if (GetStringLowerCase(sChat) == "horse")
{
AssignCommand(oPC, ActionStartConversation(oPC, "bhh_horse_menu", FALSE, FALSE));
SetPCChatMessage();
}
}