[HELP]AP Gain Start

01/27/2012 16:02 treica#1
I got an EP 5.3 server and i wanna know how to activate the AP gain...

usp_Try_GameLogout_R here i can't find any SET Point = Point to set it + 1

Know someone how can i in EP 5 please?
01/31/2012 14:00 treica#2
#BUMP none know pls :S
01/31/2012 14:31 taZツ#3
Open your DataBase, go to PS_UserData-Programability-Stored Procedures, and modify USP_Try_GameLogout_R.

Scroll down and you will see SET point = point.

Replace = point with how many points you woild like to offer.
01/31/2012 14:39 treica#4
Thank you for answer Taz but here is the problem i couldn't find this point=point see this:
USE [PS_UserData]
GO
/****** Object: StoredProcedure [dbo].[usp_Try_GameLogout_R] Script Date: 01/31/2012 13:47:29 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

/****** Object: Stored Procedure dbo.usp_Try_GameLogout_R Script Date: 2008-6-7 18:34:05 ******/
ALTER Proc [dbo].[usp_Try_GameLogout_R]

/*
Created by humanws, 2005-10-18
로그아웃 로그 저장
*/

@UserUID int,
@SessionID bigint,
@LogoutType smallint = 0,
@ErrType int = 0

AS

SET NOCOUNT ON

DECLARE @LogTime datetime
DECLARE @Sql nvarchar(4000)
DECLARE @yyyy varchar(4)
DECLARE @mm varchar(2)
DECLARE @dd varchar(2)
DECLARE @LogType bit -- Login:0, Logout:1

SET @LogType = 1
SET @LogTime = GETDATE()
SET @yyyy = DATEPART(yyyy, @LogTime)
SET @mm = DATEPART(mm, @LogTime)
SET @dd = DATEPART(dd, @LogTime)

IF( LEN(@mm) = 1 )
BEGIN
SET @mm = '0' + @mm
END

IF( LEN(@dd) = 1 )
BEGIN
SET @dd = '0' + @dd
END

SET @Sql = N'
INSERT INTO PS_GameLog.dbo.UserLog
(SessionID, UserUID, LogType, LogTime, LogoutType, ErrType)
VALUES(@SessionID, @UserUID, @LogType, @LogTime, @LogoutType, @ErrType)'

EXEC sp_executesql @Sql,
N'@SessionID bigint, @UserUID int, @LogType bit, @LogTime datetime, @LogoutType smallint, @ErrType int',
@SessionID, @UserUID, @LogType, @LogTime, @LogoutType, @ErrType

SET NOCOUNT OFF
01/31/2012 16:10 cor3ntino#5
How to go to the DataBase and ... what is the AP gain ?? =)
01/31/2012 17:22 taZツ#6
Just make it look like this:

And make sure you change "= point".
01/31/2012 17:40 treica#7
Thank you so much works

PS:cor3ntino
To go trought database u need your own server and "MSSQL Management" program there you will be asked for an id and password.
ID:Shaiya
PASS:Shaiya123 (by default)

and AP gain = in game to earn free AP per minute while playing.
02/01/2012 13:45 cor3ntino#8
OK but you can't win free AP in real server ??
02/01/2012 13:52 [Dev]Ansem#9
Quote:
Originally Posted by cor3ntino View Post
OK but you can't win free AP in real server ??
What do you mean? OS?

Quote:
Originally Posted by cor3ntino View Post
How to go to the DataBase and ... what is the AP gain ?? =)
According to this it looks like you think it's a hack or exploit.
That is a fix for devs, for private servers. :p
You can use it when you have your own server,
and put it into your sql database.