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!

[Release] AutoCashPoint new version with All Character fix get Regen Cash

Skilled Illusionist
Joined
Dec 18, 2009
Messages
333
Reaction score
142
AutoCashPoint by TimePlay new version
All Character in one account will get regen cash even that character have Timeplay lower than other character.

I release it because I am not use this way again, I am already put this features to my Module protection.
so I release this way to public.
This version for fix issue about some character cannot have cashpoint regeneration because have lower timeplay than other character in one account.

Following This for Installation
1. Create new column on your tbl_base
Code:
USE [RF_World]

-- ================================================
-- Pembuat 			: <Hanry Roslaw Saputra>
-- Dibuat Tanggal	: <13 April 2014>
-- Keterangan		: <Trigger AutoCash Version 1.2>
-- ================================================

ALTER TABLE [dbo].[tbl_base]
ADD LogPlay INT NOT NULL DEFAULT ((0))

2. Create new procedure on your RF_World database
Code:
USE [RF_World]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- ================================================
-- Pembuat 			: <Hanry Roslaw Saputra>
-- Dibuat Tanggal	: <13 April 2014>
-- Keterangan		: <Prosedur AutoCash Version 1.2>
-- ================================================

CREATE PROCEDURE [dbo].[pUpdate_RoslawBase]
 [USER=445157]serial[/USER] INT,
 [USER=2000163149]log[/USER]Play INT
AS
BEGIN

	SET NOCOUNT ON
	
	UPDATE [dbo].[tbl_base]
	SET LogPlay = [USER=2000163149]log[/USER]Play
	WHERE Serial = [USER=445157]serial[/USER]
	
END
GO

3. Create new procedure on your BILLING Database
Code:
USE [Billing]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- ================================================
-- Pembuat 			: <Hanry Roslaw Saputra>
-- Dibuat Tanggal	: <13 April 2014>
-- Keterangan		: <Prosedur AutoCash Version 1.2>
-- ================================================

CREATE PROCEDURE [dbo].[RF_AutocashRoslaw]
 [USER=19862]id[/USER] VARCHAR(17),
 [USER=315880]cas[/USER]h INT
AS
BEGIN

	SET NOCOUNT ON
	
	UPDATE [dbo].[tbl_UserStatus]
	SET Cash = (Cash + [USER=315880]cas[/USER]h)
	WHERE id = [USER=19862]id[/USER]
	
END
GO

4. Create new Triger on your tbl_general
Code:
USE [RF_World]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- ================================================
-- Pembuat 			: <Hanry Roslaw Saputra>
-- Dibuat Tanggal	: <13 April 2014>
-- Keterangan		: <Trigger AutoCash Version 1.2>
-- ================================================

CREATE TRIGGER [dbo].[AutocashRoslaw]
	ON [dbo].[tbl_general]
	FOR UPDATE
AS 
BEGIN

	SET NOCOUNT ON
	
	DECLARE @GSerial INT
	DECLARE @GDCK BIT
	DECLARE @GPlay INT
	
	DECLARE @BSerial INT
	DECLARE @BDCK BIT
	DECLARE @BAccount VARCHAR(17)
	DECLARE @BPlay INT
	
	DECLARE [USER=807898]regenc[/USER]ash INT
	
	IF UPDATE(TotalPlayMin)
	BEGIN
		SELECT @GSerial = Serial, @GDCK = DCK, @GPlay = TotalPlayMin FROM INSERTED
		IF (@GSerial > 0 AND @GDCK = 0)
		BEGIN
			SELECT @BSerial = Serial, @BDCK = DCK, @BAccount = Account, @BPlay = LogPlay FROM [dbo].[tbl_base] WHERE Serial = @GSerial
			IF (@BSerial > 0 AND @BDCK = 0)
			BEGIN
				SELECT [USER=807898]regenc[/USER]ash = ((@GPlay-@BPlay)*60)
				IF  [USER=807898]regenc[/USER]ash > 0)
				BEGIN
					EXEC [Billing].[dbo].[RF_AutocashRoslaw] [USER=19862]id[/USER] = @BAccount, [USER=315880]cas[/USER]h = [USER=807898]regenc[/USER]ash
					EXEC [RF_World].[dbo].[pUpdate_RoslawBase] [USER=445157]serial[/USER] = @GSerial, [USER=2000163149]log[/USER]Play = @GPlay
				END	
			END
		END	
	END
	
