|
You last visited: Today at 12:13
Advertisement
A question about Shipewreck quest ! (Egy weapon)
Discussion on A question about Shipewreck quest ! (Egy weapon) within the SRO Private Server forum part of the Silkroad Online category.
12/28/2014, 15:46
|
#1
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
A question about Shipewreck quest ! (Egy weapon)
Sry for many asking. How can i make this quest repeatable.
Its allowed once / char. It can be repeatable 1-2-3..etc times per char ?
|
|
|
12/28/2014, 16:05
|
#2
|
elite*gold: 41
Join Date: Oct 2012
Posts: 2,216
Received Thanks: 1,196
|
you can edit it from quest script
|
|
|
12/28/2014, 16:18
|
#3
|
elite*gold: 0
Join Date: Dec 2014
Posts: 28
Received Thanks: 16
|
add this to AddLogItem at sro_vt_shardlog
Quote:
IF (@Operation = 41)
begin
IF (@ItemRefID =SCROLL ID from refobjcommon)
BEGIN
DELETE FROM SRO_VT_SHARD.DBO._CharQuest where CharID = @CharID and QuestID = 799
delete from SRO_VT_SHARD.dbo._CharCollectionBook where CharID = @CharID
END
END
|
press thanks if i helped
|
|
|
12/28/2014, 17:53
|
#4
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by Aurora Online
add this to AddLogItem at sro_vt_shardlog
press thanks if i helped
|
Did u got what i mean? i mean i can make the quest over and over again at 1 char.
In ur query, ( SCROLL ID from refobjcommon) which scroll ?
Quote:
Originally Posted by Crue*
you can edit it from quest script
|
sry, quest script in the media+DB or at server files. and where is it in server files ? Ty
|
|
|
12/29/2014, 00:35
|
#5
|
elite*gold: 41
Join Date: Oct 2012
Posts: 2,216
Received Thanks: 1,196
|
server files
but you've to decompile it
|
|
|
12/29/2014, 01:07
|
#6
|
elite*gold: 15
Join Date: Jul 2014
Posts: 1,617
Received Thanks: 1,381
|
Quote:
Originally Posted by hamzafigo
Sry for many asking. How can i make this quest repeatable.
Its allowed once / char. It can be repeatable 1-2-3..etc times per char ?
|
You can't make it repeatable from the quest script, only by creating a scroll which resets your collection book and deletes the quest from _CharQuest
|
|
|
12/29/2014, 02:12
|
#7
|
elite*gold: 0
Join Date: Dec 2014
Posts: 28
Received Thanks: 16
|
Quote:
Originally Posted by hamzafigo
Did u got what i mean? i mean i can make the quest over and over again at 1 char.
In ur query, (SCROLL ID from refobjcommon) which scroll ?
sry, quest script in the media+DB or at server files. and where is it in server files ? Ty
|
I thought you want it by a scroll.
you can make it w/o scroll too.
addthis @ _AddLOGChar at log DB
Quote:
Declare @CharID1 = (select CharID from SRO_VT_SHARD.._CharQuest where QuestID = 799)
IF @EventID between 9 and 11 --- teleport
begin
DELETE FROM SRO_VT_SHARD.DBO._CharQuest where CharID = @CharID1 and QuestID = 799
delete from SRO_VT_SHARD.dbo._CharCollectionBook where CharID = @CharID1
end
|
press thanks if i helped
|
|
|
12/29/2014, 03:00
|
#8
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by Aurora Online
I thought you want it by a scroll.
you can make it w/o scroll too.
addthis @ _AddLOGChar at log DB
press thanks if i helped
|
What does this do? I mean, now i make the quest and got the weapon, what now ? just teleport and the book will be clean or what ?
Ty for helping guys
Edit: Tested and didn`t work. With a new char, i finished the quest once then teleported. and tried to get it again. nothing happened. And the books still at collection book.
DECLARE @CharID1 Varchar (MAX)
SELECT CharID from SRO_VT_SHARD.._CharQuest where QuestID = 799
IF @EventID between 9 and 11 --- teleport
begin
DELETE FROM SRO_VT_SHARD.DBO._CharQuest where CharID = @CharID1 and QuestID = 799
delete from SRO_VT_SHARD.dbo._CharCollectionBook where CharID = @CharID1
end
|
|
|
12/29/2014, 03:19
|
#9
|
elite*gold: 15
Join Date: Jul 2014
Posts: 1,617
Received Thanks: 1,381
|
Quote:
Originally Posted by hamzafigo
What does this do? I mean, now i make the quest and got the weapon, what now ? just teleport and the book will be clean or what ?
Ty for helping guys
Edit: Tested and didn`t work. With a new char, i finished the quest once then teleported. and tried to get it again. nothing happened. And the books still at collection book.
DECLARE @CharID1 Varchar (MAX)
SELECT CharID from SRO_VT_SHARD.._CharQuest where QuestID = 799
IF @EventID between 9 and 11 --- teleport
begin
DELETE FROM SRO_VT_SHARD.DBO._CharQuest where CharID = @CharID1 and QuestID = 799
delete from SRO_VT_SHARD.dbo._CharCollectionBook where CharID = @CharID1
end
|
I don't remember what's the questID for d11, probably this one.
Shard procedure:
CREATE PROCEDURE [dbo].[_ForgottenWorldReset]
@CharID INT
AS
BEGIN
DELETE FROM _CharQuest WHERE QuestID = 799 AND CharID = @CharID
DELETE FROM _CharCollectionBook WHERE ThemeID = 4 AND CharID = @CharID
END
AddLogItem:
IF ((@Operation = 41 ) AND (@ItemRefID = 42174))
BEGIN
exec SRO_VT_SHARD.dbo._ForgottenWorldReset @CharID
END
Also I assume you know to create a scroll.
|
|
|
12/29/2014, 03:23
|
#10
|
elite*gold: 150
Join Date: Sep 2009
Posts: 987
Received Thanks: 258
|
Quote:
Originally Posted by TheWickedNite
I don't remember what's the questID for d11, probably this one.
Shard procedure:
CREATE PROCEDURE [dbo].[_ForgottenWorldReset]
@CharID INT
AS
BEGIN
DELETE FROM _CharQuest WHERE QuestID = 799 AND CharID = @CharID
DELETE FROM _CharCollectionBook WHERE ThemeID = 4 AND CharID = @CharID
END
AddLogItem:
IF ((@Operation = 41 ) AND (@ItemRefID = 42174))
BEGIN
exec SRO_VT_SHARD.dbo._ForgottenWorldReset @CharID
END
Also I assume you know to create a scroll.
|
Thanks for trying to help. i gonna try this scroll. Ty again
Edit: Worked perfectly. Thanks
|
|
|
 |
