Keypress capture?

  • Vovix
    16th Aug 2011 Member 0 Permalink
    Is there a keypress capture function for TPT and if so, what is it?
  • jenn4
    16th Aug 2011 Member 0 Permalink
    Why to use LUA. ctrl+prtsc is screenshot and in tpt screenshot is p.
  • Vovix
    16th Aug 2011 Member 0 Permalink
    Not screenshot capture, keypress capture(as in, getting the key that was pressed).
  • vanquish349
    16th Aug 2011 Member 0 Permalink
    there is, but it is confusing, ask cracker about it he showed me script that uses it
  • jenn4
    16th Aug 2011 Member 0 Permalink
  • boxmein
    16th Aug 2011 Former Staff 0 Permalink
    You mean key events?
  • lookitsan00b
    16th Aug 2011 Member 0 Permalink
    its not that difficult. just create your function (example: "function getkey(key_char, key_num, modifier)")
    and register it with "tpt.register_keypress(getkey)"

    key_char will be the letter/symbol on the key ("a" for the A key, "b" for the B key, etc.)
    key_num will be the internal number of the key (17 for the up arrow, 18 for the down arrow, etc.)
    modifier will tell stuff like shift, ctrl, etc. (these are really weird numbers, haven't figured them out yet)

    your function will be run every time a key is pressed.
  • BlueAmulet
    16th Aug 2011 Member 0 Permalink

    Deleted

    Edited once by BlueAmulet. Last: 12th Apr 2024
  • Vovix
    16th Aug 2011 Member 0 Permalink
    So, key_char and key_num are Lua variables that are always equal to the current key?
  • lookitsan00b
    16th Aug 2011 Member 0 Permalink
    @Vovix they are parameters that are sent to the function you use with tpt.register_keypress(), which is basically tpt.register_step(), but instead of being run every frame, it is run every time a key is pressed. So for most purposes, yes, except they can only be used in that function, and they don't change when another key is pressed, the function is just called again.

    @gamax92 if you can find a way to send the data over the interwebs

    maybe I should try explaining it on the wiki as best as I can...

    EDIT: well I didn't explain it, but at least its documented now (I found out how to use this by looking at the source :P)