END
GO

to set value regen per minute, just edit value "60" on triger query.
Example :
Code:
SELECT       [USER=807898]regenc[/USER]ash = ((@GPlay-@BPlay)*[B]60[/B])
"60" is mean players will get 60 cashpoint every minute.

Author @ROSLAW
 
Last edited:
Joined
Apr 9, 2012
Messages
2,359
Reaction score
442
AutoCashPoint by TimePlay new version
All Character in one account will get regen cash even that character have Timeplay lower than other character.

hmmm,
i'm not quite understand about SQL, and trying to learn how that work,

what if i create my own trigger, based on you trigger,
and it look like this :
Code:
USE [RF_World]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


CREATE TRIGGER [dbo].[Autocash]
    ON [dbo].[tbl_general]
    FOR UPDATE
AS 
BEGIN


    SET NOCOUNT ON
    
    DECLARE @GSerial INT
    DECLARE @GDCK BIT
    
    DECLARE @BSerial INT
    DECLARE @BDCK BIT
    DECLARE @BAccount VARCHAR(17)
    
    IF UPDATE(TotalPlayMin)
    BEGIN
        SELECT @GSerial = Serial, @GDCK = DCK FROM INSERTED
        IF (@GSerial > 0 AND @GDCK = 0)
        BEGIN
            SELECT @BSerial = Serial, @BDCK = DCK, @BAccount = Account FROM [dbo].[tbl_base] WHERE Serial = @GSerial
            IF (@BSerial > 0 AND @BDCK = 0)
            BEGIN
                UPDATE [dbo].[tbl_UserStatus]
                SET Cash = Cash+60
                WHERE id = @BAccount
            END
        END    
    END
    
END
GO

do you think this trigger would work?
it give 60 cashpoint everytime TotalPlayMin updated, TotalPlayMin column is updated every 1 minutes right? o_O
Code:
SET Cash = Cash+60
and it give cash for everyminutes regardless of how much the totalplaymin, and doesn't matter if it's new character or old, am i wrong about this part?
or this query would have a bug in it?
cause i can't tested it yet :/:
just want to hear your opinion, since i'm still learning myself...
 
Skilled Illusionist
Joined
Dec 18, 2009
Messages
333
Reaction score
142
hmmm,
i'm not quite understand about SQL, and trying to learn how that work,

what if i create my own trigger, based on you trigger,
and it look like this :
Code:
USE [RF_World]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


CREATE TRIGGER [dbo].[Autocash]
    ON [dbo].[tbl_general]
    FOR UPDATE
AS 
BEGIN


    SET NOCOUNT ON
    
    DECLARE @GSerial INT
    DECLARE @GDCK BIT
    
    DECLARE @BSerial INT
    DECLARE @BDCK BIT
    DECLARE @BAccount VARCHAR(17)
    
    IF UPDATE(TotalPlayMin)
    BEGIN
        SELECT @GSerial = Serial, @GDCK = DCK FROM INSERTED
        IF (@GSerial > 0 AND @GDCK = 0)
        BEGIN
            SELECT @BSerial = Serial, @BDCK = DCK, @BAccount = Account FROM [dbo].[tbl_base] WHERE Serial = @GSerial
            IF (@BSerial > 0 AND @BDCK = 0)
            BEGIN
                UPDATE [dbo].[tbl_UserStatus]
                SET Cash = Cash+60
                WHERE id = @BAccount
            END
        END    
    END
    
END
GO

do you think this trigger would work?
it give 60 cashpoint everytime TotalPlayMin updated, TotalPlayMin column is updated every 1 minutes right? o_O
Code:
SET Cash = Cash+60
and it give cash for everyminutes regardless of how much the totalplaymin, and doesn't matter if it's new character or old, am i wrong about this part?
or this query would have a bug in it?
cause i can't tested it yet :/:
just want to hear your opinion, since i'm still learning myself...

