Jump to content

Akkarin

Forum Manager
  • Posts

    3147
  • Joined

  • Last visited

  • Days Won

    214

Akkarin last won the day on June 20

Akkarin had the most liked content!

About Akkarin

  • Birthday 09/18/1987

Profile Information

Contact Methods

Recent Profile Visitors

39088 profile views

Akkarin's Achievements

  1. Do not necropost with a bump. Look at the damned post marked as the answer.
  2. 2021-11-03_Ragexe_1635926200.zip
  3. The labels need to be inside the curly braces {} of the NPC script.
  4. https://letmegooglethat.com/?q=How+to+update+rAthena+to+the+latest+revision+keeping+my+data+intact
  5. 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
  6. 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.
  7. 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.
  8. 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
  9. 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.
  10. 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.
  11. 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
  12. You can add an announcement in the script. I'm not adding additional functionality to this script.
  13. Core * Added Support for Cookie Consent. * Added support for forcing tags to be listed alphabetically. * Members can now request their PII Data via the Frontend. * Members can now request to be deleted via the Frontend. * Members can no longer react to content if they have unacknowledged warnings. * Adjusted the OAuth setup instructions to use the new "API" instead of "REST & OAuth" menu point. * Removed the none function default Giphy API key. * Improved the way how we send requests to IndexNow to skip it for items which are literally never visible to guests. * Fixed few instances, where we weren't removing the IP address from the database via the IP Address truncate task. * Fixed an issue where the similar content block may cause an error on some pages when using Elastic/Opensearch. * Fixed an issue with lightbox grouping in activity stream where Elastic/Opensearch is used. * Fixed an issue where push notifications may not be sent if a browser/device has been used to sign in to multiple accounts. * Fixed an issue in validating custom header/footer theme inputs. * Fixed an issue where moderating all links did not work correctly. * Fixed an issue where editing an item and setting a future publishing date did not work correctly. * Fixed an issue where viewing the members content on his profile may show an error while viewing some reviews. * Fixed an issue where chart labels containing a comma caused CSV downloads to be incorrectly formatted. * Fixed an issue where adding the 'group' parameter in the 'core/members' REST endpoint would result in the other parameters being overlooked. * Fixed an issue where Custom Fields of type Member did not function correctly. * Fixed an issue where bulk mail could not be filtered by a CheckboxSet profile field. * Fixed an issue where responses to reviews were not checked against word filters. * Fixed an issue where the related content widget added invalid hover parameters in some cases. * Fixed an issue where the memberregistrationcomplete` webhook was triggered too early. * Fixed an issue where clubs set to not show members still showed on the profile. * Fixed a missing live search keyword for admin control panel notifications. * Fixed an issue where ACP notifications may cause an error if the extension has been removed. * Fixed an issue where content can be missing in streams if the last comment is waiting approval. * Fixed an issue generating iOS startup images. * Fixed an issue where an administrator IP may show in the list of ban suggestions if they had changed the members display name. * Fixed an issue where a malformed search request could trigger an uncaught exception (and system log). * Improved the Cookie Consent system based on feedback from our community. * Fixed some missing language strings in Member History relating to PII / Account deletion requests. * Fixed some issues with the AdminCP notification for PII requests. * Fixed an issue where an administrator exporting PII for a member may not contain the members device data. * Fixed an issue with links in the PII request emails. * Improved the security of the Visual Language Editor. Forums * Added og:image tags for first 4 image attachments. * The topic summary was removed for future topics. * Fixed fatal error when upgrading from IP.Board 3.x. * Fixed an issue where publishing a scheduled topic did not properly update the last post information on the forums. * Fixed an issue where re-engagement emails would show replies from the topic author. Commerce * Added the table filter and sort options to the redirect target after deleting an invoice in the ACP. * Fixed an issue with PayPal when buying multiple quantities of a product in one order. * Fixed a bug where the expiry date can be calculated incorrectly when upgrading/downgrading between packages. * Fixed an issue where the wrong value was displayed on custom fields during checkout. * Corrected PayPal API endpoint to the newer version. Pages * Fixed an issue moving comments to forum if the article previously had a linked forum topic that no longer exists. * Fixed an issue where copying multiple topics to a database resulted in duplicated attachments. * Fixed an issue where display options in the ACP did not match the display of custom fields on the front-end. Platform * Fixed an issue where editing a video upload to Gallery may not transcode it to MP4. * Fixed an issue where email copies of Commerce actions may not be sent. * Fixed an issue with content item analytics. The above list is a copy/paste from IPS's Release Notes. Some of the above fixes may not apply to our installation of IPS. Deprecation Notices Due to various core elements of IPS4 being deprecated towards the application's end-of-life, the following have been disabled in this update: * Commerce Support Desk (Support Ticket system) * Physical Products (merch is handled by an external company) * Status Updates (previously disabled due to misuse, but now are completely removed) * Mod Tool Plugins (PM on Saved Action and PM Auto-Reply). Plugins are being removed entirely in IPS5.
  14. It's still pending, so I've probably done something wrong. I'll ping them a help-request.
  15. That would work better.
×
×
  • Create New...