Battledale_PRC8/_module/nss/open_travelstore.nss
Jaysyn904 4dba880acb Added ACP v4.1
Added ACP v4.1. Full compile.  Updated module name.  Updated release archive.
2024-09-08 18:23:43 -04:00

45 lines
1.6 KiB
Plaintext

/*--------------------------------------------------------
Script Name: open_travelstore
----------------------------------------------------------
Created By: Genisys(Guile)
Created On: 4/03/09
----------------------------------------------------------
This is a Conversation ActionTaken Script Template
for opening up a store from anywhere in your module, the
idea behind this script is to allow you to place ALL of
your stores in one area, so that the areas the PCs enter
to interact with PCs will not take a long time to load,
note you cannot have 2 copies of the store in the module
or this script will fail!
----------------------------------------------------------*/
//Enter the Store's Tagname below leave this " ";
const string STORE_NAME = "travelstore";
///////////////////////////////////////////////////////////
//Required Inlcude only for Appraise...
#include "nw_i0_plot"
//Mainscript
void main()
{
object oPC = GetPCSpeaker();
object oTarget;
object o = GetWaypointByTag("ref_point");
oTarget = GetNearestObjectByTag(STORE_NAME, o);
string sMsg = "This store does not exist! ";
//Debugging
if(oTarget==OBJECT_INVALID)
{
//Inform the PCs & DMs the store doesn't exist!
FloatingTextStringOnCreature(sMsg, oPC, TRUE);
SendMessageToAllDMs(sMsg + STORE_NAME);
return;
}
//The first 0 = Markup for Items Sold
//The 2nd 0 = Markup for Items Bought
//Note the markup is in addition to the markups the store has!
OpenStore(oTarget, oPC, 0, 0);
//For Appraise Check Usage
//(type // before OpenStore Above and delete // below!)
//gplotAppraiseOpenStore(oTarget, oPC, 0, 0);
}