Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Private Server
You last visited: Today at 15:35

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Ban System is bugged] ..

Discussion on [Ban System is bugged] .. within the SRO Private Server forum part of the Silkroad Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2010
Posts: 247
Received Thanks: 52
[Ban System is bugged] ..

Hello guys, everytime i try to ban some one

it's says [ punishment job[register] is failed : db error ]

Well i'm sure 100% from id and time i put

but it's keep show up this error i tried to ban 30 account << mad

but nothing happen


is there anyway to fix it? or anyonther way?
amjed is offline  
Old 12/05/2011, 13:53   #2
 
elite*gold: 0
Join Date: Dec 2011
Posts: 356
Received Thanks: 69
how it's bugged and 18andLife was ban some ppl's in his servers from PVP Sro to Insane sro !
!x_~! is offline  
Old 12/05/2011, 14:10   #3
 
elite*gold: 0
Join Date: Mar 2009
Posts: 2,693
Received Thanks: 3,160
just create php script and you won't need smc any more
LastThief is offline  
Old 12/05/2011, 14:23   #4
 
zikor1337's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 2,667
Received Thanks: 1,886
Quote:
Hello,
Here's my fixed Stored Procedures for a working Punishment system (Both AutoPunishment and SMC SR_UserPunishment)

All you need is to execute the following fixed SP:-

_RegisterPunishment
PHP Code:
Code:
USE [SRO_VT_ACCOUNT]
GO
/****** Object:  StoredProcedure [dbo].[_RegisterPunishment]    UPDATED BY KOC2000 at: 10/30/2011 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- 
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
ALTER procedure [dbo].[_RegisterPunishment]
    @UserJID     int,
    @Type          tinyint,
    @Executor    varchar(128),
    @Shard        smallint,
    @CharName    varchar(16),
    @CharInfo    varchar(256),
    @PosInfo    varchar(64),
    @Guide        varchar(512),
    @Description    varchar(1024),
    @RaiseTime    datetime,
    @BlockStartTime    datetime,
    @BlockEndTime    datetime,
    @PunishTime    datetime
as
    -- ?? ??? Blocking??? ?????
    if( exists( select UserJID from _BlockedUser with(NOLOCK) where UserJID = @UserJID and Type = @Type))
    begin
        select -1    -- ?? ??? ?? ??? ???
        RETURN
    end
    declare @NewSerialNo int    
    set @NewSerialNo = 0
    
    insert _Punishment values( @UserJID, @Type, @Executor, @Shard, @CharName, @CharInfo,
                @PosInfo, @Guide, @Description, @RaiseTime, @BlockStartTime, @BlockEndTime, @PunishTime, 0)
    set @NewSerialNo = @@identity
    if( @@rowcount = 0 or @@error <> 0 or @NewSerialNo = 0 or @NewSerialNo is null)
    begin
        select -2    -- insert??? ?? ??
        return
    end
    
    -- Getting username (KiMO)
    declare @UserID varchar(25)
    SELECT @UserID = StrUserID FROM TB_User WITH (NOLOCK) WHERE JID = @UserJID
    if( @@rowcount = 0 or @@error <> 0 or @UserID is null)
    BEGIN
        SELECT -1
        RETURN
    END
    /*
    declare @UserID varchar(128)
    select @UserID = sr_id from sr_member1 where sr_code = @UserJID
    if( @@rowcount = 0 or @@error <> 0 or @UserID is null)
    begin
        select - 2
        return
    end
    */
    
    -- ??? blocking? ????
    insert _BlockedUser values( @UserJID, @UserID, @Type, @NewSerialNo, @BlockStartTime, @BlockEndTime)
    select 0 

_UpdatePunishment
PHP Code:

