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!

[Help] Change Max Sell in UTS / Auction

Initiate Mage
Joined
Oct 25, 2019
Messages
2
Reaction score
0
Hello, how do I change max sell item for UTS? Thanks

Default: 2,000,000,000
 
Junior Spellweaver
Joined
Apr 5, 2009
Messages
101
Reaction score
3
Any answear ? i want to know too... i have only the Query to disable... that is this one...
Dont know if i understand right, but this code says like "only can register item > 2bi" but if we change > to < and put 1bi it work ?

-- =============================================
-- Author: nScript
-- Create date: 01/21/2012 12:30:07
-- Description: Disable Auction
-- =============================================

USE [RF_WORLD]
GO
ALTER TABLE [dbo].[tbl_utsellinfo] WITH NOCHECK ADD CONSTRAINT [CK_tbl_utsellinfo] CHECK (([price]>(2000000000)))
GO
ALTER TABLE [dbo].[tbl_utsellinfo] CHECK CONSTRAINT [CK_tbl_utsellinfo]
GO
 
Upvote 0
Back
Top