need help: you write "... press the paste key (End by default)..." but my keyboard has no "End" So how I see what the key number is on keyboard to change it or identify the number? (and I can't use an F1-12 as hard setting by keyboard)
Nope, doesn't work for me because console doesn't accept inputs that are too fast. Here's another script that works (at least for me): ~f12:: SetKeyDelay 50 SendEvent, %Clipboard% SetKeyDelay -1 returnReplace "f12" with whatever function key you want to use.
Addition: If you want to quickly add items via BaseID (e.g. copied from SSEEdit), you can use "SendEvent, player.additem %Clipboard% 1"
Thanks, I see that's better to avoid using CTRL+V because "V" will comes out, I have changed to "PasteKeyCode=42" Which it's CTRL + L Shift Easy and close keys
If you are finding some how to change the KeyCode value In .ini file Here is the list of that keycode : https://community.bistudio.com/wiki/DIK_KeyCodes
161 comments
paste this into whatever.ahk
"^n::
SendRaw, %Clipboard%
return"
(without quotes (duh))
run it, press ctrl+n
dirty fix but ¯\_(?)_/¯
~f12::Replace "f12" with whatever function key you want to use.SetKeyDelay 50
SendEvent, %Clipboard%
SetKeyDelay -1
return
Addition: If you want to quickly add items via BaseID (e.g. copied from SSEEdit), you can use "SendEvent, player.additem %Clipboard% 1"
For adding items though I would just use AddItemMenu.
>^f12::
{
SetKeyDelay(50)
SendEvent(A_Clipboard)
SetKeyDelay(-1)
return
}
For me
Versao 1.0.1: LCONTROL + END
Which it's CTRL + L Shift
Easy and close keys
Here is the list of that keycode : https://community.bistudio.com/wiki/DIK_KeyCodes