[Request] Job / Guild Penalty remove

11/21/2011 03:55 cleiomar1#1
Hi anyone can do it ?
I tried a lot of time but I without success...

Can you share it?

tnx
11/21/2011 04:20 B3GOD0FW4R#2
Goto hunter npc in hotan and pay 100k and say bb for ur Penalty stats.
11/21/2011 13:46 Media.#3
i'm sure he mean the waiting time
11/21/2011 13:58 18andLife#4
guild:
delete from _timedjob
where jobid=1
07/31/2016 16:33 t0migunit#5
USE [SRO_VT_SHARD]
GO

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER procedure [dbo].[_AddTimedJob]
@CharID int,
@Category tinyint,
@[Only registered and activated users can see links. Click Here To Register...]D int,
@[Only registered and activated users can see links. Click Here To Register...]Keep int,
@Data1 int,
@Data2 int,
--##begin due to develop composite item
@Data3 int,
@Data4 int,
@Data5 int,
@Data6 int,
@Data7 int,
@Data8 int,
@[Only registered and activated users can see links. Click Here To Register...]64 bigint,
@[Only registered and activated users can see links. Click Here To Register...] int
--##end due to develop composite item
as
if (not exists (select CharID from _Char with (nolock) where CharID = @CharID))
return -1
if @[Only registered and activated users can see links. Click Here To Register...]Keep <= 0)
return -2
declare @[Only registered and activated users can see links. Click Here To Register...]JobID int
set @[Only registered and activated users can see links. Click Here To Register...]JobID = 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 @[Only registered and activated users can see links. Click Here To Register...]D = 1 or @[Only registered and activated users can see links. Click Here To Register...]D = 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, @[Only registered and activated users can see links. Click Here To Register...]D, @[Only registered and activated users can see links. Click Here To Register...]Keep, @Data1, @Data2, @Data3, @Data4, @Data5, @Data6, @Data7, @Data8, @[Only registered and activated users can see links. Click Here To Register...]64, @[Only registered and activated users can see links. Click Here To Register...])
END
--##end due to develop composite item
set @[Only registered and activated users can see links. Click Here To Register...]JobID = @@identity
if (@@error <> 0 or @@rowcount = 0)

return -3
return @[Only registered and activated users can see links. Click Here To Register...]JobID