Ir para conteúdo
Faça parte da equipe! (2024) ×

Todas Atividades

Atualizada automaticamente

  1. Recentemente
  2. Ontem
  3. [hide][Hidden Content]]
  4. Tópico Resolvido! Ficamos felizes que seu tópico tenha sido resolvido!🙂 Devido a isso, estaremos fechando este tópico... Atenciosamente,Web Cheats
  5. The server is open for one month and has a decent amount of players, 50~100 online at any time, you're welcome to join
  6. Entendi. Verifique no site oficial da VanDyke Software os requisitos específicos de hardware e software.
  7. Esse WYD ADM só quer dinheiro, toda semana tem promoção de cash.
  8. I am glad to know that my help was useful. Enjoy the server; it is very good.
  9. Thanks to you, it helped me solve the problem. It was a useful time and I gained more knowledge while studying. Thank you for your time.
  10. You mentioned that in UTF-8, 'Í' is represented by two bytes: 0xC3 and 0x8D. However, in ISO-8859-1 (Latin-1), 'Í' is represented by a single byte: 0xCD. To adjust your code for a UTF-8 encoded environment, you need to handle the two-byte sequence representing 'Í'. Updated Code for UTF-8: #include <stdio.h> #include <string.h> int main() { char tmp1[] = "Íexample"; // Example string with 'Í' char tmp2[] = "another example"; int len = strlen(tmp1); if (len > 8 && !(tmp1[0] == '\xC3' && tmp1[1] == '\x8D')) { fprintf(stdout, "\t%s\t%s\n", tmp1, tmp2); } else if (!(tmp1[0] == '\xC3' && tmp1[1] == '\x8D')) { fprintf(stdout, "\t%s\t\t%s\n", tmp1, tmp2); } return 0; } Explanation: Two-Byte Check: In UTF-8, the character 'Í' is represented by two bytes: 0xC3 and 0x8D. Therefore, you need to check both consecutive bytes in tmp1. Condition Update: We replace the check tmp1[0] != '\xCD' with a double-check: (tmp1[0] == '\xC3' && tmp1[1] == '\x8D') to ensure we are correctly comparing the character 'Í' in UTF-8. Code Update: We adjust the if and else if conditions to check for the byte sequence representing 'Í' in UTF-8. Summary: Consistent Encoding: Ensure that your source code files are saved with UTF-8 encoding. Check Both Bytes: When dealing with UTF-8 encoded characters that use multiple bytes, always check the entire byte sequence. By following these steps, your code should work correctly in a UTF-8 encoded environment.
  11. Thank you, senior. I don't know if I'm asking too many questions and causing harm to people who are trying to get the information they need from comments. Can I ask one more question? My senior said, "The regional settings of the operating system or compiler may affect character interpretation. Make sure the regional settings (locale) are consistent between environments." From the information I got, in UTF-8 'Í' is represented by two bytes: 0xC3 0x8D. However, in ISO-8859-1 (Latin-1), 'Í' is represented as the single byte 0xCD. Then, if I want to use the code in a UTF-8 encoding environment, can I change it as follows? if (len > 8 && tmp1[0] != '\xCD') fprintf(fp, "\t%s\t%s\n", tmp1, tmp2); else if (tmp1[0] != '\xCD') fprintf(fp, "\t%s\t\t%s\n", tmp1, tmp2);
  12. Nao é o jogo e sim essa ferramenta SecureCRT que nao abre la em casa kkkkkkk Minha placa de video é uma 4060Ti 16Gb e 32gb de ram kkkkkkk Mas vou ver com calma o que pode ser.
  13. Top.. pena que meu pc não suporta o jogo kkk, não tenho placa de vídeo. Mais valos lá, depois posta o erro que deu na sua casa, leva em consideração a variação de ambiente, tipo, sistema operacional, rede , ate mesmo o roteador. portas liberadas. o seu computador está atendendo um requisito que o seu em casa não está atendendo. faça uma comparação entre as 2 maquinas. em alguns caso, ate mesmo memoria ram.
  14. The character 'Í' may be interpreted differently depending on the character encoding (e.g., UTF-8, ISO-8859-1, etc.) used by the compiler or development environment. Ensure that the source code files are being saved with the same encoding in both environments (Portuguese and English). The regional settings of the operating system or compiler can affect the interpretation of characters. Check that the regional settings (locale) are consistent between the environments.
  15. Oi Pessoal, tava um tempo pra postar isso que achei por ai na internet, porem nao conseguir ligar la em casa (vou explicar onde eu fiquei travado) São os arquivos vazados do jogo Saint Seya (que a ongame ja distribuiu tempos atras por exemplo), e que hoje outras distribuidoras ainda mantem ativo (apenas gringa pelo que pude notar) Todos os arquivos estão em CHINES, inclusive o client, baixei um client americano pra testar se funcionar, mas como nao cheguei a ligar o server nem deu pra testar ainda. Se alguem conseguir manda print aqui >>>>> VIDEO TUTORIAL NO FINAL DA POSTAGEM <<<<< Print dos arquivos O link que tenho está com senha, mas eu descompactei tudo e o antivurs nao acusou nada, deve ser por segurança dos arquivos vazados pra nao circular "tão" livremente assim (posso estar hospedando em outro lugar sem senha. Voces vão precisar do HJSPLIT pois os arquivos estão divididos em varias partes Vão clicar em JOIN e depois abrir o arquivo 001 zipado Depois disso ele vai juntar todos os arquivos num zip só, e apos extrair terá todos os arquivos necessários Voces vão instatar primeiro o VMWARE que tem la e inserir um serial key pra ativar NOTA: Será necessário ativar a AMD-V na bio da sua placa mae, segue abaixo 2 videos de como fazer isso How To Enable AMD-V In BIOS, Fix Host supports AMD-V, but AMD-V is disabled Mesmo tutorial so que na placa mae Aorus Elite (que foi o meu caso) Com o VMWARE instalado e devidamente ativado, terá uma pasta que o arquivo da imagem do servidor pra abrir ( no video tutorial mostra) E agora vem a parte que...la em casa esse programa NAO ABRE, mas aqui no trabalho abriu normal (quando eu voltar pra casa posto uma imagem do erro) É este programa, esse print é daqui do trabalho que abriu normal, mas em casa estranhamente nao abre, depois mostro, por isso que nao deu pra eu mesmo fazer meu video tutorial, tive que pegar de outros. AGORA FIQUEM COM O VIDEO TUTORIAL 1: Esse video nao é meu, é de um outro brasileiro abrindo o server, mas é bem facil de entender o que está sendo feito Mesmo tutorial só que em CHINES que está dentro dos arquivos (coloquei no meu canal), mas da pra entender de boaça! DOWNLOAD [Hidden Content] Obrigado pessoal!! Forte abraços!!!!
  16. I am studying by compiling the source code linked by senior Micael Silverio. Senior, do you know a solution to the question below? I have a question. if (len > 8 && tmp1[0] != 'Í') fprintf(fp, “\t%s\t%s\n”, &tmp1, &tmp2); else if(tmp1[0] != 'Í') fprintf(fp, “\t%s\t\t%s\n”, &tmp1, &tmp2); Is 'Í' used as it is? Or is 'i' broken by the language change?
  17. Hey how's it going? Try this version of the source code. It's an earlier one than the one on github, I think it should work. [Hidden Content]
  18. O drop da Lan N é dificil memso, sobre o bug sempre que tiver so me enviar discord ou zap que vou tratar. Vou verificar oque está causando isso. Bom dia Amigo, Qual o problema encontrado? O site até o momento não apresenta nada de errado, o visual nada mais que a identidade do que estamos tentando propor. Se for apenas para criticar o server sem querer ajudar em melhoria você pode ir para aqueles que duram apenas 1 mês ou até menos.
  19. Atenção pra galera que for jogar essa bomba aí, servidor do Elon Peixoto, caloteiro da comunidade.
  20. [Hidden Content] Telegram Channel: @databasefromstorm My telegram: @BrowzData
  1. Mais Resultados
×
×
  • Criar Novo...

Informação Importante

Nós fazemos uso de cookies no seu dispositivo para ajudar a tornar este site melhor. Você pode ajustar suas configurações de cookies , caso contrário, vamos supor que você está bem para continuar.