Ir ao conteúdo
  • Cadastre-se

eufmartins

Membro Pleno
  • Posts

    32
  • Cadastrado em

  • Última visita

Reputação

1
  1. bom dia, estou com um servidor de jogo onde tem uma sub-tabela com nome de usuario onde consigo colocar os créditos e o tempo da conta nessa tabela. com o backup em maos de um outro servidor se eu adicionar uma nova linha pela proprio sql não surge efeito algum, mas se eu editar a linha de um usuario ja cadastrado eu consigo ter os creditos e o tempo numa boa. alguém pode me ajudar a refazer essa tabela apenas com as informações de idusuario, login, coins, timer? obs: acho que não funciona adicionando uma nova linha manual porque tinha alguma ligação do painel de cadastro com essa db e ja jogava direto as infos pra essa linha. obs2: a ideia é só fazer funcionar o coins e timer na id do usuario. vou deixar a tabela completa, mas só preciso da [dbo.usuario] obrigado! use [master] go /****** object: database [painel_net] script date: 01/03/2020 07:52:24 ******/ create database [painel_net] containment = none on primary ( name = n'painel_net', filename = n'd:\program files\microsoft sql server\mssql12.sqlexpress\mssql\data\painel_net.mdf' , size = 4288kb , maxsize = unlimited, filegrowth = 1024kb ) log on ( name = n'painel_net_log', filename = n'd:\program files\microsoft sql server\mssql12.sqlexpress\mssql\data\painel_net_log.ldf' , size = 832kb , maxsize = 2048gb , filegrowth = 10%) go alter database [painel_net] set compatibility_level = 120 go if (1 = fulltextserviceproperty('isfulltextinstalled')) begin exec [painel_net].[dbo].[sp_fulltext_database] @action = 'enable' end go alter database [painel_net] set ansi_null_default off go alter database [painel_net] set ansi_nulls off go alter database [painel_net] set ansi_padding off go alter database [painel_net] set ansi_warnings off go alter database [painel_net] set arithabort off go alter database [painel_net] set auto_close on go alter database [painel_net] set auto_shrink off go alter database [painel_net] set auto_update_statistics on go alter database [painel_net] set cursor_close_on_commit off go alter database [painel_net] set cursor_default global go alter database [painel_net] set concat_null_yields_null off go alter database [painel_net] set numeric_roundabort off go alter database [painel_net] set quoted_identifier off go alter database [painel_net] set recursive_triggers off go alter database [painel_net] set disable_broker go alter database [painel_net] set auto_update_statistics_async off go alter database [painel_net] set date_correlation_optimization off go alter database [painel_net] set trustworthy off go alter database [painel_net] set allow_snapshot_isolation off go alter database [painel_net] set parameterization simple go alter database [painel_net] set read_committed_snapshot off go alter database [painel_net] set honor_broker_priority off go alter database [painel_net] set recovery simple go alter database [painel_net] set multi_user go alter database [painel_net] set page_verify checksum go alter database [painel_net] set db_chaining off go alter database [painel_net] set filestream( non_transacted_access = off ) go alter database [painel_net] set target_recovery_time = 0 seconds go alter database [painel_net] set delayed_durability = disabled go use [painel_net] go /****** object: user [pt] script date: 01/03/2020 07:52:24 ******/ create user [pt] without login with default_schema=[dbo] go alter role [db_owner] add member [pt] go /****** object: table [dbo].[carrinho] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[carrinho]( [idcarrinho] [int] identity(1,1) not null, [iditem] [int] not null, [login] [nvarchar](100) not null, [datacarrinho] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idcarrinho] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[carrinhopersonalizado] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[carrinhopersonalizado]( [idcarrinhopersonalizado] [int] identity(1,1) not null, [idcarrinho] [int] not null, [login] [varchar](20) not null, [aging] [int] not null, [nomepersonalizado] [varchar](50) not null, [datacarrinho] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idcarrinhopersonalizado] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[categoria] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[categoria]( [idcategoria] [int] identity(1,1) not null, [nome] [nvarchar](100) not null, [sigla] [nvarchar](200) not null, [indsit] [int] not null, primary key clustered ( [idcategoria] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[configuração] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[configuração]( [idconfiguracao] [int] identity(1,1) not null, [tipofiles] [int] not null, [nomeservidor] [nvarchar](50) not null, [caminhoservidor] [nvarchar](4000) not null, [levelcap] [int] not null, [levelinicial] [int] not null, [alterarnickname] [int] not null, [alterarclasse] [int] not null, [alterarlevel] [int] not null, [alterarleveltimer] [int] not null, [cadastrocomemail] [bit] not null, [smtpservidor] [nvarchar](100) null, [smtpautenticacao] [bit] null, [smtpusuario] [nvarchar](100) null, [smtpsenha] [nvarchar](100) null, [smtpporta] [int] null, [clienteidmercadopago] [nvarchar](200) null, [clientesecretomercadopago] [nvarchar](200) null, [keymercadopago] [nvarchar](500) null, [tokenmercadopago] [nvarchar](1000) null, [xcreditos] [int] not null, [clancontent] [varchar](max) null, [caminhoclancontent] [varchar](max) null, [urlpainel] [varchar](max) not null, [cadastrarconvite] [int] not null, [creditosconvite] [int] not null, [habilitartransferir] [int] not null, [habilitarskill] [int] not null, [habilitarstatus] [int] not null, [habilitarcriacaopersonagem] [int] not null, [habilitartrocanickname] [int] not null, [habilitartrocaclasse] [int] not null, [habilitarrecriar] [int] not null, [habilitarcompralevel] [int] not null, [habilitarexcluir] [int] not null, [maxagingcarrinho] [int] not null, [valorpersonalizarnomecoins] [int] not null, [valorpersonalizarnometimer] [int] not null, [valorcadaagingcarrinhocoins] [int] not null, [valorcadaagingcarrinhotimer] [int] not null, [utiliza_cadastro_ipb_forum] [int] not null, [token_ipb_forum] [varchar](max) not null, [link_api_ipb_forum] [varchar](max) not null, primary key clustered ( [idconfiguracao] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] textimage_on [primary] go set ansi_padding off go /****** object: table [dbo].[convidados] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[convidados]( [idconvidados] [int] identity(1,1) not null, [codigo] [nvarchar](100) not null, [login] [nvarchar](100) not null, [contacriada] [tinyint] not null, [ip] [nvarchar](100) not null, [data] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idconvidados] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[convite] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[convite]( [idconvite] [int] identity(1,1) not null, [login] [nvarchar](100) not null, [codigo] [nvarchar](100) not null, [data] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idconvite] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[doacao] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[doacao]( [iddoacao] [int] identity(1,1) not null, [login] [nvarchar](50) not null, [nome] [nvarchar](100) not null, [cpf] [nvarchar](20) not null, [email] [nvarchar](100) not null, [id] [nvarchar](100) null, [token] [nvarchar](500) null, [bandeira] [nvarchar](50) null, [emissor] [nvarchar](100) null, [parcelas] [int] null, [valorpago] [real] null, [valor] [real] not null, [finaldigitos] [nvarchar](10) null, [codigobarras] [nvarchar](200) null, [url] [nvarchar](1000) null, [codigo] [nvarchar](100) null, [status] [nvarchar](50) not null, [datacompra] [smalldatetime] not null, [indsit] [int] not null ) on [primary] go /****** object: table [dbo].[emailpermitido] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[emailpermitido]( [idemailpermitido] [int] identity(1,1) not null, [email] [nvarchar](100) not null, primary key clustered ( [idemailpermitido] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[extrato] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[extrato]( [idextrato] [int] identity(1,1) not null, [iditem] [int] not null, [login] [nvarchar](100) not null, [personagem] [nvarchar](100) not null, [descricao] [nvarchar](1000) not null, [datacompra] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idextrato] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[gamemaster] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[gamemaster]( [idgamemaster] [int] identity(1,1) not null, [idpermissao] [int] not null, [nome de usuário] [varchar](20) not null, [datacadastro] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idgamemaster] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[horariomensagem] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[horariomensagem]( [idhorariomensagem] [int] identity(1,1) not null, [turno] [varchar](20) not null, [horainicial] [int] not null, [horafinal] [int] not null, [indsit] [int] not null, primary key clustered ( [idhorariomensagem] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[htmlemail] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[htmlemail]( [idhtmlemail] [int] identity(1,1) not null, [html] [nvarchar](max) not null, [tipo] [int] not null, [indsit] [int] not null, primary key clustered ( [idhtmlemail] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] textimage_on [primary] go /****** object: table [dbo].[interacaomensagem] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[interacaomensagem]( [idinteracaomensagem] [int] identity(1,1) not null, [idmensagem] [int] not null, [resposta] [varchar](max) not null, [dataresposta] [smalldatetime] not null, [indsit] [int] not null ) on [primary] textimage_on [primary] go set ansi_padding off go /****** object: table [dbo].[item] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[item]( [iditem] [int] identity(1,1) not null, [nome] [nvarchar](200) not null, [codigo] [nvarchar](50) not null, [idcategoria] [int] not null, [valorcoins] [int] not null, [valortimer] [int] not null, [desconto] [int] not null, [datacadastro] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [iditem] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[itemmaster] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[itemmaster]( [iditemmaster] [int] identity(1,1) not null, [nome] [nvarchar](200) not null, [codigo] [nvarchar](50) not null, [valorcreditos] [int] not null, [datacadastro] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [iditemmaster] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[itemshop] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[itemshop]( [subtag] [int] null, [name] [varchar](max) null, [codeit] [varchar](max) null, [coin] [int] null ) on [primary] textimage_on [primary] go set ansi_padding off go /****** object: table [dbo].[itemshopt] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[itemshopt]( [subtag] [int] null, [name] [varchar](max) null, [codeit] [varchar](max) null, [price] [int] null ) on [primary] textimage_on [primary] go set ansi_padding off go /****** object: table [dbo].[logitemmaster] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[logitemmaster]( [idlogitemmaster] [int] identity(1,1) not null, [login] [varchar](20) not null, [iditemmaster] [int] not null, [datacompra] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idlogitemmaster] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[logtransferencia] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[logtransferencia]( [idlogtransferencia] [int] identity(1,1) not null, [logintransferiu] [varchar](20) not null, [loginrecebeu] [varchar](20) not null, [personagem] [varchar](20) not null, [creditos] [int] not null, [datatransferencia] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idlogtransferencia] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[logtrocadesenha] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[logtrocadesenha]( [idlogtrocadesenha] [int] identity(1,1) not null, [login] [varchar](20) not null, [senhaantiga] [varchar](20) not null, [senhanova] [varchar](20) not null, [datatrocasenha] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idlogtrocadesenha] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[mensagem] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[mensagem]( [idmensagem] [int] identity(1,1) not null, [idgamemaster] [int] not null, [idsetor] [int] not null, [idstatusmensagem] [int] not null, [idprioridademensagem] [int] not null, [datainicio] [smalldatetime] not null, [datafim] [smalldatetime] not null, [login] [varchar](20) not null, [nome de usuário] [varchar](20) not null, [titulo] [varchar](100) not null, [descricao] [varchar](max) not null, [datamensagem] [smalldatetime] not null, [indsit] [int] not null ) on [primary] textimage_on [primary] go set ansi_padding off go /****** object: table [dbo].[noticia] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[noticia]( [idnoticia] [int] identity(1,1) not null, [titulo] [nvarchar](100) not null, [descricao] [nvarchar](4000) not null, [link] [varchar](max) not null, [datanoticia] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idnoticia] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] textimage_on [primary] go set ansi_padding off go /****** object: table [dbo].[permissao] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[permissao]( [idpermissao] [int] identity(1,1) not null, [nome] [nvarchar](100) not null, [status] [int] not null, primary key clustered ( [idpermissao] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[prioridademensagem] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[prioridademensagem]( [idprioridademensagem] [int] identity(1,1) not null, [prioridade] [varchar](100) not null, [indsit] [int] not null, primary key clustered ( [idprioridademensagem] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[quest] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[quest]( [idquest] [int] identity(1,1) not null, [titulo] [nvarchar](200) not null, [descricao] [nvarchar](4000) not null, [itemquest] [nvarchar](1000) not null, [quantidadepontoscadaitem] [nvarchar](500) not null, [quantidadetotalpontos] [int] not null, [premiacao] [nvarchar](500) not null, [escolheritem] [int] not null, [indsit] [int] not null, primary key clustered ( [idquest] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[questparticipantes] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[questparticipantes]( [idquestparticipantes] [int] identity(1,1) not null, [idquest] [int] not null, [login] [nvarchar](100) not null, [personagem] [nvarchar](100) not null, [statusquest] [int] not null, [pontuacao] [int] not null, [premiado] [int] not null, [dataquest] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idquestparticipantes] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[questpontuacao] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go create table [dbo].[questpontuacao]( [idquestpontuacao] [int] identity(1,1) not null, [idquest] [int] not null, [login] [nvarchar](100) not null, [personagem] [nvarchar](100) not null, [itemquest] [nvarchar](100) not null, [datapontuacao] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idquestpontuacao] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go /****** object: table [dbo].[setor] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[setor]( [idsetor] [int] identity(1,1) not null, [nome] [varchar](50) not null, [indsit] [int] not null, primary key clustered ( [idsetor] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[statusmensagem] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[statusmensagem]( [idstatusmensagem] [int] identity(1,1) not null, [status] [varchar](50) not null, [indsit] [int] not null, primary key clustered ( [idstatusmensagem] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go /****** object: table [dbo].[usuario] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[usuario]( [idusuario] [int] identity(1,1) not null, [nome] [nvarchar](100) not null, [email] [nvarchar](200) not null, [login] [nvarchar](20) not null, [idpermissao] [int] not null, [coins] [bigint] not null, [timer] [bigint] not null, [datacadastro] [smalldatetime] not null, [status] [int] not null, [codigo] [varchar](max) not null, [idusuarioipbforum] [int] null, primary key clustered ( [idusuario] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] textimage_on [primary] go set ansi_padding off go /****** object: table [dbo].[usuariomaster] script date: 01/03/2020 07:52:24 ******/ set ansi_nulls on go set quoted_identifier on go set ansi_padding on go create table [dbo].[usuariomaster]( [idusuariomaster] [int] identity(1,1) not null, [login] [varchar](20) not null, [idgamemaster] [int] not null, [coins] [int] not null, [datacadastro] [smalldatetime] not null, [indsit] [int] not null, primary key clustered ( [idusuariomaster] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go set ansi_padding off go alter table [dbo].[carrinho] with check add foreign key([iditem]) references [dbo].[item] ([iditem]) go alter table [dbo].[extrato] with check add foreign key([iditem]) references [dbo].[item] ([iditem]) go alter table [dbo].[item] with check add foreign key([idcategoria]) references [dbo].[categoria] ([idcategoria]) go alter table [dbo].[questparticipantes] with check add foreign key([idquest]) references [dbo].[quest] ([idquest]) go alter table [dbo].[questpontuacao] with check add foreign key([idquest]) references [dbo].[quest] ([idquest]) go alter table [dbo].[usuario] with check add foreign key([idpermissao]) references [dbo].[permissao] ([idpermissao]) go alter table [dbo].[usuario] with check add foreign key([idpermissao]) references [dbo].[permissao] ([idpermissao]) go use [master] go alter database [painel_net] set read_write go
  2. @lnpott o monitor ultrawide foi com adaptador HDMI > DP dai limita em 1920x1080 se n limitasse ia ser uma boa ja q outro monitor funciona com VGA > HDMI
  3. @lnpott testei e funcionou, porém limita em 1920x1080, consegui abrir uma configuração personalizada pra 2560x1080 mas as letras ficaram bem estranhas adicionado 1 minuto depois @simforoso entendo, mas o problema nisso tudo é que funcionou durante um tempo e agora não mais, mesmo trocando o cabo e adaptador é isso que tá me deixando com raiva porque parou do nada.
  4. Possuo uma GTX 1050 Ti (VCGGTX1050T4XGPB-OC) eu uso 2 monitores, LG Ultrawide 25" 2560x1080 (25UM58) na conexão HDMI e outro monitor OAC 18,5" 1366x768 na conexão VGA com adaptador DisplayPort. Consegui usar esses 2 monitores por um tempo (em torno de uns 2 meses), após passar esse tempo ao iniciar algum jogo a tela de VGA começava a piscar até ela desligar por completa mas ao sair do jogo voltava ao normal (https://youtu.be/lmThOEeezwk / nesse link da pra ver claramente ele funcionando normalmente após fechar o jogo) e depois de tanto acontecer isso ele desligou de vez. Troquei de cabo VGA, troquei o adaptador DisplayPort e o problema continua, mas se eu fizer o monitor VGA com adaptador HDMI ele funciona numa boa. A questão é... Porque meu DisplayPort parou de aceitar meu monitor VGA do nada? sempre funcionou normal e agora parou de vez. Já fiz a formatação do windows, já re-instalei o driver, já removi o driver atual e coloquei o driver da época que funcionava perfeitamente os dois monitores... não sei mais o que fazer.
  5. até agora não descobri esse problema, o mais estranho é só quando estou jogando. já formatei etc e nada de voltar como era antes onde funcionava normalmente.
  6. mas aí que mora o problema, ele sempre funcionou normalmente e agora tá nessa de umas 2 semanas pra cá. eu colocava a resolução máxima de cada monitor e agr do nada ta nessa.
  7. Possuo 2 monitores em meu PC, depois que estou cerca de uns 5 minutos em um jogo o segundo monitor fica desligando e ligando por um tempo até ele desligar completamente, após eu sair do jogo e aguardar alguns segundos e volta ao normal. Esse problema nunca tinha acontecido antes e começou a aparecer de 1 a 2 semanas pra cá. Monitor 1 - LG Ultrawide (25UM58) Monitor 2 - Monitor AOC (E970SWNL) Gravei um pouco do problema. Fortnite, LOL, qualquer jogo o problema é o mesmo.
  8. É um jato de ar sendo q é bem fraco, n agrediu as peças, elas estavam bem empoeirada
  9. Hoje pela manhã desliguei o PC, desconectei tudo do PC atrás (monitor, teclado, mouse, internet, energia). Apenas joguei jato de ar dentro do gabinete e ao ligar novamente os cabos novamente o monitor não da video e mouse e teclado não acendem. O que pode ser?
  10. Tipo, antigamente meu Fortnite rodava tudo no alto, hoje em dia roda em 60 FPS mas percebo que da umas travadas. Além disso queria deixar ele um pouco mais rápido e eu colocando esse R5 1600 me ajudaria nisso?
  11. @grievous B350M PRO-VH Plus + Ryzen 1600 é bom?
  12. Ryzen 1600 + PRIME A320M-A é uma boa?
  13. pior que não sobra n kkkkk https://www.boadica.com.br/produtos/p149121 https://www.boadica.com.br/produtos/p150108 só serve essa placa-mãe?
  14. Melhoria, tenho 1.100 Mudae para i5 7400 + 8 GB totalizando 12 gb?

Sobre o Clube do Hardware

No ar desde 1996, o Clube do Hardware é uma das maiores, mais antigas e mais respeitadas comunidades sobre tecnologia do Brasil. Leia mais

Direitos autorais

Não permitimos a cópia ou reprodução do conteúdo do nosso site, fórum, newsletters e redes sociais, mesmo citando-se a fonte. Leia mais

×
×
  • Criar novo...