Discussion in   Suggestions   started     11 years ago   October 13, 2013, 11:34:40 PM   by   Lumis

ED Stone

Lumis
Offline
2 Posts
Topic :   ED Stone
11 years ago  October 13, 2013, 11:34:40 PM

I would like to see more items from the wiki be available on the ED stone.
1000 Platinum Ingots
1000 Frostwood Boards
1000 Ethereal Leather Platinum
Runic Hammer, 100 uses
Frostwood Fletchers Tools, 100 uses
 Ethereal Sewing Kit, 100 uses
Frostwood Saw, 100 uses
Runic Tinker Kit, 100 uses
I would love to do this also, but these items are called constructors and need to be created in game.  There is no item called 1000 ingots, the item has to be defined by a gm.  For example to make a runic item I have to type a command [add runichammer platinum 100 to create the specific item and these cant be added to the vendor stone
As an after thought, I may be able to add a commodity deed for the resources
 

Harlok
Offline
48 Posts
#1 Re :   ED Stone
11 years ago  October 13, 2013, 11:57:40 PM

I think if it works it would be easier and we wouldn't have to page a gm if we wanted one

Gibbon
Offline
10 Posts
#2 Re :   ED Stone
11 years ago  October 14, 2013, 03:35:15 AM

I like all this, Maybe just a crafters stone? Ed as currency?

Sturger
Offline
730 Posts
#3 Re :   ED Stone
11 years ago  October 15, 2013, 01:38:52 PM

I'd like to see less of these items on the ED lists actually. It's putting a hit on the Shards Economy.

Why do I feel some times that people are thinking along these lines: "Why should I spend time playing the game when I can spend real money and get what I want."  UO was always about the long road, yes over time this has changed and EVO is about the fun and challenge but the long road should still remain to a large degree.

 I understand that there are some players who can't play UO EVO for more then a few hours a day or week, and I feel for them, but there needs to be a line drawn some where, IMO.

  ---Please remember this is just my opinion---

 In closing, I think some form of resource list should be made, and this is where players can buy the items mentioned above, through channeling the entire EVO public.

  This system, or access list, allows players to buy and trade from others, causing less global spamming because you don't have to be playing for others to buy from this list.

Putting items up for public purchase should require some container type into which the item is added to the trade list. 

Retrieving an item from this list requires one of two things, the correct character account number; probably similar to how players interact with there in game vendors when adding or removing items that are not selling well, or the right amount of gold/tokens, in order to purchase the item for sale.

  This system is helpful, without hurting player vendors, because a player vendor has a set price all the time, and the idea I am proposing allows the player posting a resource to set their own quantity at such and such a value.

  EX1:  player one posts: 10 runic hammer charges at 300gp each

Some one else, that same day, posts the following:

  EX2: Player two posts: 100 runic hammer charges at 250gp each.

It is obvious that any other players, even including player one, will probably be buying runic hammers at the price of 250gp each charge until there are no more for sale at that price; at which point player one will be selling his runic hammer charges.

I thank everyone for reading, and look forward to any positive criticism.  A system like this would make EVO stronger as a whole along with the shards economy.


Minos
Offline
230 Posts
#4 Re :   ED Stone
11 years ago  October 15, 2013, 06:25:57 PM

Quote from: Evolution
I would love to do this also, but these items are called constructors and need to be created in game.  There is no item called 1000 ingots, the item has to be defined by a gm.  For example to make a runic item I have to type a command [add runichammer platinum 100 to create the specific item and these cant be added to the vendor stone
As an after thought, I may be able to add a commodity deed for the resource

I know this isn't the coding corner, but you could handle this with something along the lines of the code below. It could be tweaked for any of the suggested items.

Code: [Select]
using System;
using Server;
using Server.Items;

namespace Server.Items
{
    public class PlatinumIngotsBag : Bag
    {
        [Constructable]
        public PlatinumIngotsBag() : this( 1000 )
        {
        }

        [Constructable]
        public PlatinumIngotsBag( int amount )
        {
            DropItem( new PlatinumIngot   ( amount ) );
        }

        public PlatinumIngotsBag( Serial serial ) : base( serial )
        {
        }

        public override void Serialize( GenericWriter writer )
        {
            base.Serialize( writer );

            writer.Write( (int) 0 ); // version
        }

        public override void Deserialize( GenericReader reader )
        {
            base.Deserialize( reader );

            int version = reader.ReadInt();
        }
    }
}

spainkevin79
Offline
143 Posts
#5 Re :   ED Stone
11 years ago  October 18, 2013, 04:07:09 PM

Good job Minos! I just tested it to see if it works and it works like a champ. Nice! Hopefully we'll see it in game soon if all goes well.

Kyn
Offline
336 Posts
#6 Re :   ED Stone
11 years ago  October 18, 2013, 10:47:59 PM


Code: [Select]
using System;
using Server;
using Server.Items;

namespace Server.Items
{
    public class PlatinumIngotsBag : Bag
    {
        [Constructable]
        public PlatinumIngotsBag() : this( 1000 )
        {
        }

        [Constructable]
        public PlatinumIngotsBag( int amount )
        {
            DropItem( new PlatinumIngot   ( amount ) );
        }

        public PlatinumIngotsBag( Serial serial ) : base( serial )
        {
        }

        public override void Serialize( GenericWriter writer )
        {
            base.Serialize( writer );

            writer.Write( (int) 0 ); // version
        }

        public override void Deserialize( GenericReader reader )
        {
            base.Deserialize( reader );

            int version = reader.ReadInt();
        }
    }
}



Code is fine. :)