https://github.com/0x6dd8/warframe-paster
fix annoying Ctrl + V warframe bug
https://github.com/0x6dd8/warframe-paster
golang warframe
Last synced: 8 months ago
JSON representation
fix annoying Ctrl + V warframe bug
- Host: GitHub
- URL: https://github.com/0x6dd8/warframe-paster
- Owner: 0x6DD8
- License: unlicense
- Created: 2025-06-20T14:27:00.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-06-20T14:53:37.000Z (12 months ago)
- Last Synced: 2025-06-20T15:36:06.444Z (12 months ago)
- Topics: golang, warframe
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Warframe Paster
A utility program that enables clipboard pasting in Warframe using a custom keyboard shortcut (Alt + V), solving the issue where Ctrl + V doesn't work in the game.
## Why?
Warframe "sometimes" doesn't support the standard Ctrl + V clipboard paste, so it makes copying "/w" messages from warframe.market annoying
## IMPORTNANT
**⚠️ WARNING: Use at your own risk. Digital Extremes (Warframe developers) may consider automated input programs as third-party tools that could result in account penalties or bans. This tool simulates keyboard input and may be detected by anti-cheat systems. Use responsibly and be aware of the potential consequences.**
## Installation
### Prerequisites
- Go 1.24.0 or higher
### Building from Source
1. Clone or download the repository
2. Install dependencies:
```bash
go mod download
```
### Build Options
#### Build for current platform:
```bash
go build -o warframe-paster .
```
#### Build for all platforms:
```bash
make all
```
#### Build for specific platforms:
```bash
# Linux
make build-linux
# Windows
make build-windows
```
#### Linux Installation (system-wide):
```bash
make install-linux
```
#### Linux Uninstallation:
```bash
make uninstall-linux
```
## Usage
1. Run the program
4. In Warframe (or any application), press **Alt + V** to paste the clipboard content
5. The program will automatically type the clipboard content for you
## Configuration
You can modify the following constants in [warframe-paster.go](warframe-paster.go):
- `PASTE_SHORTCUT`: Change the keyboard shortcut (default: `["alt", "v"]`)
- `PASTE_CONTENT_LIMIT`: Maximum characters to paste (default: `300`)
- `PASTE_TIMEOUT`: Delay between characters in milliseconds (default: `50`)
## Dependencies
- [github.com/go-vgo/robotgo](https://github.com/go-vgo/robotgo) - For simulating keyboard input
- [github.com/robotn/gohook](https://github.com/robotn/gohook) - For global hotkey detection
- [golang.design/x/clipboard](https://golang.design/x/clipboard) - For clipboard access