Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Adding Items To Inventory Replicator

☺☺Just Ask The Pope☺☺
Joined
Jul 19, 2009
Messages
585
Reaction score
93
Ok this is quite easy so you shouldn't have any troubles
doing this..

1.Make a backup of your
C:\Cryptic\data\defs\stores\Ship Folder

2.Edit your class Federation or Klingon.. in this tut were going Federation.

3.Open
C:\Cryptic\data\defs\stores\Ship\Fed Folder
and open Ship_Replicator.Store

if you have done correct so far you should see this

Code:
	Inventory
	{
		Item Stim_Pack_Small
		Forceusecurrency 1
		Category Consumable
	}

	Inventory
	{
		Item Device_Power_Cell_Small
		Forceusecurrency 1
		Category Consumable
	}

	Inventory
	{
		Item Shield_Charge_Small
		Forceusecurrency 1
		Category Consumable
	}

Add your Edits To look like this below

Code:
[B][COLOR="#FF0000"]	Inventory
	{
		Item Stim_Pack_Large
		Forceusecurrency 1
		Category Consumable
	}

	Inventory
	{
		Item Device_Power_Cell_Large
		Forceusecurrency 1
		Category Consumable
	}

	Inventory
	{
		Item Shield_Charge_Large
		Forceusecurrency 1
		Category Consumable
	}[/COLOR][/B]

	Inventory
	{
		Item Stim_Pack_Small
		Forceusecurrency 1
		Category Consumable
	}

	Inventory
	{
		Item Device_Power_Cell_Small
		Forceusecurrency 1
		Category Consumable
	}

	Inventory
	{
		Item Shield_Charge_Small
		Forceusecurrency 1
		Category Consumable
	}

Code to Copy
Inventory
{
Item NAME OF ITEM
Forceusecurrency 1
Category Consumable
}

Copy and paste the code above and add your desired item..


if you pick an item without an in game price like i did then
in game the price will be 0 so basically it will be free..

images below


PopeJohnPaul - Adding Items To Inventory Replicator - RaGEZONE Forums

PopeJohnPaul - Adding Items To Inventory Replicator - RaGEZONE Forums


This can be done with

Ship_Bartender.Store
Ship_Chef.Store


this edits Ships replicator inventory replicator..

i also made the small stuff Large cos large is better

Do NOT edit the multiplier..

Remember BACKUP Before you edit Anything


p.p.s.s this is my new replicator after i went alittle nutzo

PopeJohnPaul - Adding Items To Inventory Replicator - RaGEZONE Forums


Remember Free Is Good ^^
prices can be set to what currency you wish to use

example Resource
example Gpl
Example Dilithium


For Gold Pressed Latnium Use

Code:
Hcurrency Gpl

For EC Use

Code:
Hcurrency Resources

For Dilithium Use

Code:
Hcurrency Dilithium

Hcurrency Resources
Sellmultiplier 0.4
Sellenabled 1

The Sell Multiplier has a min and max range (Tested) 0.1 to 1.0
 
Last edited:
Joined
Oct 28, 2011
Messages
2,465
Reaction score
1,258
Only issue.
Do Not set the Sellmultiplier to anything but:

Sellmultiplier 1.0

You will get server errors if you do.
All sellmultiplier's must be an even value of 1.0

If they are currently set otherwise, it is due to code to counter balance the value.
Manually entering new items, they must be set to 1.
Just clarifying. :0)
 
Back
Top