Re: Spawning Items without chests/barrels/ect. [message #22695 is a reply to message #22654] |
Thu, 26 July 2007 16:33 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) |
|
I still cant figure it out, as far as I know, there is only one thing left I can do, but I want to avoid doing... I could remake it, starting from the pie, and slowly turning it into my potion, and when I can no longer pick it up, I'll know, but that is kinda tedious
edit: WOOOOOOOOO!!!!!!! IT WORKED!!
for all of you wishing to do the same thing, look here(it's really frustrating when you cant find instructions).
(creating new object)
1. Go into FE, find an object similar to the one you want to make.
2. Double-click it, click export, save anywhere.
3. Right click on game.bin in the upper-left-hand corner of the screen, and click create new entry. type in OBJECT_(your object), in the entry type box type OBJECT, click "select data file" and choose the file you just saved.
4. find your new entry(near the top somewhere), double-click.
5. Anything you wish to change(CBonusItemDef,ect.), follow same procedure, exept name it something else, and under "entry type" put the type of entry.(CBonusItemDef,ect.)
(placing object)
1. put this this code in the area you want.
Quote: |
NewThing Object;
Player 4;
UID 18446741874686299934;
DefinitionType "(object name)";
ScriptName NULL;
ScriptData "NULL";
ThingGamePersistent FALSE;
ThingLevelPersistent FALSE;
StartCTCPhysicsStandard;
PositionX *;
PositionY *;
PositionZ *;
RHSetForwardX *;
RHSetForwardY *;
RHSetForwardZ *;
RHSetUpX *;
RHSetUpY *;
RHSetUpZ *;
EndCTCPhysicsStandard;
StartCTCTargeted;
Targetable TRUE;
EndCTCTargeted;
StartCTCInventoryItem;
InventoryUID 0;
EndCTCInventoryItem;
StartCTCEditor;
EndCTCEditor;
StartCTCStockItem;
ForSale FALSE;
Stealable TRUE;
Price (the price of your item);
EndCTCStockItem;
Health 1.0;
EndThing;
* = move another object in albion explorer to where you want this item, check "set to ground" or whatever, and copy the coordinates, paste them here.
|
2. Your finished! Pat yourself on the back, look at the back of your head!
Special Thanks to Searyan!
"All of the work, and none of the play, will surely provide for a speedy decay"
[Updated on: Thu, 26 July 2007 17:46] Report message to a moderator
|
|
|