-
Posts
16 -
Joined
-
Last visited
About Pandoras
- Birthday November 2
Profile Information
- Github: VCSNDBX
- Discord: Sandbox#4581
Contact Methods
- Website URL
Recent Profile Visitors
701 profile views
Pandoras's Achievements
-
https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L6004-L6020 maybe this can help
- 1 reply
-
- 1
-
-
Extended Vending Error on title name and pressing ok
Pandoras replied to jadedlight's question in Source Support
Provide more info. -
Upgrade your OS
-
[SOLVED]Client update 20151029 game error on char selection
Pandoras replied to jadedlight's question in Client-side Support
Since you updated your client. Have you edit src/config/packets.h, added the packets for your new client and then recompiled? change the client version on clientinfo. You can post what changes you have made. -
This happen to me few days ago. I have no VNC or any kind of viewer installed on my VPS (Using console command). I tried restart/stop the emulator but still failed. So I restarted my server and start rathena again. Maybe multiple Login, Map and Char Server are open and that cause the problem.
-
Adding multiple SQL Values using insert
Pandoras replied to Pandoras's question in Scripting Support
Thank you! -
I'm not sure where to start but how to add multiple lines/value on SQL Insert Into. I want to give rewards to a list of players with 3 different rewards 1 apple, 2 red potions, 30 flywings for example I have a separate table for rewards to insert the items. Here is my code: set [email protected], query_sql("SELECT `account_id` FROM `cp_createlog` WHERE `reg_date` BETWEEN '2017-10-24 00:00:00' AND '2017-10-26 23:59:59'", [email protected]_id); set [email protected]$ = "Testing"; setarray [email protected][0],14532,14592,14001,16682,2751,12210; setarray [email protected][0],3,3,5,1,1,5; for(set .i, 0; .i < getarraysize([email protected]); set .i,.i+1) for(set .j, 0; .j < getarraysize([email protected]); set .j,.j+1) for(set .k, 0; .k < getarraysize([email protected]); set .k,.k+1) set [email protected]$, "( [email protected]_id[.i], '[email protected]$', [email protected][.j], [email protected][.k], 0)"; query_sql("INSERT INTO `event_rewards` ( `account_id`, `event_name`, `id`, `amount`, `value` ) VALUES '"+ [email protected]$ +"' "); the [email protected]$ stands as the value input to the sql insert value. how can i make [email protected]$ output to something this: ( 200000, 'Testing', 14532, 3, 0), ( 200000, 'Testing', 14592, 3, 0), ( 200000, 'Testing', 14001, 5, 0), ( 200001, 'Testing', 14532, 3, 0), ( 200001, 'Testing', 14592, 3, 0), ( 200001, 'Testing', 14001, 5, 0) how can I make this possible?
-
Yes you can edit. Quite not sure if it works under different shape. You can check the files under \texture\À¯ÀúÀÎÅÍÆäÀ̽º\login_interface inside your server grf file.
-
in your inter_athena.conf change 127.0.0.1 to your Public IP/Internal IP.
-
change: 'md->class_' to: 'md->mob_id'
-
I think enchantment are inserted to "option_id0, option_val0, option_parm0 -> option_id4, option_val4, option_parm4". Not sure I never tried enchantment on my server. auction, cart_inventory, guild_storage, inventory, mail, storage table have this. Use Update statement to change them back to 0 value
-
I had this issue before. I just update my g++ to 5.
-
Fatal error ( configure ) Help please
Pandoras replied to SilverSRO's question in Installation Support
Upgrade to Debian 9 or Update you g++ to 5.