Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. Ind mistakenly removed the Arena last year from Renewal. I've restored them in 400d0f0 and updated all the scripts in 13b281b (both will hopefully be pushed to SVN shortly). EDIT: r17448, r17451
  2. r17402 - rAthena Renewal battle support and major battle/skill system overhaul!
  3. Euphy

    WoE Reward NPC

    If you use my WOE Controller (trunk/npc/custom/woe_controller.txt), you can configure the script to distribute prizes to winners of each siege.
  4. mes "You have "+#CASHPOINTS+" Cash Points."; close;
  5. http://dev.mysql.com/doc/refman/5.0/en/myisam-repair.html
  6. The Addrid command was added recently (r17439/6572a9f), which makes it really easy to do something like this: addrid(1); //Attach all users on the map. getitem 512,1; end;
  7. Teleport's skill level isn't adjustable, so you won't be able to randomly warp if you skip the menu on level 2. That's why there's no config for it. @Emistry: That setting is only for level 1.
  8. This is already in the repository. trunk/doc/mapflags.txt
  9. Euphy

    Warper Menu

    Read: Menu All script commands are also documented in trunk/doc/script_commands.txt.
  10. lhz_dun04 doesn't exist in Pre-Renewal, and are you using the old Izlude map?
  11. trunk/db/re/item_noequip.txt 607,2 //Yggdrasilberry - PVP 607,4 //Yggdrasilberry - GVG
  12. This was implemented in 6572a9f.
  13. As an explanation: BaseClass always returns the 1-1 class, so it will not work for Job_Priest (ever). You need to enclose scripts in brackets when there's more than one command.
  14. To expand on what others posted about mob skills - I don't know if you've noticed this feature in mob_skill_db: // Note: if a negative MobID is provided, the skill will be treated as 'global': // -1: added for all boss types. // -2: added for all normal types. // -4: added for all mobs. That's an easy way to add skills to all your bosses at once.
  15. This is already being worked on. ^.^
  16. Euphy

    About r17427

    What revision did you upgrade from? o.o r15572: New GM, Commands & Permissions system
  17. You have to execute all the SQL upgrade files in trunk/sql-files/upgrades - yes, there's a lot. xD
  18. # Stat points for non-trans classes: 1273 UPDATE `char` SET `status_point` = 1273 WHERE `base_level` > 99 AND ((`class` > 4001) OR (`class` > 4022 AND `class` < 4060) OR (`class` > 4065 AND `class` < 4072) OR (`class` > 4095)); # Stat points for trans classes: 1325 UPDATE `char` SET `status_point` = 1325 WHERE `base_level` > 99 AND `status_point` != 1273; # Lower level and reset stats UPDATE `char` SET `base_level` = 99, `str` = 1, `agi` = 1, `vit` = 1, `int` = 1, `dex` = 1, `luk` = 1 WHERE `base_level` > 99;
  19. trunk/conf/battle/exp.conf // Will display zeny earned (from mobs, trades, etc) (Note 1) disp_zeny: yes
  20. Make sure all players are offline when you execute this: UPDATE `char` SET `base_level` = 99 WHERE `base_level` > 99;Also, make sure to reset their stats.
  21. item_trade.txt and source modifications are the only options. The npcshop* commands trigger the labels after the shop window closes, so they can't modify the window itself. EDIT: Or you can try Capuche's script. XD
  22. When you update your SVN, update all parts of it. The script command was removed.
  23. http://www.eathena.ws/board/index.php?showtopic=241741
  24. Note that this script will not detect equipped items or support multiple refines (both of which I'd suggest adding!). I also recommend (again) standardizing your formatting; it's really hard to read some parts of this...
×
×
  • Create New...