USE [SRO_VT_ACCOUNT]
GO
/****** Object:  StoredProcedure [dbo].[_UpdatePunishment]    UPDATED BY KOC2000 at: 10/30/2011 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- 
ALTER procedure [dbo].[_UpdatePunishment]
    @SerialNo    int,
    @UserJID    int,
    @Type        int,
    @Executor    varchar(32),
    @Shard        smallint,
    @CharName    varchar(32),
    @CharInfo    varchar(256),
    @PosInfo    varchar(64),
    @Guide        varchar(512),
    @Description    varchar(1024),
    @RaiseTime    datetime,
    @BlockStartTime    datetime,
    @BlockEndTime    datetime,
    @PunishTime    datetime
as
    if( not exists( select SerialNo from _Punishment with(NOLOCK) where SerialNo = @SerialNo))
    begin
        select -1    -- valid?? ??
        RETURN
    end
    declare @NewSerialNo int    
    set @NewSerialNo = 0
    
    -- Getting username (KiMO)
    declare @UserID varchar(25)
    SELECT @UserID = StrUserID FROM TB_User WITH (NOLOCK) WHERE JID = @UserJID
    if( @@rowcount = 0 or @@error <> 0 or @UserID is null)
    BEGIN
        SELECT -1
        RETURN
    END
    /*
    declare @UserID varchar(128)
    select @UserID = sr_id from sr_member1 where sr_code = @UserJID
    if( @@rowcount = 0 or @@error <> 0 or @UserID is null)
    begin
        select -1
        return
    end
    */
    
    update _Punishment set Status = 1 where SerialNo = @SerialNo
    
    -- ?? blocking? ????
    delete _BlockedUser where UserJID = @UserJID
    
    insert _Punishment values( @UserJID, @Type, @Executor, @Shard, @CharName, @CharInfo,
                @PosInfo, @Guide, @Description, @RaiseTime, @BlockStartTime, @BlockEndTime, @PunishTime, 2)
    set @NewSerialNo = @@identity
    if( @@rowcount = 0 or @@error <> 0 or @NewSerialNo = 0 or @NewSerialNo is null)
    begin
        select -2    -- insert??? ?? ??
        return
    end
    -- ??? blocking? ????
    insert _BlockedUser values( @UserJID, @UserID, @Type, @NewSerialNo, @BlockStartTime, @BlockEndTime)
    select 0
_RegisterAutomatedPunishment

