PWE_PRC8/_module/nss/ats_wbasin_use.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

28 lines
825 B
Plaintext

/****************************************************
Water Badin On Use Script
ats_wbasin_use
Last Updated: August 25, 2002
***Ambrosia Tradeskill System***
Created by Mojo(Allen Sun)
This script should be placed on the custom water
basin's OnUsed trigger. It starts the conversation
menu.
****************************************************/
#include "ats_const_common"
void main()
{
object oPlayer = GetLastUsedBy();
if(IsInConversation(OBJECT_SELF) == TRUE
&& IsInConversation(GetLocalObject(OBJECT_SELF, "ats_converser")) == TRUE)
FloatingTextStringOnCreature(CSTR_ERROR1_INUSE, oPlayer, FALSE);
else
{
SetLocalObject(OBJECT_SELF, "ats_converser", oPlayer);
ClearAllActions();
ActionStartConversation( GetLastUsedBy(), "", TRUE);
}
}