Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-08-08 16:22:17 -04:00
parent 51a2a1286e
commit 22947ad4b6
6511 changed files with 6765205 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//::///////////////////////////////////////////////
//:: 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);
}