Made Appraise useful. Made merchant faction non-global. Toolset update added several new fields to various object. Full compile. Updated release archive.
25 lines
822 B
Plaintext
25 lines
822 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName gypsy
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 2/14/2003 4:11:25 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_plot"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object o11;
|
|
o11 = GetItemPossessedBy(oPC, "NW_WSWMLS013");
|
|
if(GetIsObjectValid(o11) != 0){
|
|
DestroyObject(o11);
|
|
}
|
|
// 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)
|
|
gplotAppraiseOpenStore(oStore, GetPCSpeaker());
|
|
else
|
|
ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK);
|
|
}
|