Woah, wait a second guys, it'll work with any input module.
Quote# Instructions:
#
# Place this script in a new slot below Scene_Debug and above main.
# If you're using any input modules and the key you set is from that script,
# place this below that input script.
Basically, if you're using Tons or Blizz-ABS, both of them have the same input module, so what shdwlink said would work:
Quote from: shdwlink1993 on January 30, 2009, 11:13:21 am
To use other keys (provided you're using Ton's Input), you use this (I think
):
So for p, it's:
If you're still getting errors, here is the workaround:
In the config, comment out the MTP_Key option:
Quote
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# CONFIG BEGIN
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
MTP_Pic = 'Target_Pointer'
MTP_Position = nil #[320, 240]
MTP_Key = Input::A # <<<<< Comment this out!!
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# CONFIG END
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Then paste the following snipped BELOW any input modules you're using. So this snippet goes below Tons and/or Blizz-ABS:
#==============================================================================
# ** FTSConfig (MTP key workaround)
#==============================================================================
module FTSConfig
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# CONFIG BEGIN
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
MTP_Key = Input::A
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# CONFIG END
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
end
Glad you guys like it

@Shadonking: That's an interesting feature, pointing to coordinates. I'll remember that