generated from Jaysyn/ModuleTemplate
22 lines
447 B
Plaintext
22 lines
447 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Opens Amand's special store
|
|
/////////////////////////////////////
|
|
|
|
#include "nw_i0_plot"
|
|
|
|
void main()
|
|
{
|
|
object oStore = GetObjectByTag("FlameofLoveLuterySpecial");
|
|
if (GetIsObjectValid(oStore) == TRUE)
|
|
{
|
|
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
|
|
}
|
|
else
|
|
PlayVoiceChat(VOICE_CHAT_CUSS);
|
|
}
|
|
|
|
|