script_athena.conf 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // ______ __ __
  2. // /\ _ \/\ \__/\ \
  3. // __\ \ \L\ \ \ ,_\ \ \___ __ ___ __
  4. // /'__`\ \ __ \ \ \/\ \ _ `\ /'__`\/' _ `\ /'__`\
  5. ///\ __/\ \ \/\ \ \ \_\ \ \ \ \/\ __//\ \/\ \/\ \L\.\_
  6. //\ \____\\ \_\ \_\ \__\\ \_\ \_\ \____\ \_\ \_\ \__/.\_\
  7. // \/____/ \/_/\/_/\/__/ \/_/\/_/\/____/\/_/\/_/\/__/\/_/
  8. // _ _ _ _ _ _ _ _ _ _ _ _ _
  9. // / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \
  10. //( e | n | g | l | i | s | h ) ( A | t | h | e | n | a )
  11. // \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
  12. //
  13. //--------------------------------------------------------
  14. // eAthena Script Configuration File
  15. //--------------------------------------------------------
  16. // When choosing those which it refines setting the letter which is indicated. (Those for word use other than Japanese?)
  17. refine_posword: Head,Body,Left hand,Right hand,Robe,Shoes,Accessory 1,Accessory 2,Head 2,Head 3,Not Equipped
  18. //If you are getting crashes during script loading, you can set this to yes
  19. //to find out which script causes it. Otherwise leave it as no since the amount
  20. //of extra console output is staggering.
  21. verbose_mode: no
  22. warn_func_mismatch_paramnum: yes
  23. check_cmdcount: 655360
  24. check_gotocount: 2048
  25. //---- Custom script functions ----
  26. // 0 - Event script is defined as an NPC by itself
  27. // 1 - Event script can be called by script label
  28. event_script_type: 0
  29. // For events to be activated do we require
  30. // a 'set [EventName],1;' to be called first?
  31. event_requires_trigger: no
  32. // Name of event when a player has died
  33. die_event_name: OnPCDieEvent
  34. // Name of event when a player kills a player
  35. kill_pc_event_name: OnPCKillEvent
  36. // Name of event when a player kills a monster
  37. kill_mob_event_name: OnNPCKillEvent
  38. // Name of event when a player logs out
  39. logout_event_name: OnPCLogoutEvent
  40. // Name of event when a player logs in
  41. login_event_name: OnPCLoginEvent
  42. // Name of event when a player changes map
  43. // NOTE: This event will only trigger on maps with the "loadevent" flag active.
  44. loadmap_event_name: OnPCLoadMapEvent
  45. // Name of event when a player levels up (base lv)
  46. baselvup_event_name: OnPCBaseLvUpEvent
  47. // Name of event when a player levels up (job lv)
  48. joblvup_event_name: OnPCJobLvUpEvent
  49. import: conf/import/script_conf.txt