|
You last visited: Today at 06:57
Advertisement
How to put Continuous Resurrection Rune into passive skill
Discussion on How to put Continuous Resurrection Rune into passive skill within the Shaiya PServer Development forum part of the Shaiya Private Server category.
05/16/2017, 03:17
|
#1
|
elite*gold: 0
Join Date: Dec 2007
Posts: 85
Received Thanks: 5
|
How to put Continuous Resurrection Rune into passive skill
hi,
i want to put some item like Continuous Resurrection Rune, Increase Drop Gold, Prevent Item Drop, Eternal Endurance.. into passive skill, i have done puting but it's not active.
Thank you.
|
|
|
05/16/2017, 14:52
|
#2
|
elite*gold: 260
Join Date: Sep 2011
Posts: 487
Received Thanks: 360
|
Try this:

Or if u really need conti as skill use Castor ShStudio 7.5:
|
|
|
05/16/2017, 20:34
|
#3
|
elite*gold: 0
Join Date: Sep 2011
Posts: 390
Received Thanks: 377
|
Or try this Auto skill relog and PID reload
Quote:
USE [PS_GameData]
GO
/****** Object: StoredProcedure [dbo].[usp_Read_Char_ApplySkills_R] Script Date: 02/25/2015 23:26:45 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Proc [dbo].[usp_Read_Char_ApplySkills_R]
@CharID int
AS
SET NOCOUNT ON
---Ress 30 Dias
if exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=286 and skilllevel=3)
begin
update charapplyskills set LeftResettime=2592000 where CharID=@charID and skillid=286
end
if not exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=286)
begin
insert into CharApplySkills (CharID, SkillID, SkillLevel,LeftResetTime)
Values (@CharID, 286,3,2592000)
end
---Resist endurance 30 days
if exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=225 and skilllevel=1)
begin
update charapplyskills set LeftResettime=2592000 where CharID=@charID and skillid=225
end
if not exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=225)
begin
insert into CharApplySkills (CharID, SkillID, SkillLevel,LeftResetTime)
Values (@CharID, 225,1,2592000)
end
---Red Phoenx amulet 30 days
if exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=233 and skilllevel=1)
begin
update charapplyskills set LeftResettime=2592000 where CharID=@charID and skillid=233
end
if not exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=233)
begin
insert into CharApplySkills (CharID, SkillID, SkillLevel,LeftResetTime)
Values (@CharID, 233,1,2592000)
end
---Prevent Item Drop 30 days
if exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=227 and skilllevel=1)
begin
update charapplyskills set LeftResettime=2592000 where CharID=@charID and skillid=227
end
if not exists ( select skillID from charapplyskills with (nolock) where charID=@CHARID and skillid=227)
begin
insert into CharApplySkills (CharID, SkillID, SkillLevel,LeftResetTime)
Values (@CharID, 227,1,2592000)
end
SELECT SkillID,SkillLevel,LeftResetTime FROM CharApplySkills WHERE CharID=@CharID
SET NOCOUNT OFF
|
|
|
|
All times are GMT +1. The time now is 06:58.
|
|