diff --git a/AHK Chatter OW/Game-chat-scripts-main.zip b/AHK Chatter OW/Game-chat-scripts-main.zip new file mode 100644 index 0000000..771f09f Binary files /dev/null and b/AHK Chatter OW/Game-chat-scripts-main.zip differ diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Main.class b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Main.class new file mode 100644 index 0000000..1a4fbbd Binary files /dev/null and b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Main.class differ diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Main.java b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Main.java new file mode 100644 index 0000000..cb02d2b --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Main.java @@ -0,0 +1,26 @@ +import java.util.Scanner; +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; + +class Main { + public static void main(String[] args) throws IOException { + String text; + int splitSize = 6; + Scanner keyboard = new Scanner(System.in); + System.out.println("Paste your string"); + text = keyboard.nextLine(); + System.out.println(text); + String[] textArray = text.split(" ", -2); + //Clears console + System.out.print("\033\143"); + File ahkOutput = new File("ahkOutput.txt"); + FileWriter writing = new FileWriter("ahkOutput.txt"); + //Prints ready for ahk + for(String a : textArray){ + System.out.println("Send, " + a + "{space}"); + writing.write("Send, " + a + "{space}\n"); + } + writing.close(); + } +} diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Overwatch-AHK-Cutter.zip b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Overwatch-AHK-Cutter.zip new file mode 100644 index 0000000..2f9e3d4 Binary files /dev/null and b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/Overwatch-AHK-Cutter.zip differ diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/ahkOutput.txt b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/ahkOutput.txt new file mode 100644 index 0000000..d3f5a12 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/ahkOutput.txt @@ -0,0 +1 @@ + diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/replit.nix b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/replit.nix new file mode 100644 index 0000000..f32a84a --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/replit.nix @@ -0,0 +1,8 @@ +{ pkgs }: { + deps = [ + pkgs.graalvm17-ce + pkgs.maven + pkgs.replitPackages.jdt-language-server + pkgs.replitPackages.java-debug + ]; +} diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/txt.txt b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/txt.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.1/txt.txt @@ -0,0 +1 @@ + diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Main.class b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Main.class new file mode 100644 index 0000000..dd7b5c8 Binary files /dev/null and b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Main.class differ diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Main.java b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Main.java new file mode 100644 index 0000000..2ce2847 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Main.java @@ -0,0 +1,116 @@ +import java.util.Scanner; +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import java.io.FileReader; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.BufferedWriter; +import java.io.BufferedReader; +import java.io.InputStreamReader; + +class Main { + + public static void main(String[] args) throws IOException { + + String ogInput; + char key; + int splitSize = 0, passer = 4; + Scanner keyboard = new Scanner(System.in); + System.out.println("What ctrl + key would you to use? "); + key = keyboard.next().charAt(0); + System.out.println("Paste your string"); + keyboard.nextLine(); + ogInput = keyboard.nextLine(); + System.out.println(ogInput); + String[] ahkText = ogInput.split(" ", -2); + String[] ahkComment = ogInput.split("\\.", -2); + char[] ahkChar = new char[ogInput.length()]; + // Clears console + System.out.print("\033\143"); + File ahkOutput = new File("ahkOutput.txt"); + File commentOutput = new File("commentOutput.txt"); + FileWriter writing = new FileWriter("ahkOutput.txt"); + writing.write( + "#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. \n; #Warn ; Enable warnings to assist with detecting common errors. \nSendMode Input ; Recommended for new scripts due to its superior speed and reliability. \nSetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.\n\n" + + "^" + key + "::"); + + // Prints and writes ready for ahk + int counter = 0; + for (String a : ahkText) { + System.out.println("Send, " + a + "{space}"); + writing.write("Send, " + a + "{space}\n"); + counter++; + if (counter % 24 == 0) { + writing.write("\nSleep, 3000\nSend, {tab}{enter}\nSleep, 4000\nSend, {tab}{enter}\nSleep, 3000\n"); + } + } + writing.write("\nreturn"); + writing.close(); + /* + * for(String b : ahkComment){ + * comment.write("; " + b + " "); + * } + */ + FileWriter comment = new FileWriter("commentOutput.txt"); + for (int i = 0; i < ahkComment.length - 1; i++) { + if (passer % 4 == 0) { + passer = 0; + comment.write("\n; " + ahkComment[i] + " "); + } else { + passer++; + comment.write(ahkComment[i] + " "); + } + } + + comment.close(); + File newTest = new File("newTest.txt"); + // copyContent(commentOutput, newTest); + File[] combiner = new File[2]; + combiner[1] = ahkOutput; + combiner[0] = commentOutput; + mergeFiles(combiner, newTest); + // copyContent(ahkOutput, newTest); + FileWriter qwrite = new FileWriter("newTest.txt"); + qwrite.write("\nreturn"); + qwrite.close(); + } + + public static void mergeFiles(File[] files, File mergedFile) { + + FileWriter fstream = null; + BufferedWriter out = null; + try { + fstream = new FileWriter(mergedFile, true); + out = new BufferedWriter(fstream); + } catch (IOException e1) { + e1.printStackTrace(); + } + + for (File f : files) { + System.out.println("merging: " + f.getName()); + FileInputStream fis; + try { + fis = new FileInputStream(f); + BufferedReader in = new BufferedReader(new InputStreamReader(fis)); + + String aLine; + while ((aLine = in.readLine()) != null) { + out.write(aLine); + out.newLine(); + } + + in.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + + try { + out.close(); + } catch (IOException e) { + e.printStackTrace(); + } + + } +} \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Overwatch-AHK-Cutter-v0.2.zip b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Overwatch-AHK-Cutter-v0.2.zip new file mode 100644 index 0000000..a8a0e4c Binary files /dev/null and b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/Overwatch-AHK-Cutter-v0.2.zip differ diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/ahkOutput.txt b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/ahkOutput.txt new file mode 100644 index 0000000..0a74ef6 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/ahkOutput.txt @@ -0,0 +1,56 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^K:: +Send, I'm{space} +Send, TimThePlatMan,{space} +Send, and{space} +Send, this{space} +Send, is{space} +Send, my{space} +Send, ELO.{space} +Send, I{space} +Send, boost{space} +Send, it{space} +Send, with{space} +Send, my{space} +Send, old{space} +Send, man{space} +Send, lassiz,{space} +Send, and{space} +Send, my{space} +Send, son,{space} +Send, Big{space} +Send, moon.{space} +Send, Every{space} +Send, game{space} +Send, I{space} +Send, play{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, has{space} +Send, throws{space} +Send, and{space} +Send, tilt.{space} +Send, One{space} +Send, thing{space} +Send, I've{space} +Send, learned{space} +Send, after{space} +Send, 21{space} +Send, years{space} +Send, -{space} +Send, you{space} +Send, never{space} +Send, know{space} +Send, how{space} +Send, I'll{space} +Send, throw{space} +Send, this{space} +Send, game.{space} diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/commentOutput.txt b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/commentOutput.txt new file mode 100644 index 0000000..bd71322 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/commentOutput.txt @@ -0,0 +1,5 @@ + +; I'm TimThePlatMan, and this is my ELO +; I boost it with my old man lassiz, and my son, Big moon +; Every game I play has throws and tilt +; One thing I've learned after 21 years - you never know how I'll throw this game \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/newTest.txt b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/newTest.txt new file mode 100644 index 0000000..3fa4679 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/newTest.txt @@ -0,0 +1,2 @@ + +return \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/replit.nix b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/replit.nix new file mode 100644 index 0000000..7f7e129 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/Overwatch-Java AHK Tool/v0.2/replit.nix @@ -0,0 +1,8 @@ +{ pkgs }: { + deps = [ + pkgs.graalvm17-ce + pkgs.maven + pkgs.replitPackages.jdt-language-server + pkgs.replitPackages.java-debug + ]; +} \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/ZaryaSmells.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/ZaryaSmells.ahk new file mode 100644 index 0000000..f5a9840 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/ZaryaSmells.ahk @@ -0,0 +1,95 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +; I think Zarya smells like dandelions and a cool breeze +; Her colored hair gives of the scent of strawberries in bloom, and her pink gun leaves a smell of bubblegum when shot +; Her body smells of sweat, and a strong womanhood +; I would love to stuff my head right into her armpit and smother myself +; To smell her tomboyish energy +; I would die for this + +^K:: + +Send, I{space} +Send, think{space} +Send, Zarya{space} +Send, smells{space} +Send, like{space} +Send, dandelions{space} +Send, and{space} +Send, a{space} +Send, cool{space} +Send, breeze. +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 + + +Send, {tab}{enter} +Sleep, 3000 +Send, Her{space} +Send, colored{space} +Send, hair{space} +Send, gives{space} +Send, of{space} +Send, the{space} +Send, scent{space} +Send, of{space} +Send, strawberries{space} +Send, in{space} +Send, bloom,{space} +Send, and{space} +Send, her{space} +Send, pink{space} +Send, gun{space} +Send, leaves{space} +Send, a{space} +Send, smell{space} +Send, of{space} +Send, bubblegum{space} +Send, when{space} +Send, shot.{space} +Send, Her{space} +Send, body{space} +Send, smells{space} +Send, of{space} +Send, sweat,{space} +Send, and{space} +Send, a{space} +Send, strong{space} +Send, womanhood. +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 + + +Send, {tab}{enter} +Sleep, 3000 +Send, I{space} +Send, would{space} +Send, love{space} +Send, to{space} +Send, stuff{space} +Send, my{space} +Send, head{space} +Send, right{space} +Send, into{space} +Send, her{space} +Send, armpit{space} +Send, and{space} +Send, smother{space} +Send, myself.{space} +Send, To{space} +Send, smell{space} +Send, her{space} +Send, tomboyish{space} +Send, energy.{space} +Send, I{space} +Send, would{space} +Send, die{space} +Send, for{space} +Send, this.{space} + +return \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/bastionIdentity.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/bastionIdentity.ahk new file mode 100644 index 0000000..2feb612 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/bastionIdentity.ahk @@ -0,0 +1,122 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^L:: +Send, I{space} +Send, sexually{space} +Send, Identify{space} +Send, as{space} +Send, a{space} +Send, Bastion.{space} +Send, Ever{space} +Send, since{space} +Send, I{space} +Send, was{space} +Send, a{space} +Send, transistor{space} +Send, I{space} +Send, dreamed{space} +Send, of{space} +Send, being{space} +Send, nanoboosted{space} +Send, and{space} +Send, firing{space} +Send, cannonballs{space} +Send, on{space} +Send, the{space} +Send, disgusting{space} +Send, enemy{space} +Send, team. +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 + + +Send, {tab}{enter} +Sleep, 3000 +Send, People{space} +Send, tell{space} +Send, me{space} +Send, that{space} +Send, being{space} +Send, a{space} +Send, Siege{space} +Send, Automaton{space} +Send, is{space} +Send, impossible{space} +Send, but{space} +Send, I{space} +Send, don't{space} +Send, care,{space} +Send, I'm{space} +Send, overpowered.{space} +Send, I’m{space} +Send, having{space} +Send, a{space} +Send, plastic{space} +Send, surgeon{space} +Send, install{space} +Send, treads,{space} +Send, a{space} +Send, gattling{space} +Send, gun{space} +Send, and{space} +Send, a{space} +Send, nanoboost{space} +Send, on{space} +Send, my{space} +Send, body. +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 + + +Send, {tab}{enter} +Sleep, 3000 +Send, From{space} +Send, now{space} +Send, on{space} +Send, I{space} +Send, want{space} +Send, you{space} +Send, guys{space} +Send, to{space} +Send, call{space} +Send, me{space} +Send, BOOSTED{space} +Send, and{space} +Send, respect{space} +Send, my{space} +Send, right{space} +Send, to{space} +Send, take{space} +Send, 35 percent{space} +Send, less{space} +Send, damage{space} +Send, 100 percent{space} +Send, of{space} +Send, the{space} +Send, time. +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 + + +Send, {tab}{enter} +Sleep, 3000 +Send, If{space} +Send, not,{space} +Send, you're{space} +Send, an{space} +Send, omnic-phobe{space} +Send, and{space} +Send, need{space} +Send, to{space} +Send, check{space} +Send, your{space} +Send, human{space} +Send, privileges{space} + +return diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/genjiDream.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/genjiDream.ahk new file mode 100644 index 0000000..4c8347d --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/genjiDream.ahk @@ -0,0 +1,106 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^K:: +Send, I{space} +Send, sexually{space} +Send, Identify{space} +Send, as{space} +Send, a{space} +Send, Genji.{space} +Send, Ever{space} +Send, since{space} +Send, I{space} +Send, was{space} +Send, a{space} +Send, boy{space} +Send, I{space} +Send, dreamed{space} +Send, of{space} +Send, dashing{space} +Send, through{space} +Send, the{space} +Send, battlefield{space} +Send, swift{space} +Send, striking{space} +Send, the{space} +Send, disgusting{space} +Send, enemy{space} +Send, team. +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 + + +Send, {tab}{enter} +Sleep, 3000 +Send, People{space} +Send, say{space} +Send, being{space} +Send, Genji{space} +Send, is{space} +Send, Impossible{space} +Send, but{space} +Send, I{space} +Send, don’t{space} +Send, care,{space} +Send, I{space} +Send, can{space} +Send, solo{space} +Send, carry.{space} +Send, I’m{space} +Send, having{space} +Send, a{space} +Send, plastic{space} +Send, surgeon{space} +Send, install{space} +Send, cyborg{space} +Send, parts,a{space} +Send, shuriken{space} +Send, dispenser{space} +Send, and{space} +Send, a{space} +Send, dragonblade{space} +Send, on{space} +Send, my{space} +Send, body. +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 + + +Send, {tab}{enter} +Sleep, 3000 +Send, From{space} +Send, now{space} +Send, on{space} +Send, I{space} +Send, want{space} +Send, you{space} +Send, guys{space} +Send, to{space} +Send, call{space} +Send, me{space} +Send, "Genji{space} +Send, Shimada{space} +Send, Senpai"{space} +Send, and{space} +Send, respect{space} +Send, my{space} +Send, right{space} +Send, to{space} +Send, ignore{space} +Send, objectives{space} +Send, and{space} +Send, play{space} +Send, team{space} +Send, deathmatch.{space} +Send, Ryūjin{space} +Send, no{space} +Send, ken{space} +Send, wo{space} +Send, kurae!{space} + +return diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/hogHook.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/hogHook.ahk new file mode 100644 index 0000000..6bc4993 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/hogHook.ahk @@ -0,0 +1,45 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^K:: +Send, Roadhogs{space} +Send, hook{space} +Send, is{space} +Send, one{space} +Send, of{space} +Send, the{space} +Send, hardest{space} +Send, skills{space} +Send, to{space} +Send, master...{space} +Send, you{space} +Send, have{space} +Send, to{space} +Send, predict{space} +Send, speed{space} +Send, trajectory{space} +Send, momentum{space} +Send, and{space} +Send, velocity{space} +Send, aswell{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, as{space} +Send, healing{space} +Send, yourself{space} +Send, and{space} +Send, tanking...{space} +Send, roadhog{space} +Send, has{space} +Send, the{space} +Send, heigest{space} +Send, skill{space} +Send, ceiling.{space} + +return \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/idkOverwatch.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/idkOverwatch.ahk new file mode 100644 index 0000000..d7e7dfe --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/idkOverwatch.ahk @@ -0,0 +1,120 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^K:: +Send, I{space} +Send, don’t{space} +Send, know{space} +Send, what{space} +Send, Overwatch{space} +Send, is.{space} +Send, There’s{space} +Send, a{space} +Send, gorilla{space} +Send, and{space} +Send, some{space} +Send, lesbians{space} +Send, and{space} +Send, guns{space} +Send, but{space} +Send, yall{space} +Send, never{space} +Send, play{space} +Send, the{space} +Send, gorilla{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, I{space} +Send, don’t{space} +Send, know.{space} +Send, And{space} +Send, then{space} +Send, sometimes{space} +Send, if{space} +Send, that{space} +Send, wasn’t{space} +Send, bad{space} +Send, enough{space} +Send, sometimes{space} +Send, you{space} +Send, go{space} +Send, and{space} +Send, just{space} +Send, invent{space} +Send, new{space} +Send, Overwatches.{space} +Send, Like{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, just{space} +Send, when{space} +Send, I’m{space} +Send, getting{space} +Send, a{space} +Send, handle{space} +Send, on{space} +Send, what{space} +Send, “Junkrat{space} +Send, kin{space} +Send, discourse”{space} +Send, is{space} +Send, yall{space} +Send, show{space} +Send, up{space} +Send, with{space} +Send, “This{space} +Send, is{space} +Send, my{space} +Send, new{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, OC{space} +Send, her{space} +Send, name{space} +Send, is{space} +Send, Grandma{space} +Send, Sniper”{space} +Send, and{space} +Send, then{space} +Send, SHE’S{space} +Send, part{space} +Send, of{space} +Send, the{space} +Send, Overwatchers.{space} +Send, “This{space} +Send, is{space} +Send, Swedish{space} +Send, Beefcake”{space} +Send, could{space} +Send, yall?{space} +Send, not??{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, I{space} +Send, still{space} +Send, don’t{space} +Send, know{space} +Send, what{space} +Send, a{space} +Send, Hanzo{space} +Send, is.{space} + +return \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/jerma.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/jerma.ahk new file mode 100644 index 0000000..0d718ca --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/jerma.ahk @@ -0,0 +1,89 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^K:: +Send, On{space} +Send, March{space} +Send, 21st,{space} +Send, 2016{space} +Send, Jerma{space} +Send, was{space} +Send, streaming{space} +Send, Overwatch{space} +Send, when{space} +Send, suddenly{space} +Send, he{space} +Send, felt{space} +Send, an{space} +Send, overwhelming{space} +Send, sense{space} +Send, of{space} +Send, dread.{space} +Send, Moments{space} +Send, later,{space} +Send, Ster{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, (who{space} +Send, was{space} +Send, hiding{space} +Send, behind{space} +Send, the{space} +Send, curtains){space} +Send, snuck{space} +Send, up{space} +Send, behind{space} +Send, Jerma,{space} +Send, and{space} +Send, after{space} +Send, a{space} +Send, short{space} +Send, struggle,{space} +Send, Ster{space} +Send, stole{space} +Send, Jerma's{space} +Send, hat,{space} +Send, saying{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, "I'm{space} +Send, you{space} +Send, now."{space} +Send, Jerma{space} +Send, died.{space} +Send, At{space} +Send, that{space} +Send, point{space} +Send, the{space} +Send, camera{space} +Send, footage{space} +Send, was{space} +Send, frozen,{space} +Send, but{space} +Send, it{space} +Send, later{space} +Send, returned{space} +Send, to{space} +Send, Ster{space} +Send, pretending{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, to{space} +Send, be{space} +Send, Jerma.{space} + +return \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/mccreeIdentity.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/mccreeIdentity.ahk new file mode 100644 index 0000000..a80d763 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/mccreeIdentity.ahk @@ -0,0 +1,115 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^J:: +Send, I{space} +Send, sexually{space} +Send, Identify{space} +Send, as{space} +Send, McCree.{space} +Send, Ever{space} +Send, since{space} +Send, I{space} +Send, was{space} +Send, a{space} +Send, boy{space} +Send, I{space} +Send, dreamed{space} +Send, of{space} +Send, walking{space} +Send, slowly{space} +Send, on{space} +Send, the{space} +Send, battlefield{space} +Send, announcing{space} +Send, it's{space} +Send, mid{space} +Send, day.{space} +Send, People{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, say{space} +Send, that{space} +Send, being{space} +Send, a{space} +Send, McCree{space} +Send, is{space} +Send, Impossible{space} +Send, but{space} +Send, I{space} +Send, don’t{space} +Send, care,{space} +Send, I’m{space} +Send, beautiful.{space} +Send, I’m{space} +Send, having{space} +Send, a{space} +Send, plastic{space} +Send, surgeon{space} +Send, install{space} +Send, a{space} +Send, cowboyhat,{space} +Send, revolver{space} +Send, and{space} +Send, High{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, Noon{space} +Send, memes{space} +Send, on{space} +Send, my{space} +Send, body.{space} +Send, From{space} +Send, now{space} +Send, on{space} +Send, I{space} +Send, want{space} +Send, you{space} +Send, guys{space} +Send, to{space} +Send, call{space} +Send, me{space} +Send, "Jesse{space} +Send, McCree"{space} +Send, and{space} +Send, respect{space} +Send, my{space} +Send, right{space} +Send, to{space} +Send, announce{space} +Send, it's{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, mid{space} +Send, day.{space} +Send, If{space} +Send, you{space} +Send, can’t{space} +Send, accept{space} +Send, me{space} +Send, you’re{space} +Send, a{space} +Send, HighNoonaphope{space} +Send, and{space} +Send, need{space} +Send, to{space} +Send, check{space} +Send, your{space} +Send, gunslinger{space} +Send, privileges.{space} + +return \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/ripGOATS.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/ripGOATS.ahk new file mode 100644 index 0000000..370d317 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/ripGOATS.ahk @@ -0,0 +1,49 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^K:: +Send, I'm{space} +Send, so{space} +Send, glad{space} +Send, they{space} +Send, forced{space} +Send, the{space} +Send, meta{space} +Send, to{space} +Send, change{space} +Send, from{space} +Send, GOATS.{space} +Send, We{space} +Send, finally{space} +Send, get{space} +Send, to{space} +Send, see{space} +Send, the{space} +Send, dps{space} +Send, stars{space} +Send, shine.{space} + +Sleep, 3000 +Send, {tab}{enter} +Sleep, 4000 +Send, {tab}{enter} +Sleep, 3000 +Send, Nothing{space} +Send, says{space} +Send, high{space} +Send, octane{space} +Send, Overwatch{space} +Send, like{space} +Send, reaper{space} +Send, and{space} +Send, mei,{space} +Send, thank{space} +Send, you{space} +Send, so{space} +Send, much{space} +Send, plat{space} +Send, chat!{space} + +return \ No newline at end of file diff --git a/AHK Chatter OW/Game-chat-scripts-main/Overwatch/xQc-Throw.ahk b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/xQc-Throw.ahk new file mode 100644 index 0000000..75485d8 --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/Overwatch/xQc-Throw.ahk @@ -0,0 +1,29 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +^J:: + +Send, Hey xQc my son is{space} +Send, a huge fan of{space} +Send, yours.{space} +Send, Anyway over{space} +Send, the p +Send, ast few days{space} +Send, of{space} +Send, watching you{space} +Send, play this game{space} +Send, hes got much{space} +Send, better.{space} +Send, I just{space} +Send, wanted{space} +Send, to stop by{space} +Send, and{space} +Send, thank you fo +Send, r teaching him{space} +Send, how to throw{space} +Send, so well. + +return + diff --git a/AHK Chatter OW/Game-chat-scripts-main/README.md b/AHK Chatter OW/Game-chat-scripts-main/README.md new file mode 100644 index 0000000..8b95a3c --- /dev/null +++ b/AHK Chatter OW/Game-chat-scripts-main/README.md @@ -0,0 +1,4 @@ +# Game Chat Scripts & Auto AutoHotkey Script Writing Tool(AAHKSWT) +- A repo for in-game text chat scripts. Feel free to add any you think should be included. +- All scripts are meant for use with AHK(AutoHotkey) +- Each AASHKWT is game specific but feel free to request a game or edit the code to fit whatever you're working on!