- Jun 28, 2004
- 1,756
- 102
- 289
WOOOT PROGRESS FTW!!:
I now have it so when u click Consign it comes up with the window to put your item in, then you select how much u wish to sell for and click ok, but then theres an error
[INFO FOR Stored Procedure]
UM_READYTOSELL_NEW
This inserts the Servername_NPCname into FLD_Marketname
and inserts the charname into FLD_SELLWHO
I now have it so when u click Consign it comes up with the window to put your item in, then you select how much u wish to sell for and click ok, but then theres an error
[INFO FOR Stored Procedure]
UM_READYTOSELL_NEW
Code:
CREATE PROCEDURE [dbo].[UM_READYTOSELL_NEW]
@param1 nvarchar(50)='',@param2 nvarchar(50)=''
AS
SELECT count(*) FROM TBL_ITEMMARKET
INSERT INTO [LOM2Market].[dbo].[TBL_ITEMMARKET]
( [FLD_MARKETNAME],
[FLD_SELLWHO])
VALUES(@param1,@param2)
GO
and inserts the charname into FLD_SELLWHO
