Leaderboard
Popular Content
Showing content with the highest reputation on 04/12/18 in all areas
-
This morning started as any other day, I wake up, I check my personal emails, I eat breakfast, I check my business emails, I put my boots on then check rAthena emails. This is where this morning differed. Over the last fortnight an astonishing number of chargeback disputes have been filed with Paypal, and a particular dispute that was closed by Paypal this morning in favor of the buyer was the last straw. This particular dispute was for a file that cost $10. The fee for chargeback disputes to the seller when lost is now $20. rAthena is essentially being scammed out of more and more money each month because of these fees and dirty scumbags, and I can no longer justify spending my own money to cover them. And people wonder why it's taking a while for Withdrawals to be processed. Paypal has been removed as a payment method on rAthena. Users who have submitted chargeback disputes have been banned. What does this mean? It means that if you would like to pay for an invoice, you may use your credit/debit card which will be processed by Stripe. Your card details are not saved on our webserver. Since the Stripe module was enabled almost 2 weeks ago, there have been a number of attempted transactions that have been refused by Stripe due to their fraud rules. And we are loving it! If your rAthena account name, address and phone number don't match the cardholder's details, you'll be declined. If you don't put in your CVC (3 digits on the back), you'll be declined. If your rAthena account is less than 20 days old, your transaction will be authorised but placed on hold for manual review. If you're dumb, you'll be banned. How does this affect Withdrawals? Essentially, it doesn't. Your Withdrawal request will still be processed through Paypal via our automated script. To be quite honest, i'm very disappointed with a select area of our community.2 points
-
Honestly I don't get why donations even need a chargeback option. Donations are donations and not a purchase.2 points
-
1 point
-
hmm ... I believe this kind of stuff should be done with source edits .... this is my plugin -> http://herc.ws/board/topic/7127-maintenance-mode/ and napster converted into rathena -> .... wait where is the topic gone ? ... oh wait I seriously thought he already converted into rathena if anyone still interested into converting, the 1.3 patch can still be found in my hercules topic, the patch is still there ( I did the patch just for him ... ) the reason why do source edit is, once the client start, input username and password, will immediately get kick, didn't even get into character selection so hmm ... you guys are interested in making it into script version too ... let's see ... http://upaste.me/45e349607e335125c I don't think there's a way to stop the countdown once it started ...1 point
-
I will not touch cryptocurrency and I have no intention of adding any other forms of payment processing to the forums in the near future.1 point
-
Most of it looks good to me I changed the way some things were formatted but honestly that's probably just my preference. Other than that when you have next; in the message you sent to the player about the server being in maintenance mode actually allows them to bypass the @kick command by having @go or something mapped to and alt+[1-0] key. I've found plenty of scripts with this flaw. I believe sleep2 will persist even if they warp. If that doesn't work use addtimer <ticks>,"NPC::OnLabel"; prontera,150,150,4 script Server Maintenance 73,{ /***********************************/ /**/.npc$ = "[Server Maintenance]"; /**/.gm = 99; //Level GM /**/.user$ = "root"; //root /**/.password = 12345; //Password /**********************************/ mes .npc$; if(getgmlevel() >= .gm) { mes "Hello"+ strcharinfo(0) +"."; mes "Please enter the username:"; next; input .@usr$; mes .npc$; mes "Please enter password"; next; input .@psw; mes .npc$; if( .@usr$ == .user$ && .@psw == .password ) { mes "Do you want to activate the server in maintenance mode?"; next; switch(select("Yes:No:Reset Server")) { mes .npc$; case 1: initnpctimer; mes "Server in maintenance mode ^00ff7fenabled^000000"; announce "The server will be temporarily closed for maintenance -- from 5 minutes",bc_all|bc_npc; break; case 2: mes "Bye"; break; case 3: set $srv_mnt$,"OFF"; mes "Reset"; break; } } else mes "There was a problem with your login information!"; } else mes "Sorry but you don't have a permission"; close; OnTimer60000: // 1min. announce "The server will be temporarily closed for maintenance -- from 4 minutes",bc_all|bc_npc; end; OnTimer120000: // 2min. announce "The server will be temporarily closed for maintenance -- from 3 minutes",bc_all|bc_npc; end; OnTimer180000: // 3min. announce "The server will be temporarily closed for maintenance -- from 2 minutes",bc_all|bc_npc; end; OnTimer240000: // 4min. announce "The server will be temporarily closed for maintenance -- from 1 minutes",bc_all|bc_npc; end; OnTimer330000: announce "-- Server Shutdown in 30 seconds --",bc_all|bc_npc; end; OnTimer430000: announce "-- Server Shutdown in 20 seconds --",bc_all|bc_npc; end; OnTimer540000: announce "-- Server Shutdown in 10 seconds --",bc_all|bc_npc; end; OnTimer655000: announce "-- We will be back soon. Bye bye --",bc_all|bc_npc; set $srv_mnt$,"ON"; stopnpctimer; sleep2 5000; atcommand "@kickall"; end; } - script ServerMaintenance -1,{ OnPCLoginEvent: if($srv_mnt$ == "ON") { if(getgmlevel() >= 99) { mes "Hello "+ strcharinfo(0) +"."; mes "The server is "+ $srv_mnt$ +" mode"; close; } mes "[^55aaffLeoRO Server^000000]"; mes "Sorry but the server is temporarily out of service,"; mes "for maintenance."; mes "Please try again later!"; sleep2(5000); atcommand "@kick " + strcharinfo(0); } end; } You can look through what I've changed and maybe someone else has some ideas. In terms of improvements to the overall script. You could add multiple logins or something.1 point
-
1 point
-
The links worked fine for me. Here's a mirror anyways. Ghost WAV Files [Mirror]1 point
-
February Digest 2018 The following digest covers the month of February, 2018. Staff Changes Daegaladh is now a developer. Development Highlights CORE: Added support for 2018-01-24 client (8792960d) Fixed a bug with pincode on 2018-01-24 client (9d4fa62e) Added support for 2018-02-07bRagexeRE client (e1b9d243) Removed password output from atcommand accinfo (2746e0d3) Made mercenary db dynamic (132feeb6) Added new script command `clear` (ead017b3) Fixed compatibility with some newer MySQL client library derivatives (dfe279fb) Corrected renewal ASPD off-hand calculation (267fd3e6, b7d38283, 6411a1d4) Set max Zeny to 2,147,483,647 (eaf44078) Fixed item creation with full inventory (3c41d4ee) Changing DBMap into STL::Map in C++ for guild storage (fe575dda) Cleaned up atcommand accinfo leftovers (d4c1a57f) Fixed display of newly added pet eggs in storage (c16b7b17) Converted pet_data::petDB into a getter function (1e766a7b) Added support for 2018-02-13aRagexeRE client (f6e0a0a3) Added a new packet for the equipment swap system (71886193) Fixed unitwalkto calls in unit walk events (a0a55dad) Resolved renewal ASPD and two-handed weapons (31e2871d) DATABASE: Corrected True Seyren Windsor Card bonus (24a9e4c6) Corrected the party member ATK bonus of RK_FIGHTINGSPIRIT (82035609) Added new mob placeholders (eea76c8e) Corrected chance to craft 2 runes starts at Rune Mastery Lv5, not 6 (8258df64) Corrected Heat Barrel bonuses (75a8f520) More items correction (In general Equips) and added new item 1835 (41dbb30f) Fixed some autobonus scripts in item_db (cacf450d) Fixed AL_HOLYWATER behavior (2ecb30ab) Updated Cultivation plant spawn formula (a40b1da4) Updated Masquerade - Weakness behavior (d2c5ca99) Fixed Mystical Amplification and Chain Lightning (02983c4f) Corrected missing ATK / MATK bonus from Old Wind Whisper (77f75c05) Corrected the amount of slots of Spartacus (4fef4d04) Updated guild skill Guard Up (6e5de84a) Updated Tiger Fist stop duration (0e23f3fe) Removed unnecessary RC_PLAYER item bonuses (d3ea313b) Added items of Reactors from Charleston Instance (7bb35d28) Fixed STR/INT/VIT Biscuit Sticks item script (97c1e8b9) Cart Termination should be affected by % effects (5998cca3) Fixed Endow skills to match official behavior (1e2032cc) Corrected Disarm and Steal Coin formulas (5e354494) Updated Mob and NPC Identity (e9919620) Corrected Power Swing weapon requirement (fdb7aefd) Fixed Skin Tempering (BS_SKINTEMPER) fire resistance percentage (a40b69f3) Fixed Sheltering Bliss (CG_MOONLIT) max level (b989844f) SCRIPT: Cleaned up kafra functions (139f6f25) Workaround to solve issue with news cards in enchants NPCs (3bcb37bf) Updated card seller NPC (afab80fb) Initial release of Dimensional Travel Quest (6e0187bc) OTHERS: Updated CI tool configurations (2f358d8f) Fixed charban example in atcommands.txt (e43f03ad) Fixed athena-start newlines not set to unix type (7f9f185c) Added map_msg_mal.conf (38a00aa5) Statistics Excluding merges, 13 authors have pushed 66 commits to master and 87 commits to all branches. On master, 79 files have changed. There have been 2,825 additions and 764 deletions. There are 42 merged Pull Requests and 7 Proposed Pull Requests. There are 13 new Issues and 40 Closed Issues. List of Contributors @4144, @admkakaroto, @aleos89, @Artuvazro, @Atemo, @ArcherDs, @Badarosk0, @BrOgBr, @cydh, @Daegaladh, @ecdarreola, @Everade, @flamefury, @hendra814, @laziem, @Lemongrass3110, @inhyositsu, @mrjnumber1, @RadianFord, @raynra, @rye305, @sader1992, @sctnightcore, @secretdataz, @talesofragnarok, @Tokeiburu, @uddevil, @vstumpf Show your support to rAthena by submitting your Issue or Pull Requests! By providing enough useful info (Git Hash, Client Date, RE/Pre-RE, crashdump, how to reproduce, etc) you will help us to solve the issues faster1 point
-
1 point
-
Client-Side Just name the files as morocc (for morroc) and payon (for payon) then add in your data. Server-Side First be sure your grf-files.txt in your conf folder is properly configurated. //grf: C:\Program Files\Gravity\RO\data.grf >>Add your grf here just like the model //----------------------------------------- // Data Directory // Use the base folder, not the data\ path. //----------------------------------------- //data_dir: C:\Program Files\Gravity\RO\ >>Add your RO folder here just like the mode Then using WeeMapCache Open your mapcache.dat (in db folder) and delete the payon and morocc from the list, save and close your mapcache. Run the mapcache.bat in the trunk folder of the emulator (the main folder) and the maps will take place of the current ones. NOTE: you must have to fix the NPC and Portal positions Manually.1 point
-
All old maps are in our download section: https://rathena.org/board/files/file/7-old-payon-morocc-10/ https://rathena.org/board/files/file/2392-old-izlude-and-alberta/1 point