your query will work for each character. but not accurate with timeplay character. you just update they cash if SQL update timeplay database on tbl general.
Server will update all data from zoneserver to database SQL every 3 - 7 minutes it's depend of spec from PC or Zoneserver Mainthread.

so your query triggers just update 60 cashpoint every random minutes.
 
Newbie Spellweaver
Joined
Apr 13, 2009
Messages
6
Reaction score
0
help with this error I followed the orden post

Msg 102, Level 15, State 1, Procedure AutocashRoslaw, Line 36
Incorrect syntax near ')'.


YITbAnw - [Release] AutoCashPoint new version with All Character fix get Regen Cash - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Joined
Apr 9, 2012
Messages
2,359
Reaction score
442
your query will work for each character. but not accurate with timeplay character. you just update they cash if SQL update timeplay database on tbl general.
Server will update all data from zoneserver to database SQL every 3 - 7 minutes it's depend of spec from PC or Zoneserver Mainthread.

so your query triggers just update 60 cashpoint every random minutes.
i think this simple trigger would solved it, check this out ^^7
this query check the old value of timeplay, and new value of timeplay, and set it as regentcash (and multiple it if they want ^^7) then set cash from that account to cash+regentcash
doesn't need to create new column for log, and doesn't need procedure either
Code:
USE [RF_World]


SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO




    CREATE TRIGGER [dbo].[Autocash]
    ON [dbo].[tbl_general]
    FOR UPDATE
    AS 
    BEGIN


    SET NOCOUNT ON
    
    DECLARE @GSerial INT
    DECLARE @GDCK BIT
    DECLARE @GPlay INT
    
    DECLARE @BAccount VARCHAR(17)
    DECLARE @BPlay INT
    
    DECLARE @[I][B][URL="http://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash INT
    
    IF UPDATE(TotalPlayMin)
    BEGIN
        SELECT @GDCK = a.DCK, @BAccount = b.Account, @GPlay = a.TotalPlayMin, @BPlay=g.TotalPlayMin  FROM INSERTED as a inner join tbl_base as b on b.Serial=a.Serial inner join DELETED as g on a.serial=g.serial
        IF (@GDCK = 0 and @GPlay > @BPlay)
        BEGIN
            set @[I][B][URL="http://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash=(@GPlay-@BPlay)*60
            update Billing2232.dbo.tbl_UserStatus
            set cash = cash @[I][B][URL="http://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash
            where id=@BAccount
            
        END
    END    
END
    


GO

i've been tested with dummy database, and seem it's works fine ^^7
 
Skilled Illusionist
Joined
Dec 18, 2009
Messages
333
Reaction score
142
i think this simple trigger would solved it, check this out ^^7
this query check the old value of timeplay, and new value of timeplay, and set it as regentcash (and multiple it if they want ^^7) then set cash from that account to cash+regentcash
doesn't need to create new column for log, and doesn't need procedure either
Code:
USE [RF_World]


SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO




    CREATE TRIGGER [dbo].[Autocash]
    ON [dbo].[tbl_general]
    FOR UPDATE
    AS 
    BEGIN


    SET NOCOUNT ON
    
    DECLARE @GSerial INT
    DECLARE @GDCK BIT
    DECLARE @GPlay INT
    
    DECLARE @BAccount VARCHAR(17)
    DECLARE @BPlay INT
    
    DECLARE @[I][B][URL="http://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash INT
    
    IF UPDATE(TotalPlayMin)
    BEGIN
        SELECT @GDCK = a.DCK, @BAccount = b.Account, @GPlay = a.TotalPlayMin, @BPlay=g.TotalPlayMin  FROM INSERTED as a inner join tbl_base as b on b.Serial=a.Serial inner join DELETED as g on a.serial=g.serial
        IF (@GDCK = 0 and @GPlay > @BPlay)
        BEGIN
            set @[I][B][URL="http://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash=(@GPlay-@BPlay)*60
            update Billing2232.dbo.tbl_UserStatus
            set cash = cash @[I][B][URL="http://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash
            where id=@BAccount
            
        END
    END    
END
    


GO

i've been tested with dummy database, and seem it's works fine ^^7

yes that code will run for single process.
that query save inserted value and save deleted value on temporary and select it.
I know that bro ^^7, imagine if the process is multiple access and huge access for each minute on every update timeplay for all players, do you think that query can handle it ^^7, especially deleted value on temporary process. ^^7

I am making query/program is for everyone not just for me ^^7, the reason why I am not make a simple code like you is secret ^^7. you will know after you have your own server. and manage all players you have and get some result. ^^7.
try your code on there, and after a few weeks maybe you will know something ^^7.
 
Last edited:
Newbie Spellweaver
Joined
Apr 17, 2014
Messages
38
Reaction score
1
AutoCashPoint by TimePlay new version
All Character in one account will get regen cash even that character have Timeplay lower than other character.





Following This for Installation
1. Create new column on your tbl_base
Code:
USE [RF_World]

-- ================================================
-- Pembuat             : <Hanry Roslaw Saputra>
-- Dibuat Tanggal    : <13 April 2014>
-- Keterangan        : <Trigger AutoCash Version 1.2>
-- ================================================

ALTER TABLE [dbo].[tbl_base]
ADD LogPlay INT NOT NULL DEFAULT ((0))

2. Create new procedure on your RF_World database
Code:
USE [RF_World]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- ================================================
-- Pembuat             : <Hanry Roslaw Saputra>
-- Dibuat Tanggal    : <13 April 2014>
-- Keterangan        : <Prosedur AutoCash Version 1.2>
-- ================================================

CREATE PROCEDURE [dbo].[pUpdate_RoslawBase]
 @[I][B][URL="https://forum.ragezone.com/members/445157.html"]serial[/URL][/B][/I] INT,
 @[I][B][URL="https://forum.ragezone.com/members/2000163149.html"]log[/URL][/B][/I]Play INT
AS
BEGIN

    SET NOCOUNT ON
    
    UPDATE [dbo].[tbl_base]
    SET LogPlay = @[I][B][URL="https://forum.ragezone.com/members/2000163149.html"]log[/URL][/B][/I]Play
    WHERE Serial = @[I][B][URL="https://forum.ragezone.com/members/445157.html"]serial[/URL][/B][/I]
    
END
GO

3. Create new procedure on your BILLING Database
Code:
USE [Billing]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- ================================================
-- Pembuat             : <Hanry Roslaw Saputra>
-- Dibuat Tanggal    : <13 April 2014>
-- Keterangan        : <Prosedur AutoCash Version 1.2>
-- ================================================

CREATE PROCEDURE [dbo].[RF_AutocashRoslaw]
 @[I][B][URL="https://forum.ragezone.com/members/19862.html"]id[/URL][/B][/I] VARCHAR(17),
 @[I][B][URL="https://forum.ragezone.com/members/315880.html"]cas[/URL][/B][/I]h INT
AS
BEGIN

    SET NOCOUNT ON
    
    UPDATE [dbo].[tbl_UserStatus]
    SET Cash = (Cash + @[I][B][URL="https://forum.ragezone.com/members/315880.html"]cas[/URL][/B][/I]h)
    WHERE id = @[I][B][URL="https://forum.ragezone.com/members/19862.html"]id[/URL][/B][/I]
    
END
GO

4. Create new Triger on your tbl_general
Code:
USE [RF_World]

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- ================================================
-- Pembuat             : <Hanry Roslaw Saputra>
-- Dibuat Tanggal    : <13 April 2014>
-- Keterangan        : <Trigger AutoCash Version 1.2>
-- ================================================

CREATE TRIGGER [dbo].[AutocashRoslaw]
    ON [dbo].[tbl_general]
    FOR UPDATE
AS 
BEGIN

    SET NOCOUNT ON
    
    DECLARE @GSerial INT
    DECLARE @GDCK BIT
    DECLARE @GPlay INT
    
    DECLARE @BSerial INT
    DECLARE @BDCK BIT
    DECLARE @BAccount VARCHAR(17)
    DECLARE @BPlay INT
    
    DECLARE @[I][B][URL="https://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash INT
    
    IF UPDATE(TotalPlayMin)
    BEGIN
        SELECT @GSerial = Serial, @GDCK = DCK, @GPlay = TotalPlayMin FROM INSERTED
        IF (@GSerial > 0 AND @GDCK = 0)
        BEGIN
            SELECT @BSerial = Serial, @BDCK = DCK, @BAccount = Account, @BPlay = LogPlay FROM [dbo].[tbl_base] WHERE Serial = @GSerial
            IF (@BSerial > 0 AND @BDCK = 0)
            BEGIN
                SELECT @[I][B][URL="https://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash = ((@GPlay-@BPlay)*60)
                IF  @[I][B][URL="https://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash > 0)
                BEGIN
                    EXEC [Billing].[dbo].[RF_AutocashRoslaw] @[I][B][URL="https://forum.ragezone.com/members/19862.html"]id[/URL][/B][/I] = @BAccount, @[I][B][URL="https://forum.ragezone.com/members/315880.html"]cas[/URL][/B][/I]h = @[I][B][URL="https://forum.ragezone.com/members/807898.html"]regenc[/URL][/B][/I]ash
                    EXEC [RF_World].[dbo].[pUpdate_RoslawBase] @[I][B][URL="https://forum.ragezone.com/members/445157.html"]serial[/URL][/B][/I] = @GSerial, @[I][B][URL="https://forum.ragezone.com/members/2000163149.html"]log[/URL][/B][/I]Play = @GPlay
                END    
            END
        END    
    END
    
END
GO



Author @ROSLAW

Msg 102, Level 15, State 1, Procedure AutocashRoslaw, Line 36
Incorrect syntax near ')'.
 
Skilled Illusionist
Joined
Dec 18, 2009
Messages
333
Reaction score
142
Check all query spell if you copy from Code Column. sometime query character changed because code column auto format form ragezone
 
Last edited:
Newbie Spellweaver
Joined
May 11, 2015
Messages
22
Reaction score
1
Check all query spell if you copy from Code Column. sometime query character changed because code column auto format form ragezone

Sir.. Good day,

I have a question about your AutoCashPoint.
My server is 2.2.3

After I applied and run your querry the 4 querry my character keeps on DC;ing every 5mins.
WHY?

Please. explain and help me.
 
Skilled Illusionist
Joined
Dec 18, 2009
Messages
333
Reaction score
142
Sir.. Good day,

I have a question about your AutoCashPoint.
My server is 2.2.3

After I applied and run your querry the 4 querry my character keeps on DC;ing every 5mins.
WHY?

Please. explain and help me.

This version is for RF Server 2.2.3.2 Golden Age.
But if you have good knowledge with SQL Query, you can make new trigger basicly from my trigger.
 
Newbie Spellweaver
Joined
May 11, 2015
Messages
22
Reaction score
1
This version is for RF Server 2.2.3.2 Golden Age.
But if you have good knowledge with SQL Query, you can make new trigger basicly from my trigger.

I'm not good in SQL but I can' understand how sql works.

I though this was for 2.2.3 sorry.
I hope there will be a 2.2.3.

Thanks ROSLAW <- d'best ^_^

I was one of your fan. ^_^
 
Junior Spellweaver
Joined
Apr 5, 2009
Messages
101
Reaction score
3
Sir Roslaw i use all query and run, i see that creat new column in tbl_base (LogPlay), i log my char and see that got "LogPlay" but my cash still 0, but if i go in tbl_userstats in BILLING and set any value in column "Cash" works.... I tried make some changes in your query but no sucess.... have some clue for me sir ?
Thx a lot.

--Update---
I did another test, i added cash with this query in my character and only then could receive cash for time. I already increase column "Bonus" in my tbl and still not work.

Code:
 /****** Bacuy`s Area ******/
 /****** Script add premium, tanpa harus mendelete ******/
 /****** jika sudah ada pada table ******/

DECLARE [USER=19862]id[/USER] VARCHAR(13)
DECLARE @status int
DECLARE   [USER=2000147291]Lam[/USER]a int
DECLARE   [USER=315880]cas[/USER]h int

/****** Your Name ******/
SET [USER=19862]id[/USER] = 'bacuy'

/****** Set 2 for turn on Premium or Set 1 for turn off Premium  ******/
SET @status = '2'

/****** How long players get premium service (in days) exemple : 1 for 1 days, 2 for 2 days, 3 for 3days. ******/
SET   [USER=2000147291]Lam[/USER]a = '1'

/****** Ini gak perlu di isi, ini query khusus add premium aja ******/
SET   [USER=315880]cas[/USER]h = '0'

/************************************************************************************************************************************************/

declare   [USER=138004]count[/USER] numeric(18, 0)
select   [USER=138004]count[/USER] = COUNT(*) from [BILLING].[dbo].[tbl_UserStatus] where id = [USER=19862]id[/USER]

if    [USER=138004]count[/USER] = 0)
begin
	INSERT INTO [BILLING].[dbo].[tbl_UserStatus] 
	(
	[id],
	[Status],
	[DTStartPrem],
	[DTEndPrem],
	[Cash]
	)
	VALUES
	(
 [USER=19862]id[/USER],
	@status,
	CONVERT(datetime,GETDATE()),
	CONVERT(datetime,GETDATE()   [USER=2000147291]Lam[/USER]a),
   [USER=315880]cas[/USER]h
	)
end
else
begin
	update [BILLING].[dbo].[tbl_UserStatus]
	set [Status] = @status,
	[DTStartPrem] = CONVERT(datetime,GETDATE()),
	[DTEndPrem] = CONVERT(datetime,GETDATE()   [USER=2000147291]Lam[/USER]a),
	[Cash] =   [USER=315880]cas[/USER]h
	where id = [USER=19862]id[/USER]
end

/***********************************************************************************************************************************************/
 
Last edited:
Skilled Illusionist
Joined
Dec 18, 2009
Messages
333
Reaction score
142
PM me your access server. or add me on skype : roslaw.it
I will fix it for you. don't worry, that is free, I just want to know, what actually the problem it is.
 
Junior Spellweaver
Joined
Apr 5, 2009
Messages
101
Reaction score
3
I add you in skype (i think i added you, appear many guys with "roslaw" ehehehe) i cant send your private message your box is full xD
 
Newbie Spellweaver
Joined
Apr 17, 2014
Messages
38
Reaction score
1
for step 4 i found error like this :
Msg 102, Level 15, State 1, Procedure AutocashRoslaw, Line 36
Incorrect syntax near ')'.
 
Newbie Spellweaver
Joined
Feb 2, 2012
Messages
11
Reaction score
0
work , but if buy cash in game , always related item cash ..
why ?
 
Junior Spellweaver
Joined
Feb 23, 2014
Messages
115
Reaction score
18
work , but if buy cash in game , always related item cash ..
why ?
bro, related item cash is different topic with this thread :v
check your client + server price for cash shop ^^
and then it should solved your problem
 
Newbie Spellweaver
Joined
May 1, 2006
Messages
64
Reaction score
3
I did everything but now every old character get Disconnect when select the caracters and the new characters after few time get disconect and an error when select that character!
ROSLAW - [Release] AutoCashPoint new version with All Character fix get Regen Cash - RaGEZONE Forums


Whats going on? what can i do?
 
Last edited:
Newbie Spellweaver
Joined
Jun 3, 2014
Messages
18
Reaction score
1
I did everything but now every old character get Disconnect when select the caracters and the new characters after few time get disconect and an error when select that character!
ROSLAW - [Release] AutoCashPoint new version with All Character fix get Regen Cash - RaGEZONE Forums


Whats going on? what can i do?

what server files you use ? and what nation code ?
im using xtreme file server and Bill RU, works perfectly with custom item cash.
 
Back
Top