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!

I need help to put up old tradeshop owner!

Newbie Spellweaver
Joined
Sep 17, 2008
Messages
45
Reaction score
0
Hi all,

is there anyone who knows the shopnumber and eventID for the old
tradeshop owner from str1, dt1, s1? where i am able to sell my items which i got from monster drops.

I don't mean the dura trader!!!

I need the shopnumber which i can put into shopXXXXX.rss file
and the eventID which i can put into the extraXXXXX.rme file.

hope anyone knows that informations...

Greetings Ralf Marquardt
 
Newbie Spellweaver
Joined
Sep 17, 2008
Messages
45
Reaction score
0
Hi all,

no one there wich knows how i can get the trader up :?:

Greetings Ralf Marquardt
 
Newbie Spellweaver
Joined
Sep 17, 2008
Messages
45
Reaction score
0
Hi all,

i have found this:

CREATE PROCEDURE RMS_EXCHANGE_SENDEXCHANGEGAIN
@Seller varchar(14),
@Money1 int,
@Money2 int

AS
set nocount on

begin transaction RMS_EXCHANGE_SENDEXCHANGEGAIN

DECLARE @Money varchar(50)
IF @Money2>0
BEGIN
SET @Money='0:5-0/'+CAST(@Money1 As varchar(15))+'.1:5-0/'+CAST(@Money2 As varchar(15))+'.'
END
ELSE
BEGIN
SET @Money='0:5-0/'+CAST(@Money1 As varchar(15))+'.'
END
DECLARE @MailContent varchar(200)
SET @MailContent='An item you have offered for sale has been sold.
Here are the profits from that sale.
Thank you for doing business with us.'
EXEC RMS_SENDMAIL @Recipient=@Seller,@Sender='TradeShopOwner',@Title='Profits From Sale',@Line=3,@MailContent=@MailContent,@Item=@Money

commit transaction RMS_EXCHANGE_SENDEXCHANGEGAIN



GO

--------------------------------

Thats thats the exchangegain-mail 'Profits from Sale' which i get from the TradeShopOwner, when any items where sold, which i have put in the trader for sale with the Buyer = All thingy and so on.

Anyone knows that old trader which i mean?

Please need help to get him back !!!

What i need to do to get him back :?:

Greetings
Ralf Marquardt
 
Back
Top