|
You last visited: Today at 20:27
Advertisement
[HELP]AP Gain Start
Discussion on [HELP]AP Gain Start within the Shaiya forum part of the MMORPGs category.
01/27/2012, 16:02
|
#1
|
elite*gold: 0
Join Date: Jan 2010
Posts: 525
Received Thanks: 805
|
[HELP]AP Gain Start
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
|
#2
|
elite*gold: 0
Join Date: Jan 2010
Posts: 525
Received Thanks: 805
|
#BUMP none know pls :S
|
|
|
01/31/2012, 14:31
|
#3
|
elite*gold: 0
Join Date: Apr 2011
Posts: 370
Received Thanks: 350
|
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
|
#4
|
elite*gold: 0
Join Date: Jan 2010
Posts: 525
Received Thanks: 805
|
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
|
#5
|
elite*gold: 0
Join Date: Sep 2011
Posts: 6
Received Thanks: 0
|
How to go to the DataBase and ... what is the AP gain ?? =)
|
|
|
01/31/2012, 17:22
|
#6
|
elite*gold: 0
Join Date: Apr 2011
Posts: 370
Received Thanks: 350
|
Just make it look like this:
USE [PS_UserData]
GO
/****** Object: StoredProcedure [dbo].[usp_Try_GameLogout_R] Script Date: 01/31/2012 18:21:57 ******/
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
UPDATE Users_Master SET Leave = 0, LeaveDate = GETDATE() WHERE UserUID = @UserUID
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
update PS_userdata.dbo.UserLoginStatus
set loginstatus=0,LogoutTime=@LogTime,LogoutSession=@S essionID,LastPlayTime=datediff(minute,LoginTime,@L ogTime)
where useruid=@useruid
DECLARE @LoginTime datetime
DECLARE @LastPlayTime int
DECLARE @OldPoint int
DECLARE @LoginSession bigint
SET @LoginSession=(select LoginSession from PS_userdata.dbo.UserLoginStatus where useruid=@useruid)
SET @LastPlayTime=(select LastPlayTime from PS_userdata.dbo.UserLoginStatus where useruid=@useruid)
SET @LoginTime=(select LoginTime from PS_userdata.dbo.UserLoginStatus where useruid=@useruid)
SET @OldPoint=(select Point from PS_userdata.dbo.Users_Master where useruid=@useruid)
IF (@SessionID=@LoginSession)
BEGIN
Update PS_userdata.dbo.Users_Master
SET point=point
WHERE useruid=@useruid
INSERT INTO PS_userdata.dbo.UserOnlineTimeLog(UserUid,OldPoint ,Addpoint,LoginTime,LogoutTime,SessionID)
values(@UserUid,@OldPoint,@LastPlayTime,@LoginTime ,@LogTime,@SessionID)
end
SET NOCOUNT OFF
And make sure you change "= point".
|
|
|
01/31/2012, 17:40
|
#7
|
elite*gold: 0
Join Date: Jan 2010
Posts: 525
Received Thanks: 805
|
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
|
#8
|
elite*gold: 0
Join Date: Sep 2011
Posts: 6
Received Thanks: 0
|
OK but you can't win free AP in real server ??
|
|
|
02/01/2012, 13:52
|
#9
|
elite*gold: 46
Join Date: Nov 2009
Posts: 1,400
Received Thanks: 4,249
|
Quote:
Originally Posted by cor3ntino
OK but you can't win free AP in real server ??
|
What do you mean? OS?
Quote:
Originally Posted by cor3ntino
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. 
You can use it when you have your own server,
and put it into your sql database.
|
|
|
 |
Similar Threads
|
[How To]Gain 500 Pen each 30 seconds
01/19/2011 - S4 League Hacks, Bots, Cheats & Exploits - 22 Replies
Steps:
1-Open CE ,a Suspender ,And s4
2-Suspend s4
3-Change this values:
LICENSE_MIND_ENERGY
license_Mind_Energy.lua
OnMindEnergyLicenseTest
|
[RSRO]Gain 40% More EXP!
03/06/2010 - Silkroad Online - 12 Replies
Friends!
Celebration of International Women's Day, and not bypass the Silk Road! March 8 from 0:00 to 23:59 on all servers you can get 40% more experience points and skills than usual.
Do not miss this unique opportunity to grow your character!
Happy holidays to you!
|
VPs gain chart!
07/03/2008 - CO2 Guides & Templates - 2 Replies
Here is the VPs gain per level when you level a noob. I complete upto level 40 because I need to modify the chart after level 40 (you gain vps when the noob EXP get to a certain percentage). I also have not completed the whole chart (from 40 to 70) because I have no time and also those pkers are annoying. Anyway, here is the chart.
From To Total VPs Accumulative
1 2 4 4
2 3 3 7
3 4 2 9
4 5 3 12
5 6 4 16
6 7 5 21
7 8 5 26
|
sp gain by gap?
04/29/2008 - Silkroad Online - 1 Replies
does any1 have the site with the sp gain by gap chart? :>
|
possible to gain others IPs?
05/27/2006 - Conquer Online 2 - 9 Replies
through this process I came up with?
---
I would think that if you go to trade with someone you connect to their computer and or network. so would it be possible during a trade to sniff out their IP though a packet?
I know packets are sent and recieved so much every minutes but is it a possibility?
Maybe with one of these programs?
http://www.effetech.com/
|
All times are GMT +1. The time now is 20:27.
|
|