also ich bräuchte wohl mal die account.txt von einem von euch da ich die nicht in den foren finde
wäre sehr nett von euch ;)
wäre sehr nett von euch ;)
Quote:
Originally Posted by SedrikaFrage 7: Wie erstelle ich einen Account ?
Antwort 7:
Spoiler:
Im Thread von Jusikid mit allen Homepage AddOns, findest du ein Register Script, oder du macht es auf die Klassiche art.
Quote:
USE [ACCOUNT_DBF]
GO
INSERT INTO [dbo].[ACCOUNT_TBL] ([account], [password], [isuse], [member], [id_no1], [id_no2], [realname], [reload], [OldPassword], [TempPassword], [cash])
VALUES
(N'Account ID', N'PW in MD5', N'F', N'A', N'PW in MD5', N'PW in MD5', 'F', NULL, NULL, NULL, '0')
GO
INSERT INTO [dbo].[ACCOUNT_TBL_DETAIL] ([account], [gamecode], [tester], [m_chLoginAuthority], [regdate], [BlockTime], [EndTime], [WebTime], [isuse], [secession], [email])
VALUES
(N'Account ID', N'A000', N'2', N'F', GETDATE(), N'', N'', N'20050101', N'O', NULL, N'')
GO
'D' = Observer ??
'F' = Normaler Spieler
'G' = Chat Logger
'H' = Journalist
'J' = Supporter
'L' = GM Level 1
'M' = GM Level 2
'N' = GM Level 3
'O' = Operator
'P' = Administrator / GM Level 4
USE [ACCOUNT_DBF] GO DECLARE @return_value int EXEC @return_value = [dbo].[usp_CreateNewAccount] @account = N'[COLOR="Red"]Accountnamen hier rein[/COLOR]', @pw = N'[COLOR="Red"]dein Passwort Hash[/COLOR]', @cash = N'0', @email = N'e@e' SELECT 'Return Value' = @return_value GO