Made Appraise useful

Made Appraise useful.  Made merchant faction non-global.  Toolset update added several new fields to various object.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-04 20:14:31 -04:00
parent 9e684b1908
commit 02b3d3f14e
299 changed files with 67007 additions and 1398 deletions

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 12/15/2002 5:53:04 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -36,7 +38,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("alchem");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 9/14/2002 8:28:23 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("clothingshopmerc");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 12/30/2002 2:45:15 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -16,7 +18,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("fenceshop");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 8/11/2002 4:00:56 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("guardkey");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 2/14/2003 4:11:25 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -16,7 +18,7 @@ object oPC = GetPCSpeaker();
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("gypsy");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 10/6/2002 3:17:12 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -16,7 +18,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("hermit");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 11/17/2002 8:36:39 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -16,7 +18,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("armorshop");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 11/18/2002 4:35:06 AM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -16,7 +18,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("rainbow");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("sc_clothing");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("sc_helm_shield");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("sc_jewlry");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -5,13 +5,15 @@
//:: Created By: Script Wizard
//:: Created On: 9/17/2008 9:05:08 AM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("stables_store");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -1,3 +1,5 @@
#include "nw_i0_plot"
void main()
{
@@ -6,6 +8,6 @@ object oPC = GetPCSpeaker();
object oTarget;
oTarget = GetObjectByTag("travelstore");
OpenStore(oTarget, oPC, 0, 0);
gplotAppraiseOpenStore(oTarget, oPC, 0, 0);
}

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("ammostore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,4 +1,5 @@
//Put this on action taken in the conversation editor
#include "nw_i0_plot"
void main()
{
@@ -7,6 +8,6 @@ object oPC = GetPCSpeaker();
object oTarget;
oTarget = GetObjectByTag("arenastore");
OpenStore(oTarget, oPC, 0, 0);
gplotAppraiseOpenStore(oTarget, oPC, 0, 0);
}

View File

@@ -1,4 +1,5 @@
//Put this on action taken in the conversation editor
#include "nw_i0_plot"
void main()
{
@@ -7,6 +8,6 @@ object oPC = GetPCSpeaker();
object oTarget;
oTarget = GetObjectByTag("arenawpns");
OpenStore(oTarget, oPC, 0, 0);
gplotAppraiseOpenStore(oTarget, oPC, 0, 0);
}

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("basicstore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("relicweapons");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("sc_axes_poles");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("bardstore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("basicmagicshop");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("sc_blades");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -4,7 +4,7 @@ void main()
object oStore = GetNearestObjectByTag("exoticstore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -4,7 +4,7 @@ void main()
object oStore = GetNearestObjectByTag("exoticweapons");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("finestore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("finewpns");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 9/14/2002 6:55:20 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("gen_potsnscrolls");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("guild");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("legendaryweapons");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("magesstore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("sc_other");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -4,7 +4,7 @@ void main()
object oStore = GetNearestObjectByTag("MainClothes");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("basicwpns");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("sc_ranged");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("rare_wpns");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("scrollstore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("x2_genie_store");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("NW_STOREBAR01");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("NW_STOREBAR01");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("hermit");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("EdgeStore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("Custom1007");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("EdgeStore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("x2_genie_store");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -1,10 +1,11 @@
#include "nw_i0_plot"
void main()
{
object oStore = GetNearestObjectByTag("EpicStore");
if (GetObjectType(oStore) == OBJECT_TYPE_STORE)
{
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
}
else
{

View File

@@ -10,8 +10,6 @@
#include "prc_inc_racial"
#include "inc_debug"
void RndDropGear(object oSelf, object oKiller);
void RndDropGold(object oSelf, object oKiller);
void RndDropGold(object oSelf, object oKiller)

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 12/15/2002 5:53:04 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -36,7 +38,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("rainmerc");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 9/5/2002 7:23:36 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("sage");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 8/9/2002 12:23:04 AM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("lowarmor");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -4,6 +4,8 @@
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/14/2002 6:53:14 PM
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -1,3 +1,4 @@
#include "nw_i0_plot"
void main()
{
@@ -12,7 +13,7 @@ void main()
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 9/14/2002 6:55:20 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("lowpotionsnscrolls");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 9/14/2002 6:45:05 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("armorshop");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 11/17/2002 8:28:07 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -16,7 +18,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("weapons1");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 9/14/2002 6:55:20 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("wonditems");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 8/11/2002 5:36:05 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -17,7 +19,7 @@ void main()
object oStore = GetNearestObjectByTag("lowweapons");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}

View File

@@ -5,6 +5,8 @@
//:: Created By: Script Wizard
//:: Created On: 12/15/2002 5:53:04 PM
//:://////////////////////////////////////////////
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
@@ -36,7 +38,7 @@ void main()
// Either open the store with that tag or let the user know that no store exists.
object oStore = GetNearestObjectByTag("wonditems");
if(GetObjectType(oStore) == OBJECT_TYPE_STORE)
OpenStore(oStore, GetPCSpeaker());
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
else
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
}