they was working good,but after add query Guild scroll don't want working any more
dude, if you made them by yourself, then you have to make them again.
if you didn't make them by yourself, then you have to restore your shard with a different name and open _AddtimedJob procedure. copy everything in it and put it @ your current _AddTimedJob @ your real shard db.
I hope i helped you.
Simply use Log, making triggers for scroll? You just update hwanlevel so log sp is okay
he's still a beginner. explain him more ^^
Quote:
Originally Posted by Jocs
dude, if you made them by yourself, then you have to make them again.
if you didn't make them by yourself, then you have to restore your shard with a different name and open _AddtimedJob procedure. copy everything in it and put it @ your current _AddTimedJob @ your real shard db.
I hope i helped you.
USE [SRO_VT_SHARD]
GO
/******By Jangan ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[_AddTimedJob]
@CharID int,
@Category tinyint,
@JobID int,
@TimeToKeep int,
@Data1 int,
@Data2 int,
--##begin due to develop composite item
@Data3 int,
@Data4 int,
@Data5 int,
@Data6 int,
@Data7 int,
@Data8 int,
@Serial64 bigint,
@JID int
--##end due to develop composite item
as
if (not exists (select CharID from _Char with (nolock) where CharID = @CharID))
return -1
if (@TimeToKeep <= 0)
return -2
declare @NewJobID int
set @NewJobID = 0
--##JobID 1 = Guild // JobID 2 = Thief/Hunter/Trader
--##If you want to only have one not both, then just modify the line below!
if (@JobID = 1 or @JobID = 2)
BEGIN
return -1
END
ELSE
BEGIN
--##begin due to develop composite item
insert into _TimedJob(CharID,Category,JobID,TimeToKeep,Data1,D ata2,Data3,Data4,Data5,Data6,Data7,Data8,Serial64, JID)
values(@CharID, @Category, @JobID, @TimeToKeep, @Data1, @Data2, @Data3, @Data4, @Data5, @Data6, @Data7, @Data8, @Serial64, @JID)
END
--##end due to develop composite item
set @NewJobID = @@identity
if (@@error <> 0 or @@rowcount = 0)
[RELEASE] How to add Title name Scroll. 09/20/2022 - SRO PServer Guides & Releases - 18 Replies Hello elitepvpers community. Today i'm going to show you how to add title name scroll to your server correctly without bugs.:)
I Assume you have already " Elitepvpers " title name in your media.pk2 ( at textuisystem.txt ). Lets get started:
First Data base lines:
dbo._RefObjCommon:
1 41802 ITEM_MALL_CHANGETITLE_ELITEPVPERS ???? ???? ???...
[Q] Scroll of Title (custom) ? 01/10/2014 - Flyff Private Server - 11 Replies Hallo,
ich wollte mal fragen wie man eine Scroll of 'Custom'-Title erstellen kann.
Also eine Scroll, wo man sich selber dann einen Titel geben kann.
Geht das?
About Title Scroll 11/18/2013 - SRO Private Server - 2 Replies Can you give me the procedure for AddTimedJop?
Thanks.