How Do i create a website for my cabal private server?
How Do i create a website for my cabal private server?
check the release section
If you have to ask that question then you obviously don't know any html let alone php/asp so you have a lot to learn if you want to make your own. Other than that you will have to make do with what is in the release section as Cath22 says.
USE [RanUser]
GO
/****** Object: StoredProcedure [dbo].[gm_login] Script Date: 11/26/2008 21:15:16 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
-------------------------------------------------------------------------------
-- sp_gm_login.sql
-------------------------------------------------------------------------------
ALTER PROCEDURE [dbo].[gm_login]
@userId char(50),
@userPass char(50),
@authenticate char(50),
@nReturn int OUTPUT
AS
DECLARE @nUserNum int,
@nUserType int
SET NOCOUNT ON
SET @nReturn = 0
SET @nUserNum = 0
SELECT @nUserNum = UserInfo.UserNum, @nUserType=UserInfo.UserType
FROM UserInfo
WHERE UserID = @userId AND UserPass = @userPass AND UserAvailable = 1 AND UserType>=20
-- ID / PWD ??...
IF @nUserNum = 0
BEGIN
-- ID / PWD ??? ?? ???????
SET @nReturn = 0
END
ELSE
BEGIN
-- ID / PWD ??
SET @nReturn = @nUserType
-- ???? ???
INSERT INTO LogGmCmd (UserNum, GmCmd)
VALUES (@nUserNum, 'LOGIN GMTOOL UserID:' + @userId)
END
SET NOCOUNT OFF
![]()
I should have watched my mouth and not said/talked shit to DeadlyData telling him things like your are not welcome here because then I become the one who is truly not welcome here.