Code:
USE [SRO_VT_ACCOUNT]
GO
/****** Object:  StoredProcedure [dbo].[_RegisterAutomatedPunishment]    UPDATED BY KOC2000 at: 10/30/2011 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO

ALTER PROCEDURE [dbo].[_RegisterAutomatedPunishment]
    @Account    VARCHAR(128),    --This is "strUserID"
    @Type          TINYINT,
    @Executor    VARCHAR(128),
    @Guide        VARCHAR(512),
    @Description    VARCHAR(1024),
    @BlockTimeElapse    INT
AS
    ------------------------------------------------------------------------------------
    -- novice with deepdark
    -- depend only on db time.. we dont have to sync the time between DB and GlobalManager for accuracy
    DECLARE @BlockStartTime    VARCHAR(128)
    DECLARE @BlockEndTime    VARCHAR(128)

    SET @BlockStartTime     = getdate()
    SET @BlockEndTime    = dateadd( mi, @BlockTimeElapse, @BlockStartTime)
    ------------------------------------------------------------------------------------

    DECLARE @UserJID INT
    SET @UserJID = 0

    -- Get UserJID from provided @Account.
    SELECT @UserJID = JID FROM TB_User WITH (NOLOCK) WHERE strUserID = @Account
    IF @@ERROR <> 0 OR @UserJID = 0
    BEGIN
        SELECT -1
        RETURN
    END
    
    DECLARE    @return_value int
    -- Check if user is blocked before and execute proper SP.
    IF( EXISTS ( SELECT UserJID FROM _BlockedUser WITH (NOLOCK) WHERE UserJID = @UserJID AND Type = @Type))
    BEGIN
        DECLARE @SerialNo INT
        SET @SerialNo = 0
        SELECT @SerialNo = SerialNo FROM _Punishment WITH (NOLOCK) WHERE UserJID = @UserJID
        EXEC    @return_value = [dbo].[_UpdatePunishment] @SerialNo, @UserJID, @Type, @Executor,0, '', '', '', @Guide, @Description, @BlockStartTime, @BlockStartTime, @BlockEndTime, @BlockStartTime
    END
    
    ELSE 
    BEGIN
        EXEC    @return_value = [dbo].[_RegisterPunishment] @UserJID, @Type, @Executor,0, '', '', '', @Guide, @Description, @BlockStartTime, @BlockStartTime, @BlockEndTime, @BlockStartTime
    END


    SELECT @UserJID
Credits to
zikor1337 is offline  
Thanks
2 Users
Old 12/05/2011, 15:27   #5
 
elite*gold: 0
Join Date: Feb 2010
Posts: 247
Received Thanks: 52
tnx u guys <3
my best wish's
amjed is offline  
Old 12/05/2011, 16:42   #6
 
elite*gold: 0
Join Date: Apr 2010
Posts: 1,988
Received Thanks: 1,783
Quote:
Originally Posted by !x_~! View Post
how it's bugged and 18andLife was ban some ppl's in his servers from PVP Sro to Insane sro !
because i fixed it already, when i opened my first server
18andLife is offline  
Old 12/05/2011, 17:00   #7
 
elite*gold: 0
Join Date: Dec 2011
Posts: 356
Received Thanks: 69
Quote:
Originally Posted by 18andLife View Post
because i fixed it already, when i opened my first server
mm
i was have no idea about that
sorry!
!x_~! is offline  
Reply


Similar Threads Similar Threads
MineCraft-Server 24/7 rate System, nonlag, city and region system
07/05/2011 - Minecraft Server Advertising - 2 Replies
Welcome, our new Server Europe is online and it growth. We are looking for new Members and maybe VIP's who want to build on a realistic City. Everyone could buy Region's or get one for a bit of work. We are a friendly community and so please visit us: Server: mc-craft.eu Website (Livemap): *removed
[PvP Funserver]DAMNED[new PvP System, Burnout System, Classbalancing, ...
06/25/2011 - Flyff PServer Advertising - 75 Replies
http://damned-flyff.com/img/logo.png EXP Rate: 500x Drop Rate: 350x Penya Rate: 1200x Hallo und herzlich Willkommen bei DAMNED-Flyff. DAMNED Flyff ist ein neuer Funserver mit einem komplett neuen PvP System um den Spielern ein atemberaubendes PvP Erlebnis zu ermöglichen.
New AntiBot System working! Neues Bot System Funktioniert!
02/25/2011 - DarkOrbit - 7 Replies
Peace. Tage lang war der Bot nicht mehr auf meinem Account an da ich immer andere Sachen zu tun hatte. Heute habe ich den iBot einmal wieder angemacht und zack! Gesperrt. Bei 5 Milliarden EPs bisschen schade aber man hat ja 3 "Gutscheine" erwischt zu werden! Ich empfehle euch keine Bots mehr anzumachen! Anscheinend funktioniert das System nun sehr gut, immerhin wurde ich ein Jahr lang nicht gesperrt :D Today i have been blocked after using iBot! I didn't use it for 3 or more days....
Queue system bugged :S
09/14/2009 - Silkroad Online - 3 Replies
guys this is really starting to annoy me, 3 days ago my premuim finished and i have been trying to log on to activate the new one... i havent got anywhere near logging in ! i open 4 clients, 3 with my main 1 with my staller, my staller goes in but my ain doesnt ! and it still keeps writing (requestion user confirmation)... when i check my netstat -n in the command promt it says that my main connects to server .29/.28 ... my staller connects to .68, my staller got in less that 1 hour :S ?...



All times are GMT +2. The time now is 15:35.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.