Server Files: Official
Item to be helped with: CS Seller
Have you attempted to search: Several days, yes.
Hello, I know that there is a tutorial on editing the CS editor but I am having problems placing the following items into mafl_IS
10207 Refresher Hold IDS_PROPITEM_TXT_004468
10208 Vitaldrink X IDS_PROPITEM_TXT_004470
10209 Bull Hamstern IDS_PROPITEM_TXT_004472
10216 Common Bank 15 IDS_PROPITEM_TXT_004486
10217 Common Bank 30 IDS_PROPITEM_TXT_004488
10468 Scroll of Smelting IDS_PROPITEM_TXT_004702
15220 Scroll of Custody IDS_PROPITEM_TXT_004730
26463 Blessing of Goddess IDS_PROPITEM_TXT_008924
Yes, the items appears but they give me this weird error message [Yes all refreshers/ vital drinks are in the seller as well, ignore them please]:

What I have done:
1. I have properly added each item that had an IK3_[InsertName] item into character.inc
Code:
MaFl_Is
{
setting
{
AddMenu( MMI_DIALOG );
AddMenu( MMI_TRADE );
AddVendorItem( 0, IK3_SCROLL, -1, 1, 11, 100 );
AddVendorItem( 0, IK3_TICKET, -1, 1, 11, 50);
AddVendorItem( 0, IK3_POCKET, -1, 1, 11, 50);
AddVendorItem( 0, IK3_COOKING, -1, 1, 11, 50);
AddVendorItem( 0, IK3_REFRESHER, -1, 1, 11, 50);
AddVendorItem( 0, IK3_DRINK, -1, 1, 11, 50);
SetImage
(
IDS_CHARACTER_INC_000064
);
m_szDialog= "MaFl_Is.txt";
}
SetName
(
IDS_CHARACTER_INC_000065
);
AddVendorSlot( 0,
IDS_CHARACTER_INC_000066
);
}
Note: IK3_Scroll are from Scroll of ________, Batteries, IK3_Pocket is for Extra Bag, Cooking for bull hamstern, Refresher for Ref Hold, Drink for Vital Drink.
2. I have edited exactly everything from monolith's guide:

Originally Posted by
Monolith
Now let me explain these a little for those that may be confused...
Column B is the item name....as you see in the picture the first one is the Rodney Axe. So as you look for your items that you want to edit...this is where you look...later on as we get into greens...this will change...they do not name them the names you see in game...but we will talk about that when we get to it....
Column H is the column you will be using in the character.inc later on....it tells the server which items to include in the vendor....
Column M is the amount the SERVER will charge for the item...this is not the amount the player will see until you edit the CLIENT res files and include the same price.
Column X is the item level....we really won't edit this much..it's more for figuring out which item is which later on.
Column Y is the items rarity...it too won't be edited much unless you want to fine tune your items for sale and add some items...but not all in that group.
Column Z is the most important...this tells the server if this item is allowed to be sold in npc vendors or not...this is the column you will be doing most of your editing in.
Rarity for each item was set to 1 [Y], Each item is in the shop [Z], Item level doesn't matter for CS items [X], I have already changed the amount for each item [M], Items were inserted into character.inc [H]
3. I see every item that is NOT working is a scroll, I didn't see anything in the propitem.txt that would make everything have an error of 'USER id does not exist'
On a side note: I have had several people try to help me on this and even though they believed it would be easy...well I am still here asking from everyone's help.
Thank you in Advance,
OriginalPanda