where it fit to give the Hidden Village? prompt in the request. Rusty I have
USE [Auth]
GO
DECLARE @IN_ACCOUNT_ID INT
DECLARE @Counter int
SELECT @IN_ACCOUNT_ID = max([account_id]) FROM [dbo].[Accounts] where [block] = 0 --order by account_id
SET @Counter = 1
WHILE @Counter<=@IN_ACCOUNT_ID BEGIN
if (SELECT Count(account_id) FROM Auth.dbo.accounts where account_id = @Counter) = 1
begin
INSERT INTO [Auth].[dbo].[PaidItem] ([account_id] ,[item_code] ,[item_count] ,[rest_item_count] ,[taken_account_id] ,[confirmed] ,[isCancel])
VALUES (@Counter, ID ,ID , @Counter, 1, 0)
end
SET @Counter = @Counter + 1
END
GO
Epic 9.1
When adding a hidden village an error, tweak for 9.1 epic if you can. I did not know in what subject to write
I'm confused by topics