Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. Check the Wiki next time. http://rathena.org/wiki/Subversion
  2. Use a permanent variable instead of a temporary one, i.e. healtimer instead of @healtimer. The reason most people use temporary timers is because (1) it's usually a short period of time so relogs wouldn't matter, and (2) there's a limit to how many permanent character variables you can set. To work around (2), you can have the NPC delete the variable after healing: // heal, etc. set healtimer,0;
  3. Yup, same steps. The Wiki articles are a little more updated, too, if you need them.
  4. No, you can't directly copy files over. The db folder has been overhauled a lot, and split into pre-re/re, and the source files are completely different.
  5. http://rathena.org/wiki/Mapflag#noexp https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/mapflag/noexp.txt
  6. That... sort of sounds like my "Item Fusion" script, but that's the only way I know of - slotting the effect item into a display item.
  7. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/item_combo_db.txt
  8. OnClock0000 OnClock0400 OnClock0800 OnClock1200 OnClock1600 OnClock2000 OnClock2200: Needs colons.
  9. Should be obvious, PNG vs. GIF o.o;
  10. You'll need 2 variables, something for kills along with #CASHPOINTS. Then do an SQL query (order desc, limit 10) to get the players with the highest variables.
  11. Update your SVN, the NPC locations were updated recently.
  12. Flaid changed his avatar, so he's been re-added to the club.
  13. Or if you're up for it, try using bit variables, they're more efficient: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/quest_variables.txt
  14. It doesn't, I can assure you. o.o;
  15. http://rathena.org/wiki/Defining_Warp_Points
  16. We're highly exclusive, so don't ask to join. But we do accept bribes... [WIP. This thread is pending updates.] [memberS] [ENEMIES]
  17. Why do you need an update query in the script? set directly changes variables while SQL update requires a relog (for character/account variables). But you use it the same way as any other SQL execution. http://www.w3schools.com/sql/sql_update.asp
  18. This looks incredible. Great work.
  19. Note that editing MaxWeight with OnEquip scripts can be abused, since you will still be able to carry all your items OnUnequip if your weight exceeds 100%.
  20. http://rathena.org/wiki/Subversion
  21. Yup, just reset your position via SQL (edit `char`.`last_map`).
  22. Euphy

    WoE Reward NPC

    After this line: OnAgitEnd: Add: freeloop(1); And before "end;", add: freeloop(0);
×
×
  • Create New...