Similar Threads
|
here is question about 1 weapon
02/05/2013 - Dekaron Private Server - 3 Replies
i have 250 lvl segu weapon, and i try wear it but it doesn't work like: character doesn't walk and can't even use a skill
i try with lower lvl weapons on segu and it works fine , skills and walking normally what is problem on it?
|
my PVP weapon quest hack to ur dupe in RF PH
04/29/2010 - RFO Hacks, Bots, Cheats, Exploits & Guides - 8 Replies
i know how to get a PVP weapons superior only in 4 days just pm at my YM [email protected]
|
Howling Fjord quest- Level up weapon skills
01/30/2009 - WoW Exploits, Hacks, Tools & Macros - 0 Replies
Among your first set of quests will be one given by Pontius, near the cannons, and is named 'Let Them Eat Crow.' Let Them Eat Crow - Quest - World of Warcraft If you have already done this quest, you're out of luck.
http://img84.imageshack.us/img84/5373/69753109nx0. th.jpg
He will give you a cage that contains a hungry plaguehound and wants you to kill crows in Bleeding Vale, right outside the town. You can either do the quest and not turn it in or just get the quest and summon the...
|
i have a question to a lvl 130 weapon
11/16/2008 - Dekaron Private Server - 5 Replies
i wanted to know what for a socket item i have to put in my lvl 130 weapen for summoner the weapon have 3 socketst are free
|
Boba's Clone Relic Weapon Quest Dupe
01/05/2006 - General Gaming Discussion - 6 Replies
It is possible to get Boba Fett?s 3?d clone relic reward over and over again. I believe it?s a carbine.
In the quest Boba sends you to Endor to start your quest. Once you complete part 3. Start part 4 then just go back to the contact on endor from the third quest and do the quest over again.
|
All times are GMT +2. The time now is 12:14.
|
|