24 lines
839 B
Plaintext
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);
|
|
}
|