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!

Ep8 web & cashshop

Initiate Mage
Joined
Feb 16, 2013
Messages
12
Reaction score
0
Got The Same Problem Here...

Just Got Installed Also,..

codehavok - Ep8 web & cashshop - RaGEZONE Forums

Pls tell me why u have Cash Shop Admin??? I really need it, pls help!!!
 
Junior Spellweaver
Joined
Jun 2, 2011
Messages
145
Reaction score
14
if u have gm nation u have admin panel in cash shop
 
█║▌║▌║TheMerc iful║▌║▌║█
Member
Joined
Jan 29, 2005
Messages
1,361
Reaction score
80
Pls tell me why u have Cash Shop Admin??? I really need it, pls help!!!

Could You Provide A Screenshot Of The Browser?!..

if u have gm nation u have admin panel in cash shop

Ehhh... My GM Character Does Not Have Any Nations Yet?!... But The Panels Shows Up...

And The Only Problem Is The Account.php Any Account I Uses It Displays The Same Error...
 
Joined
Jun 27, 2010
Messages
411
Reaction score
240
I'd like to work on the Alz -> eCoin part but I can't get it to run, because there's no php_mssql extension for the current PHP version. What webserver do you guys use?
 
Initiate Mage
Joined
Feb 16, 2013
Messages
12
Reaction score
0
123 - Ep8 web & cashshop - RaGEZONE Forums

I open my cash shop in game not browser....
 

Attachments

You must be registered for see attachments list
█║▌║▌║TheMerc iful║▌║▌║█
Member
Joined
Jan 29, 2005
Messages
1,361
Reaction score
80
I'd like to work on the Alz -> eCoin part but I can't get it to run, because there's no php_mssql extension for the current PHP version. What webserver do you guys use?

For Now... This One... But Still Having Some Minor Issue's...

Now "emiukey" And I Have This Issue About Account.php?!..

Got Some Solution For Us?!..

Thanks!!

PS. You Gonna Make CT4 Compatible With EP8? Or Somethin'

View attachment 124036

I open my cash shop in game not browser....

Is Your GM Fully Functioning GM In Game?!..

Have You Added And IP For Your GM>?!...
 
Initiate Mage
Joined
Feb 16, 2013
Messages
12
Reaction score
0
Is Your GM Fully Functioning GM In Game?!..

Have You Added And IP For Your GM>?!...

Yes of course I added IP and set GM for my character. I shout in channel and have "GM" beside my character's name...
 
RaGEZONER
Joined
Sep 25, 2009
Messages
637
Reaction score
397
Chumpy's website was recommended to be run on Xampp 1.7.3, from what I remember.
(php mssql extension is included)
 
Joined
Jun 27, 2010
Messages
411
Reaction score
240
It appears that you CASHSHOP DB has another name than entered in the config.php
The lines 24 and 25 of the account.php are the following:
PHP:
$r=mssql_query("exec ".DB_CSH.".dbo.getbankalz '".$_SESSION['v1']."'");
$row = mssql_fetch_row($r);

So it appears that there is some sort of duck up with your Cashshop DB.
 
█║▌║▌║TheMerc iful║▌║▌║█
Member
Joined
Jan 29, 2005
Messages
1,361
Reaction score
80
It appears that you CASHSHOP DB has another name than entered in the config.php
The lines 24 and 25 of the account.php are the following:
PHP:
$r=mssql_query("exec ".DB_CSH.".dbo.getbankalz '".$_SESSION['v1']."'");
$row = mssql_fetch_row($r);

So it appears that there is some sort of duck up with your Cashshop DB.

Sweet F@cking Thanks!

You Truly Are A Bacon Saver... :laugh:
 
Initiate Mage
Joined
Feb 16, 2013
Messages
12
Reaction score
0
Could you copy and paste the error message please?

Warning: mssql_query() [function.mssql-query]: message: Could not find stored procedure 'GAMEDB.dbo.cabal_tool_getwarehousealz'. (severity 16) in C:\xampp\htdocs\account.php on line 21 Warning: mssql_query() [function.mssql-query]: Query failed in C:\xampp\htdocs\account.php on line 21
Warning: mssql_fetch_row() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\account.php on line 22

hope u can help :(:
 
Joined
Jun 27, 2010
Messages
411
Reaction score
240
emiukey have you checked your config.php, because I believe if you're using one of the repacks your "GAMEDB" should be called "SERVER01".
If not try to run this on your DB Server:
Code:
USE [GAMEDB]
GO

SET ANSI_NULLS OFF
SET QUOTED_IDENTIFIER OFF
GO

CREATE  PROCEDURE [dbo].[cabal_tool_GetWarehouseAlz]( @UserNum int )
 AS
BEGIN
	if ( SELECT UserNum FROM cabal_warehouse_table WHERE UserNum = @UserNum ) is Null 
	BEGIN
		INSERT cabal_warehouse_table ( UserNum, Data, Reserved1)
		VALUES( @UserNum, 0x, DBO.DoAlzXor(0))
	END
	SELECT UserNum, Alz
	FROM cabal_warehouse_table
	WHERE UserNum = @UserNum
END
 
Initiate Mage
Joined
Feb 16, 2013
Messages
12
Reaction score
0
emiukey have you checked your config.php, because I believe if you're using one of the repacks your "GAMEDB" should be called "SERVER01".
If not try to run this on your DB Server:
Code:
USE [GAMEDB]
GO

SET ANSI_NULLS OFF
SET QUOTED_IDENTIFIER OFF
GO

CREATE  PROCEDURE [dbo].[cabal_tool_GetWarehouseAlz]( @UserNum int )
 AS
BEGIN
    if ( SELECT UserNum FROM cabal_warehouse_table WHERE UserNum = @UserNum ) is Null 
    BEGIN
        INSERT cabal_warehouse_table ( UserNum, Data, Reserved1)
        VALUES( @UserNum, 0x, DBO.DoAlzXor(0))
    END
    SELECT UserNum, Alz
    FROM cabal_warehouse_table
    WHERE UserNum = @UserNum
END

aww very thanks!! I think I have resolved it :thumbup1:
 
█║▌║▌║TheMerc iful║▌║▌║█
Member
Joined
Jan 29, 2005
Messages
1,361
Reaction score
80
It appears that you CASHSHOP DB has another name than entered in the config.php
The lines 24 and 25 of the account.php are the following:
PHP:
$r=mssql_query("exec ".DB_CSH.".dbo.getbankalz '".$_SESSION['v1']."'");
$row = mssql_fetch_row($r);

So it appears that there is some sort of duck up with your Cashshop DB.

Once Again I Need You To Save My Beloved Bacon!!!

I Have Tried Looking For The Offset Of For The CabalShop In My Main And I Cant See It...

i Need Your Guidance Once More... :):
 
Back
Top