-
Posts
90 -
Joined
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Royr
-
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.
-
Looks like your using an Old-Emulator?
-
Quests, Games: Caça Toupeiras / Whack-A-Mole
Royr replied to Hyroshima's topic in Game, Event, Quest Script Releases
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 -
How to: Enabling Traps Visibility at skill conf
Royr replied to Almond Snicker's question in General Support
Tested guild_vs2 and guild_vs3 Works fine no issue at all. The DEFAULT setting is always traps_setting: 0 -
How to: Enabling Traps Visibility at skill conf
Royr replied to Almond Snicker's question in General Support
Make sure you do the: @reloadbattleconf To reload the changes being modified. -
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
-
Who Have rathena r17450? to r17500? old Stable
Royr replied to innocentarms's question in Database Requests
You can actually use Tortoise SVN. It's easy. https://i.imgur.com/fCjbm8N.mp4 -
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
-
Can't say anything 5/5 stars! Thank you Functor.
-
One of the best MOBA-RO i've played it was a Thai Server very unique and nice gameplay it was really fun.
-
Looking forward to the next couple of months.
-
Google is always your best-friend. READ AND READ. https://herc.ws/board/topic/18819-castle-guild-member-limit/
-
FluxCP Centos 7 Error: PDOException with full permissions
Royr replied to Rivers's question in Web Support
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. -
FluxCP Centos 7 Error: PDOException with full permissions
Royr replied to Rivers's question in Web Support
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. -
Exception Details Error: Flux_PermissionError for FLuxCP
Royr replied to Rivers's question in Web Support
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' -
In the rathena emulator, you are not adding up the speeds!
Royr replied to Tdi123's question in Scripting Support
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% -
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.
-
Exception Details Error: Flux_PermissionError for FLuxCP
Royr replied to Rivers's question in Web Support
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 -
Doesn't make any sense. the person asking for :
-
Try this added with Link Item
-
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
-
Makes me confused why the mapflag nowarpto didn't workout. (it should be) A little trick would be via scripting. Try my script: Restriction
-
https://github.com/rathena/rathena/blob/master/src/config/packets.hpp#L16