Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. Maki and Brian handle all payouts. Last I asked, they were both very busy; your request will certainly get processed, but it might take longer than usual.
  2. If you want account-based quests, replace the permanent character variables with account variables. If you want all characters to be able to take quests simultaneously, replace all account variables with permanent character variables. In both cases, remove this check: if (#Mission_Count) { mes "You've started a mission"; mes "on another character."; close; }
  3. We confirmed that those were indeed the official rates before committing that update.
  4. That only happens when you whisper from an admin account.
  5. Read: r17386: Instance System Rewrite!
  6. NPC variables (.var) are shared across all duplicate NPCs, so they'll be set in every instance. This is rarely what you want. If mobcount() won't work for you, you can try using instance variables ('var) to store data, but be sure to initialize them as necessary - they won't be reset when executing @reloadscript.
  7. That's an eAmod script and won't work with Athena.
  8. This is how it's calculated: if (getequippercentrefinery(.@part) > rand(100) || getequippercentrefinery(.@part) > rand(100)) {That means that it's (essentially) doubling the original refine rate, or more technically giving you two attempts at the original rate. You can edit or add conditions as you'd like.
  9. @rmon008: You're really behind on updates or not using rAthena.
  10. It means exactly what it says. 30545 isn't a valid item ID, so it was skipped.
  11. @hendra814: That's easy but will take a while to do; change all the dungeon labels to the "Go" function manually. @rosfus: Yes, just find and replace #Mission_Points with #Event_Points.
  12. http://rathena.org/board/topic/87120-transitioning-from-svn-to-git/
  13. It's possible to effectively automate the events by triggering a check OnMinute and storing the events to trigger for each hour as a bit integer (that's exactly what I use in my manager XD). It'll take some time to code, but once it's done you won't have to worry about it again.
  14. They've been in correctly in sync for a few weeks now, and you can check revisions by clicking the "Timeline" link under "SVN".
  15. Might've been an issue with parentheses, sorry about that. set .@i, party_create("i"+rand(100000000));
  16. This is the bare minimum to enter an instance: set .@instance$,"Endless Tower"; if (!getcharid(1)) { // Generate a party if needed. while(.@i < 1) set .@i, party_create "i"+rand(100000000); sleep2 100; } instance_create(.@instance$); // Create the instance. instance_enter(.@instance$); // Enter the instance. end;
  17. TXT servers were dropped long ago, the "_sql" suffix was no longer necessary.
  18. Brian wrote a similar script here (definitely more efficient, check it out)
  19. The configuration array is just in there for convenience; you can ignore it and replace the 'getitem ...' line with anything you'd like.
  20. No, but it's possible with a source edit. Moving to "Source Requests".
  21. Good to see that you're back. Thanks for sharing! ^^
×
×
  • Create New...