Aantioch_Infernum/_module/nss/asg_set_bpalab01.nss
Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

24 lines
839 B
Plaintext

//::///////////////////////////////////////////////
//:: Name SetUp Make Magic Powder
//:: FileName
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
desined so that I can ready what item to build, it just sucks that
to desinate this a script has to be wrote for each item I want. - err.
This script flags a varible called ITEMTOBUILD on the character. It will
be used for everything for building stuff wise. The next script will be the
inventory check & purchase. (Generic) and the last one will be the placement
or giving of the item.
*/
//:://////////////////////////////////////////////
//:: Created By:
//:: Created On:
//:://////////////////////////////////////////////
void main()
{
object oPC = GetPCSpeaker();
SetLocalInt(oPC,"ITEMTOBUILD",4005);
}