Page 16 of 67 PrimeiroPrimeiro ... 614151617182666 ... ÚltimoÚltimo
Resultados 151 a 160 de 662
  1. #151
    Membro arcklenda's Avatar
    Data de Ingresso
    Sep 2015
    Posts
    13
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    1 Post(s)
    Citação Originally Posted by Mentor Ver Post
    @[Somente membros podem ver os links. ], faça uma tentativa rodando essas jobs no Query Analizer. Não esqueça de fazer um beckup antes do seu banco de dados.
    Pelo que sei, esse problema vem acontecendo em alguns sistemas operacionais como Windows 2003 SP2 e Vista também.

    Código:
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[MEMB_STAT_GJ]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[MEMB_STAT_GJ]
    GO
    
    CREATE TABLE [dbo].[MEMB_STAT_GJ] (
    [memb___id] [char] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [name] [char] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [ServerName] [varchar] (20) COLLATE Chinese_PRC_CI_AS NULL ,
    [ServerCode] [int] NULL ,
    [IP] [varchar] (20) COLLATE Chinese_PRC_CI_AS NULL ,
    [TM] [datetime] NULL
    ) ON [PRIMARY]
    GO
    Código:
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[WZ_CONNECT_MEMB]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
    drop procedure [dbo].[WZ_CONNECT_MEMB]
    GO
    
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_NULLS OFF
    GO
    
    CREATE PROCEDURE WZ_CONNECT_MEMB
    @uid varchar(10),
    @server varchar(20),
    @uip varchar(20)
    AS
    
    Begin
    
    BEGIN TRANSACTION
    
    SET NOCOUNT ON
    
    IF EXISTS ( SELECT memb___id FROM MEMB_STAT WITH (READUNCOMMITTED) WHERE memb___id = @uid )
    Begin
    UPDATE MEMB_STAT
    SET ip = @uip , connectstat = 1 , servername = @server , ConnectTM = (getdate())
    WHERE memb___id = @uid
    End
    ELSE
    Begin
    INSERT INTO MEMB_STAT ( memb___id,ip,connectstat,servername)
    valueS (@uid,@uip,1,@server )
    End
    IF(@@Error <> 0 )
    ROLLBACK TRANSACTION
    ELSE
    COMMIT TRANSACTION
    
    --写入登录记录
    IF EXISTS ( SELECT UserID FROM UserLogin WITH (READUNCOMMITTED) WHERE UserID = @uid )
    Begin
    UPDATE UserLogin
    SET LoginIP=@uip,Server=@server,LoginTM = (getdate()),OnlineSec=0,GiveMoney=0,logoutTM=null
    WHERE UserID = @uid
    End
    ELSE
    Begin
    INSERT INTO UserLogin (UserID,LoginIP,Server,LoginTM,OnlineSec,GiveMoney )
    values (@uid,@uip,@server,getdate(),0,0)
    End
    --自动封服务器不准进入的人物
    declare @SmallestZS int
    declare @LargestZS int
    declare @Type int
    select @Type=Type from SetServerList where ServerName=@server
    
    if (@Type>0) begin
    
    select @SmallestZS=Smallest_ZS from SetServerList where ServerName=@server
    select @LargestZS=Largest_ZS from SetServerList where ServerName=@server
    
    if not (@SmallestZS is null) begin
    update character set ctlcode=(ctlcode | 0x81) where [name] not in
    (
    SELECT NAME FROM WEB_ZS WHERE (ACC = @uid) AND (ZSCS >= @LargestZS) AND (ZSCS <= @SmallestZS)
    ) AND (AccountID = @uid)
    end
    end
    DELETE FROM MEMB_STAT_GJ WHERE (memb___id = @uid and servername=@server)
    update character set ctlcode=(ctlcode | 0x81) where [name] in
    (
    SELECT name FROM MEMB_STAT_GJ WHERE (memb___id = @uid)
    ) AND (AccountID = @uid)
    
    SET NOCOUNT OFF
    End
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO
    ao executar a segunda job:

    Mensagem 468, Nível 16, Estado 9, Procedimento WZ_CONNECT_MEMB, Linha 61
    Não foi possível resolver o conflito de agrupamento entre "Chinese_PRC_CI_AS" e "Latin1_General_CI_AS" na operação is.

  2. #152
    Iniciante gunbound1012's Avatar
    Data de Ingresso
    Aug 2015
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    1 Post(s)
    Citação Originally Posted by Mentor Ver Post
    @[Somente membros podem ver os links. ], faça uma tentativa rodando essas jobs no Query Analizer. Não esqueça de fazer um beckup antes do seu banco de dados.
    Pelo que sei, esse problema vem acontecendo em alguns sistemas operacionais como Windows 2003 SP2 e Vista também.

    Código:
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[MEMB_STAT_GJ]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[MEMB_STAT_GJ]
    GO
    
    CREATE TABLE [dbo].[MEMB_STAT_GJ] (
    [memb___id] [char] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [name] [char] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [ServerName] [varchar] (20) COLLATE Chinese_PRC_CI_AS NULL ,
    [ServerCode] [int] NULL ,
    [IP] [varchar] (20) COLLATE Chinese_PRC_CI_AS NULL ,
    [TM] [datetime] NULL
    ) ON [PRIMARY]
    GO
    Código:
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[WZ_CONNECT_MEMB]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
    drop procedure [dbo].[WZ_CONNECT_MEMB]
    GO
    
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_NULLS OFF
    GO
    
    CREATE PROCEDURE WZ_CONNECT_MEMB
    @uid varchar(10),
    @server varchar(20),
    @uip varchar(20)
    AS
    
    Begin
    
    BEGIN TRANSACTION
    
    SET NOCOUNT ON
    
    IF EXISTS ( SELECT memb___id FROM MEMB_STAT WITH (READUNCOMMITTED) WHERE memb___id = @uid )
    Begin
    UPDATE MEMB_STAT
    SET ip = @uip , connectstat = 1 , servername = @server , ConnectTM = (getdate())
    WHERE memb___id = @uid
    End
    ELSE
    Begin
    INSERT INTO MEMB_STAT ( memb___id,ip,connectstat,servername)
    valueS (@uid,@uip,1,@server )
    End
    IF(@@Error <> 0 )
    ROLLBACK TRANSACTION
    ELSE
    COMMIT TRANSACTION
    
    --写入登录记录
    IF EXISTS ( SELECT UserID FROM UserLogin WITH (READUNCOMMITTED) WHERE UserID = @uid )
    Begin
    UPDATE UserLogin
    SET LoginIP=@uip,Server=@server,LoginTM = (getdate()),OnlineSec=0,GiveMoney=0,logoutTM=null
    WHERE UserID = @uid
    End
    ELSE
    Begin
    INSERT INTO UserLogin (UserID,LoginIP,Server,LoginTM,OnlineSec,GiveMoney )
    values (@uid,@uip,@server,getdate(),0,0)
    End
    --自动封服务器不准进入的人物
    declare @SmallestZS int
    declare @LargestZS int
    declare @Type int
    select @Type=Type from SetServerList where ServerName=@server
    
    if (@Type>0) begin
    
    select @SmallestZS=Smallest_ZS from SetServerList where ServerName=@server
    select @LargestZS=Largest_ZS from SetServerList where ServerName=@server
    
    if not (@SmallestZS is null) begin
    update character set ctlcode=(ctlcode | 0x81) where [name] not in
    (
    SELECT NAME FROM WEB_ZS WHERE (ACC = @uid) AND (ZSCS >= @LargestZS) AND (ZSCS <= @SmallestZS)
    ) AND (AccountID = @uid)
    end
    end
    DELETE FROM MEMB_STAT_GJ WHERE (memb___id = @uid and servername=@server)
    update character set ctlcode=(ctlcode | 0x81) where [name] in
    (
    SELECT name FROM MEMB_STAT_GJ WHERE (memb___id = @uid)
    ) AND (AccountID = @uid)
    
    SET NOCOUNT OFF
    End
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO
    thanks pro

  3. #153
    Membro lerick23's Avatar
    Data de Ingresso
    Aug 2015
    Posts
    15
    Thanks Thanks Given 
    3
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    3 Post(s)
    @[Somente membros podem ver os links. ] debes agregar al topic principal los SO testeados para evitar generar spam

  4. #154
    Iniciante kiroto's Avatar
    Data de Ingresso
    Aug 2015
    Posts
    6
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    0 Post(s)
    Thanks to TheRenchix for problem with Join Gens !!!


    All working now!!!
    Last edited by kiroto; 11/09/2015 at 12:40 PM.

  5. #155
    Membro richardj's Avatar
    Data de Ingresso
    Jul 2015
    Posts
    306
    Thanks Thanks Given 
    5
    Thanks Thanks Received 
    3
    Thanked in
    3 Posts
    Mencionado
    46 Post(s)
    Esperando novo Repack com as correções para colocar aki na lan pros mlks testar
    Last edited by richardj; 11/09/2015 at 05:51 PM.

  6. #156
    Fundador PerfectZone Mentor's Avatar


    Data de Ingresso
    Jun 2013
    Posts
    2,850
    Thanks Thanks Given 
    784
    Thanks Thanks Received 
    2,194
    Thanked in
    355 Posts
    Mencionado
    804 Post(s)
    MEU HUMOR
    Twisted
    País
    Brazil
    Quero informar que esse será o ultimo update lançado para o repack free, e que as próximas correções serão apenas para o Repack VIP e para a versão Premium.


    New Update 7.0
    Informação
    - Fixed crash command /AutoAdd with off parameter;
    - Changed /AutoReset to /AutoReset <level> parameter;
    - Changed Command System requirements phrases;
    - Fixed AutoReset to match with required level;
    - Fixed AutoReset Level check;
    - Added ResetDay, ResetWeek and ResetMonth to save at dbo.Character;


    Link foi adicionado no tópico inicial!

    Atenção
    É importante que vocês utilizem todos os arquivos que foi postado nesse pack! Sei que é chato vocês ter de ficarem reconfigurando os arquivos, mais infelizmente nesse update vai ser assim. Estou com esse server ligado a dias e até agora está estável e não apresentou problemas. Peço que se atentem para as configurações que vocês irão estar fazendo, pois uma configuração errada pode acarretar na estabilidade do servidor ocasionando o crash.
    Last edited by Mentor; 11/09/2015 at 10:18 PM.
    Perfect Zone Brasil



    Inscreva-se no meu canal clicando [Somente membros podem ver os links. ]

  7. #157
    Membro LHB_LOVE's Avatar
    Data de Ingresso
    Aug 2015
    Posts
    11
    Thanks Thanks Given 
    19
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Mencionado
    2 Post(s)
    pls upload full database

  8. #158
    Membro Maligor's Avatar
    Data de Ingresso
    Aug 2015
    Posts
    40
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Mencionado
    24 Post(s)
    MEU HUMOR
    Goofy
    @[Somente membros podem ver os links. ] MuOnline.sql esté o DB basta executar ele.

  9. #159
    Membro richardj's Avatar
    Data de Ingresso
    Jul 2015
    Posts
    306
    Thanks Thanks Given 
    5
    Thanks Thanks Received 
    3
    Thanked in
    3 Posts
    Mencionado
    46 Post(s)
    Entao obrigado pelo belo trabalhos de vcs (Mentor,Smiley,Mr.Haziel,InFamous, e a toda equipe) Nesse MS mas eu nao serei capaz de acompanhar mais esse Trabalho de vcs

  10. #160
    Developer C++ InFamous's Avatar


    Data de Ingresso
    Sep 2014
    Posts
    375
    Thanks Thanks Given 
    152
    Thanks Thanks Received 
    840
    Thanked in
    47 Posts
    Mencionado
    109 Post(s)
    MEU HUMOR
    Devilish
    País
    Brazil
    @[Somente membros podem ver os links. ] porque meu jovem ?

    Gostaria de ressaltar que se necessário serão liberado apenas correções de bug críticos que impeça a jogabilidade do mesmo.
    Last edited by InFamous; 12/09/2015 at 12:53 AM.

Page 16 of 67 PrimeiroPrimeiro ... 614151617182666 ... ÚltimoÚltimo

Permissões de Postagem

  • Você não pode iniciar novos tópicos
  • You may not post Resposta(s)
  • Você não pode enviar anexos
  • Você não pode editar suas mensagens
  •  
Sobre nós
Somos uma comunidade em atividade a 8 anos que aborda assuntos relacionados a games em geral, principalmente games MMORPG. e que busca sempre ajudar os membros através de conteúdos, tutoriais e suporte...
Nossos anunciantes
Hinetworks
VelozHost
InovHost
Rede Sociais