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!

About cabal website...

Junior Spellweaver
Joined
Mar 26, 2011
Messages
185
Reaction score
10
I don't know what website is this. When I log-in it appears login success but nothing happens?

ShankiTuna - About cabal website... - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Nov 4, 2010
Messages
52
Reaction score
2
Lol. I use google search more easy.

Type.this "cabal machine ragezone", u can find at the top

For xampp use 1.7.3

Enable mssql extention and output buffering.
 
Upvote 0
Junior Spellweaver
Joined
Jan 31, 2014
Messages
100
Reaction score
5
Execute this to your database.--------------------USE [Account]GO/****** Object: StoredProcedure [dbo].[cabal_tool_daftarbaru] Script Date: 05/06/2018 10:14:32 ******/SET ANSI_NULLS OFFGOSET QUOTED_IDENTIFIER ONGOCREATE PROCEDURE [dbo].[cabal_tool_daftarbaru] (@id varchar(32), password varchar(32) email varchar(100) question varchar(200),@answer varchar(200),@ip varchar(32))ASbegin tran declare userNum as int insert into cabal_auth_table( ID, Password, Login, AuthType, IdentityNo,email,question,answer,ip ) values(@id, pwdencrypt password), '0', 1, '7700000000000' email question,@answer,@ip ) set userNum = @@identity insert into cabal_charge_auth(usernum, type, expiredate, payminutes) values userNum, 0, DATEADD(day, 1000, getdate()), 0) insert into CabalCash.dbo.CashAccount( ID, UserNum, Cash, CashBonus) values(@id, userNum, 0,0) select userNum as usernumcommitGO --------------------i use this site to my mini server. :) its good.
 
Upvote 0
Newbie Spellweaver
Joined
Feb 24, 2018
Messages
18
Reaction score
0
Execute this to your database.--------------------USE [Account]GO/****** Object: StoredProcedure [dbo].[cabal_tool_daftarbaru] Script Date: 05/06/2018 10:14:32 ******/SET ANSI_NULLS OFFGOSET QUOTED_IDENTIFIER ONGOCREATE PROCEDURE [dbo].[cabal_tool_daftarbaru] (@id varchar(32), @password varchar(32) @email varchar(100) @question varchar(200),@answer varchar(200),@ip varchar(32))ASbegin tran declare @userNum as int insert into cabal_auth_table( ID, Password, Login, AuthType, IdentityNo,email,question,answer,ip ) values(@id, pwdencrypt @password), '0', 1, '7700000000000' @email @question,@answer,@ip ) set @userNum = @@identity insert into cabal_charge_auth(usernum, type, expiredate, payminutes) values @userNum, 0, DATEADD(day, 1000, getdate()), 0) insert into CabalCash.dbo.CashAccount( ID, UserNum, Cash, CashBonus) values(@id, @userNum, 0,0) select @userNum as usernumcommitGO --------------------i use this site to my mini server. :) its good.
can you atleast make your code readable? even the sql querry cant recognize it, lol! kindly fix it so it can help others as well else it's basically useless at all.

regards
 
Upvote 0
Back
Top