Project1

标题: 怎么实现按键触发事件? [打印本页]

作者: a1578032454    时间: 2012-12-9 12:14
标题: 怎么实现按键触发事件?
本人正在制作一个挖宝的事件,内容:一个地图内,主角在一个地方按下键,触发了一个事件,事件根据X轴和Y轴计算出离宝物的距离,可是在设置按键的方面,设置不到,总不可能全地图都设置一个 按确定是触发吧...,可是不这样,只设置一个,触发改为并行处理,却不能够一按下就触发,所以来此向各位求助。
作者: zhangbanxian    时间: 2012-12-9 16:58
本帖最后由 zhangbanxian 于 2012-12-9 17:00 编辑

- -b用并行处理事件,内容是条件分歧某键是否按下,若按下则执行某某某...
作者: 896409879    时间: 2012-12-10 01:19
  1. #==============================================================================
  2. #
  3. # ▼ Yanfly Engine Ace - Button Common Events v1.00
  4. # -- Last Updated: 2012.01.09
  5. # -- Level: Normal
  6. # -- Requires: n/a
  7. #
  8. #==============================================================================

  9. $imported = {} if $imported.nil?
  10. $imported["YEA-ButtonCommonEvents"] = true

  11. #==============================================================================
  12. # ▼ Updates
  13. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  14. # 2012.01.09 - Started Script and Finished.
  15. #
  16. #==============================================================================
  17. # ▼ Introduction
  18. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  19. # RPG Maker VX Ace supports 8 different action buttons to use. However, only
  20. # 3 of those are used (A, B, and C) on the field map. The rest of them aren't
  21. # used at all. This script allows usage of the L, R, X, Y, and Z buttons by
  22. # binding them to common events.
  23. #
  24. #==============================================================================
  25. # ▼ Instructions
  26. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  27. # To install this script, open up your script editor and copy/paste this script
  28. # to an open slot below ▼ Materials/素材 but above ▼ Main. Remember to save.
  29. #
  30. # Modify the COMMON_EVENT hash in the script module to adjust which common
  31. # events are used for each button.
  32. #
  33. #==============================================================================
  34. # ▼ Compatibility
  35. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  36. # This script is made strictly for RPG Maker VX Ace. It is highly unlikely that
  37. # it will run with RPG Maker VX without adjusting.
  38. #
  39. #==============================================================================

  40. module YEA
  41.   module BUTTON_EVENT
  42.    
  43.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  44.     # - Button Settings -
  45.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  46.     # This sets the common events that are to run when the particular button
  47.     # is pressed. The following chart shows the respective keyboard buttons.
  48.     #
  49.     #   :Button    Default Keyboard Button
  50.     #      :L        Q
  51.     #      :R        W
  52.     #      :X        A
  53.     #      :Y        S
  54.     #      :Z        D
  55.     #
  56.     # If you do not wish to associate a button with a common event, set the
  57.     # common event for that button to 0.
  58.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  59.     COMMON_EVENT ={
  60.     # :Button => Common Event,
  61.            :L =>   0,    # Does not run a common event.
  62.            :R =>   0,    # Does not run a common event.
  63.            :X =>   1,    # Runs common event 1.
  64.            :Y =>   2,    # Runs common event 2.
  65.            :Z =>   3,    # Runs common event 3.
  66.     } # Do not remove this.
  67.    
  68.   end # BUTTON_EVENT
  69. end # YEA

  70. #==============================================================================
  71. # ▼ Editting anything past this point may potentially result in causing
  72. # computer damage, incontinence, explosion of user's head, coma, death, and/or
  73. # halitosis so edit at your own risk.
  74. #==============================================================================

  75. #==============================================================================
  76. # ■ Scene_Map
  77. #==============================================================================

  78. class Scene_Map < Scene_Base
  79.   
  80.   #--------------------------------------------------------------------------
  81.   # alias method: update_scene
  82.   #--------------------------------------------------------------------------
  83.   alias scene_map_update_scene_bce update_scene
  84.   def update_scene
  85.     scene_map_update_scene_bce
  86.     update_button_common_events unless scene_changing?
  87.   end
  88.   
  89.   #--------------------------------------------------------------------------
  90.   # new method: update_button_common_events
  91.   #--------------------------------------------------------------------------
  92.   def update_button_common_events
  93.     for key in YEA::BUTTON_EVENT::COMMON_EVENT
  94.       next unless Input.trigger?(key[0])
  95.       next if key[1] <= 0
  96.       $game_temp.reserve_common_event(key[1])
  97.     end
  98.   end
  99.   
  100. end # Scene_Map

  101. #==============================================================================
  102. #
  103. # ▼ End of File
  104. #
  105. #==============================================================================
复制代码

作者: xggzga117    时间: 2012-12-10 20:16
沙发正解——
偶系脚本盲……
作者: a1578032454    时间: 2012-12-14 22:50
896409879 发表于 2012-12-10 01:19

看不懂...理解下脚本盲吧...




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1