Jump to content

Toda la actividad

Este flujo se autoactualiza

  1. Hoy
  2. Duda. los datos que se supone que tienen las credenciales de BSD, Mysql etc. alguien los tienes?
  3. Ayer
  4. Pondrás algo mala para que te salga eso, ya que yo hago de todo en exel y nunca me sale eso xd
  5. Pequeña duda, he seguido todos los pasos. pero al poner la ip en los files y compilar no me abre el cliente.
  6. Al editar con Excel y luego ir a poner el .txt en los serverfiles y te lanzaba Connection refused, ahí debes revisar el syserr de la db y te dice la línea del error. El problema se debe a los caracteres coreanos, en la columna name, que no se lograba separar el name con el type con un tabulador sino con un espacio. Solo es ir a esa línea y cambiar el espacio por el tabulador.
  7. Lo gracioso del asunto es que siempre que usaba excel me dañaba los protos, igual nunca revise que detalle podria ser e.e
  8. La semana pasada
  9. Falta password al enlace @Kronixer™
  10. https://drive.google.com/file/d/1vAvCDa0chytBqHfmcAftCGj6FjRiqOY-/view?usp=sharing
  11. Siempre que dudéis de algún programa pasarlo por virustotal. Os lo descargáis en una maquina virtualbox con Windows y lo subís a la plataforma y lo pasara por un scanner. Por otro lado, siempre que tenéis duda podéis darle a reportar el post y será revisado por la administración. Un saludo
  12. Alguien me puede ayudar pk me sale este error al compilar el src Version de FreeBSD: 9.2 GCC: 49
  13. I am facing an error when assembling the root. I cannot open the tool Packmanager.bat
  14. Hello community, I've created a tool to make the experience of editing the mob proto more comfortable. Download: https://ko-fi.com/post/Mob-Proto-Editor-F1F0XL6VV
  15. Hello community, I decided to create a mini function in python for my server that adds the information if the player can drop or not on mobs and stones. @root/uitarget.py (Adapt to your code) if ((player_level > monsterLevel) and abs(player_level-monsterLevel) > 15): self.AppendTextLine("|cffD14646You can't drop items {}.".format("in this metin" if is_stone else "in this monster")) # self.AppendTextLine("Reason: The difference in levels is more than 15.") else: self.AppendTextLine("|cff8cf774You can drop items {}.".format("in this metin" if is_stone else "in this monster"))
  16. Hello community, The values associated with movespeed are BYTE (255) by default, in this short guide I'll teach you how to change them to short (65535). Binary // @Userinterface/Locale_inc.h // Add #define ENABLE_EXTEND_MOVE_SPEED // @Userinterface/Packet.h // Inside these typedef struct typedef struct packet_add_char typedef struct packet_add_char2 typedef struct packet_update_char typedef struct packet_update_char2 // replace this BYTE bMovingSpeed; // With this #ifdef ENABLE_EXTEND_MOVE_SPEED short bMovingSpeed; #else BYTE bMovingSpeed; #endif Source // @common/service.h // Add #define ENABLE_EXTEND_MOVE_SPEED // @game/packet.h // Inside these typedef struct typedef struct packet_add_char typedef struct packet_add_char2 typedef struct packet_update_char typedef struct packet_update_char2 // replace this BYTE bMovingSpeed; // With this #ifdef ENABLE_EXTEND_MOVE_SPEED short bMovingSpeed; #else BYTE bMovingSpeed; #endif
  17. Hello community, In this guide I'm going to teach you how to install nginx + php 8.1 on freebsd. Step by Step # Install the packages pkg install -y php81 nginx pkg install -y php81-extensions php81-mysqli php81-mbstring php81-curl php81-gd # Start the services when starting the operating system sysrc nginx_enable=yes sysrc php_fpm_enable=YES # Start the services service nginx start service php-fpm start # Create the directory /var/www # Replace the server { in: @/usr/local/etc/nginx/nginx.conf server { listen 80; server_name localhost; root /var/www; index index.php index.html index.htm; location / { try_files $uri $uri/ =404; } location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $request_filename; include fastcgi_params; } location ~ /\.ht { deny all; } } # Restart nginx service nginx restart # Done! You can place the web files in the directory: @/var/www
  18. ajaj me imagino hace tiempo no se nada del, o si hablabamos era cada 2 dias de respuesta jejej Toca darle al mapeado es un jaleo pero una vez le tomas ritmo le das con todo!
  19. Ese esta mas o menos desaparecido, yo ando probando cosillas varias como esto del mapeado, es lento crear uno basico y pequeño, si uno esta acostumbrado lo haria en una hora o dos, supongo https://prnt.sc/RWNp_3_Wfag- Aun hay cosas que no tengo claro, toca investigar <.<
  1. Cargar más actividad
×
×
  • Crear nuevo...