Jump to content

Royr

Members
  • Posts

    90
  • Joined

  • Days Won

    1

Everything posted by Royr

  1. Just update your EMULATOR client side has nothing to do with it, because client sending it via server-side. That's all and it'll resolve your issue. You posted in a wrong Forum Area.
  2. Looks like your using an Old-Emulator?
  3. Just wanna say thank you for the released! it reminds me of my childhood back in 80's ? Small Correction from your Guide.txt npcidentity.lub JT_TOUPEIRA = 10500, READ-ME
  4. Tested guild_vs2 and guild_vs3 Works fine no issue at all. The DEFAULT setting is always traps_setting: 0
  5. Make sure you do the: @reloadbattleconf To reload the changes being modified.
  6. Which means you configure incorrectly. Did you open 3 ports? if not: Run this command: firewall-cmd --permanent --add-port=6900/tcp firewall-cmd --permanent --add-port=6121/tcp firewall-cmd --permanent --add-port=5121/tcp Make sure you put your proper IP_VIRTUAL (Oracle Virtual Box) Example: 10.0.2.2 char_athena.conf map_athena.conf
  7. You can actually use Tortoise SVN. It's easy. https://i.imgur.com/fCjbm8N.mp4
  8. prontera.gat, 150, 100, 4 script Healer#1 1_M_ORIENT01,{ mes "Test"; close; OnInit: while(1) { showscript "Healer", getnpcid(0); sleep 1000; } end; } I used this on my High-Rate server however it's colored ?
  9. Can't say anything 5/5 stars! Thank you Functor.
  10. One of the best MOBA-RO i've played it was a Thai Server very unique and nice gameplay it was really fun.
  11. Looking forward to the next couple of months. ?
  12. Royr

    Guild

    Google is always your best-friend. READ AND READ. https://herc.ws/board/topic/18819-castle-guild-member-limit/
  13. Delete your data/schemas/ AND old cp tables under your Database and reinstall your FluxCP again. PS: never happen this issue before when I installed both Debian and CentOS distros probably you messed up the configurations. ?
  14. The issue looks like 'username' not giving permission. Is your username user pointing to host '%'? Note: Also make sure the username (user) giving ALL PRIVILEGES from the database.
  15. Oppps, try this: Locate: src/map.hpp Find: #define MAX_EVENTQUEUE 2 Replaced: #define MAX_EVENTQUEUE 1000 Recompile your server. ./configure && make clean && make server It should work now!
  16. Locate: conf/script_athena.conf Find: check_gotocount: 2048 Replaced: check_gotocount: 655360 Restart your server.
  17. Any particular errors? Maybe give this a try: Disable SELinux: nano /etc/sysconfig/selinux SELinux=enforcing to SELinux=disabled After the changes Reboot your VPS. Note: Make sure your phpMyAdmin user host is pointing to '%' instead of 'localhost'
  18. Read carefully: bonus bSpeedRate,n; Movement speed + n% (only the highest among all is applied, won't be stacked with SC_SPEEDUP0, SC_SPEEDUP1) bonus bSpeedAddRate,n; Movement speed + n%
  19. Which means you must define the missing part of refreshdelay_tick. Anyways try this one: usedelay_tick.diff Note: If you know how to use this you can use this in any commands to give them delay of using.
  20. Please try to execute this. chmod -R 777 /var/www/html/FluxCP/data/logs chown -R apache:apache /var/www/html/FluxCP/data/logs chmod -R 777 /var/www/html/FluxCP/data/itemshop chown -R apache:apache /var/www/html/FluxCP/data/itemshop chmod -R 777 /var/www/html/FluxCP/data/tmp chown -R apache:apache /var/www/html/FluxCP/data/tmp
  21. Doesn't make any sense. the person asking for :
  22. Try this added with Link Item
  23. You posted in a wrong Category. it should be in "Source Request" Didn't test in-game. i just checked from the repo it should be simple. Locate / Find: src/map/npc.cpp Find: case NPCTYPE_POINTSHOP: (Line: 1834) case NPCTYPE_POINTSHOP: if (display) { char output[CHAT_SIZE_MAX]; memset(output, '\0', sizeof(output)); sprintf(output, msg_txt(sd, 715), nd->u.shop.pointshop_str); // Point Shop List: '%s' clif_broadcast(&sd->bl, output, strlen(output) + 1, BC_BLUE,SELF); } cost[0] = static_cast<int>(pc_readreg2(sd, nd->u.shop.pointshop_str)); break; } } Replaced: - (REMOVED) + (ADD) - sprintf(output, msg_txt(sd, 715), nd->u.shop.pointshop_str); // Point Shop List: '%s' + //sprintf(output, msg_txt(sd, 715), nd->u.shop.pointshop_str); // Point Shop List: '%s' Final Output: case NPCTYPE_POINTSHOP: if (display) { char output[CHAT_SIZE_MAX]; memset(output, '\0', sizeof(output)); //sprintf(output, msg_txt(sd, 715), nd->u.shop.pointshop_str); // Point Shop List: '%s' clif_broadcast(&sd->bl, output, strlen(output) + 1, BC_BLUE,SELF); } cost[0] = static_cast<int>(pc_readreg2(sd, nd->u.shop.pointshop_str)); break; } } Recompile your "Emulator" ./configure && make clean && make server
  24. Makes me confused why the mapflag nowarpto didn't workout. (it should be) A little trick would be via scripting. Try my script: Restriction
  25. https://github.com/rathena/rathena/blob/master/src/config/packets.hpp#L16
×
×
  • Create New...