Jump to content

Akkarin

Forum Manager
  • Posts

    3144
  • Joined

  • Last visited

  • Days Won

    212

Everything posted by Akkarin

  1. Do not necropost with a bump. Look at the damned post marked as the answer.
  2. 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.
  3. 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.
  4. 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.
  5. 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.
  6. 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.
  7. 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.
  8. 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.
  9. 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.
  10. The labels need to be inside the curly braces {} of the NPC script.
  11. https://letmegooglethat.com/?q=How+to+update+rAthena+to+the+latest+revision+keeping+my+data+intact
  12. 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
  13. 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.
  14. 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.
  15. 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
  16. 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.
  17. 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.
  18. 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
  19. 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.
  20. 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.
  21. 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.
  22. 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.
  23. 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.
  24. 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.
×
×
  • Create New...