• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook pagefor updates, or we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.)

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