The query below will set the username to user1 and the password to password so your login will be this
Username=user1
Password=password
Code:
USE [ACCOUNT_DBF]
GO
INSERT INTO [dbo].[ACCOUNT_TBL] ([account], [password], [isuse], [member], [id_no1], [id_no2], [realname], [reload], [vers], [attempts], [bantime], [lastip])
VALUES
(N'user1', N'64bb8024d2fbb9f92e35264c88c45a2d', N'T', N'A', NULL, N'64bb8024d2fbb9f92e35264c88c45a2d', N'F', NULL, 0, NULL, NULL, NULL)
GO
INSERT INTO [dbo].[ACCOUNT_TBL_DETAIL] ([account], [gamecode], [tester], [m_chLoginAuthority], [regdate], [BlockTime], [EndTime], [WebTime], [isuse], [secession], [net_enable], [vers], [AccSource], [AccSourceID], [email], [birthday], [ban_reason], [ip])
VALUES
(N'user1', N'A000', N'2', N'F', '20080818 00:51:35.700', N'20010101', N'20990101', N'20050101', N'O', NULL, NULL, 0, N'0', 0, N'a2lsbGEtZGF2QHdlYi5kZQ==', N'MDguMDkuMTk5Mw==', N'', N'test')
GO
If you want a different password, then change which I've highlighted below.
Code:
USE [ACCOUNT_DBF]
GO
INSERT INTO [dbo].[ACCOUNT_TBL] ([account], [password], [isuse], [member], [id_no1], [id_no2], [realname], [reload], [vers], [attempts], [bantime], [lastip])
VALUES
(N'user1', N'172c2125beb8251396f14e01cf1766e6', N'T', N'A', NULL, N'172c2125beb8251396f14e01cf1766e6', N'F', NULL, 0, NULL, NULL, NULL)
GO
INSERT INTO [dbo].[ACCOUNT_TBL_DETAIL] ([account], [gamecode], [tester], [m_chLoginAuthority], [regdate], [BlockTime], [EndTime], [WebTime], [isuse], [secession], [net_enable], [vers], [AccSource], [AccSourceID], [email], [birthday], [ban_reason], [ip])
VALUES
(N'user1', N'A000', N'2', N'F', '20080818 00:51:35.700', N'20010101', N'20990101', N'20050101', N'O', NULL, NULL, 0, N'0', 0, N'a2lsbGEtZGF2QHdlYi5kZQ==', N'MDguMDkuMTk5Mw==', N'', N'test')
GO
Of course you'll have to find an MD5 hash generator and enter nForceIsGay before your password. So if I wanted my password to be test it would look like this nForceIsGaytest and when i've entered it into the MD5 generator it will look like this 172c2125beb8251396f14e01cf1766e6.
Hope this helps.