Olá meu multiserver.exe não andam tenho VPS SO: Windows 2008 Server R2 64 bits ...... não abra nem tente abrir alguém pode me ajudar com este problema
Printable View
Olá meu multiserver.exe não andam tenho VPS SO: Windows 2008 Server R2 64 bits ...... não abra nem tente abrir alguém pode me ajudar com este problema
Oi amigo, sou novo aqui, estava usando esse servidor que por sinal, é otimo, mais gostaria de saber como eu posso desabilitar o commando Autoadd off, ele ta causando crash =/ obgCitação:
Originally Posted by SmileY [Only registered and activated users can see links. Click Here To Register...]
Va em CommandManager e mude o nome tipo assim
<command id="49" access="0" minlevel="0" minreset="0" pricetype="0" price="0" premium="0">/autoaddasdasd</command>
e teste veja se assim resolve
funcionou perfeitamente! muito obrigado mesmo!Citação:
Originally Posted by richardj [Only registered and activated users can see links. Click Here To Register...]
um multiserver rodando em Windows 2008 Server R2 64 bits?
MultiServer Always random get error,Crash ...>> member delay connect
@[Only registered and activated users can see links. Click Here To Register...],estamos verificando já, foram feitas algumas modificações, aguardando só pra ver se vai da erro, assim que estiver ok, aviso aqui.
Citação:
Originally Posted by jardhost [Only registered and activated users can see links. Click Here To Register...]
qual a senha?
After ~8 hours online with around ~100 players online Multiserver give this error:
[18:11:10] [DataServer] (653)WSASend(2) failed with error [c1][17] 10038 192.168.1.253
[18:11:10] [DataServer] error-L1 : CloseClient INVALID_SOCKET
[18:11:10] [DataServer] (653)WSASend(4) failed with error [c1][17] 10038 192.168.1.253
[18:11:10] [DataServer] error-L1 : CloseClient INVALID_SOCKET
[18:11:10] [DataServer] (653)WSASend(2) failed with error [c1][1] 10038 192.168.1.253
[18:11:10] [DataServer] error-L1 : CloseClient INVALID_SOCKET
[18:11:10] [DataServer] (653)WSASend(4) failed with error [c1][1] 10038 192.168.1.253
[18:11:10] [DataServer] error-L1 : CloseClient INVALID_SOCKET
Gameserver : message dataserver dis connect to gs
sql server 2008r2
cpu intel xeon e3 load ~70%
Someone with this problem?
@[Only registered and activated users can see links. Click Here To Register...], 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