-
Posts
3144 -
Joined
-
Last visited
-
Days Won
212
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Akkarin
-
-
Project will expire in 1 month and 15 days
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
Project will expire in 14 days and 12 hours
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
2021-11-03_Ragexe_1635926200.zip
-
The labels need to be inside the curly braces {} of the NPC script.
-
Topic: Help! How to add items missing in my Rathena Emulator?
Akkarin replied to Charlemagne19's question in Scripting Support
https://letmegooglethat.com/?q=How+to+update+rAthena+to+the+latest+revision+keeping+my+data+intact -
Please use the Download system for proper collation of files: https://rathena.org/board/files/category/101-sprites-palettes/ Files attached to forum posts are automatically removed after a period of time as they tend to be outdated fixes. Using Downloads resolves this potential issue
- 1 reply
-
- 1
-
-
kRO Full Client - 2023-04-04 - Includes BGM & RSU
Akkarin replied to Akkarin's topic in Client Releases
You can download the translated files from https://github.com/llchrisll/ROenglishRE I can't help you with an unobtainable patch file. There are loads of tutorials on this forum that will help you setup and allow connections. -
Requesting to simplify my custom script (repeating mes)
Akkarin replied to Dolphin86's question in Scripting Support
Your original script checked for two items so that's what I did. Just put an extra argument to the function and use an if statement to check inside the function. -
Is there any avenue you are part of in doing game making/modding?
Akkarin replied to Rhymaestro's topic in Off Topic
I agree with the Unreal statement. I used to write mods for Skyrim about 10 years ago, then I got bored and started to learn Java properly and ended up building my own modpack for Minecraft. These days when I have time (which sadly is rarely) I use Unity to develop PC games and Construct3 for mobile apps. My RPGMaker days are back in the early 2010's where they should stay -
Removing your CashShop would make it fair for all, or only put Costume items in there that have no stats/benefits. Also, I'm pretty sure this was a bot post.
-
Quests, Games: Baron of Cards
Akkarin replied to Hyroshima's topic in Game, Event, Quest Script Releases
The inarray script command was added 6 years ago. Update your emulators instead of getting developers to provide backwards compatibility with ancient code. I'm not approving the file. -
Requesting to simplify my custom script (repeating mes)
Akkarin replied to Dolphin86's question in Scripting Support
For scripts that keep repeating the same thing over and over but only have minor changes based on scenario, functions are the way to go. /* Function to check that the player has the requisite item, then accept multiple args to control the rest of the function. * @param {int} rental_item - The item id to check for. * @param {int} second_item - The item id to check for. * @param {int} give_item - The item id to give the player when the function is finished. * @syntax callfunc "F_Gather",40005,40008,40023; */ function script F_Gather { .@rental_item = getarg(0); .@second_item = getarg(1); .@give_item = getarg(2); clear; if(rentalcountitem(.@rental_item) < 1){ mes "You don't have a "+ getitemname(.@rental_item) +"."; // You don't have a Stone Knife. close; } if(countitem(.@second_item) == 1){ mes "Gathering in progress.", "Do not move or gathering", "progress will be cancelled."; soundeffect "gathering.wav",0; addtimer 2,strnpcinfo(0)+"::OnTest"; progressbar "0x00ff00",2; next; mes "Gathering Completed."; soundeffect "menu.wav",0; gathering_points += 1; dispbottom "Gained +1 Gathering Points"; getitem .@give_item,1; close3; } } - script Green Tree FAKE_NPC,{ soundeffect "menu.wav",0; mes "What do you want to do ?"; switch(select("- Gather Branch:- Gather Log:- Gather Tree Sap:- Cancel")){ case 1: switch(select("- Use Stone Knife:- Cancel")){ case 1: // Rental item needed, Second item needed, Item to give callfunc "F_Gather", 40005, 40008, 40023; case 2: break; } break; case 2: switch(select("- Use Makeshift Axe:- Cancel")){ case 1: callfunc "F_Gather",40029,40008,40027; case 2: break; } break; case 3: switch(select("- Use Stone Knife:- Cancel")){ case 1: callfunc "F_Gather",40005,40008,40190; case 2: break; } case 4: break; } OnTest: end; } // DUPLICATE //================================================================= new_1-3,92,63,6 duplicate(Green Tree) Green Tree#1000 11000 new_1-3,96,65,6 duplicate(Green Tree) Green Tree#1001 11000 -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding. -
EXPIRED
Our monthly fees: Web Hosting ($32) VPS Backup Drive ($13) 200GB Offsite NAS Sendgrid SMTP Relay ($10) So you all get the emails you're supposed to. Misc software renewals ($5) Forum apps and plugins that require license renewal every 6 months are broken down to a monthly value. There are other costs for back-end services which are specifically sponsored by individual members of the rAthena project so do not require community crowdfunding.