Skip to content

Commit 86b22e4

Browse files
committed
Add base libs, sample buttons, sample images, sample sounds, sample configs and plugins folder.
Signed-off-by: elModo7 <elmodo7yt@gmail.com>
1 parent 158a0bf commit 86b22e4

102 files changed

Lines changed: 1037 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

15.ahk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#NotrayIcon
2+
Run, C:\ProgramData\Nova Macros

2.ahk

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
SetWorkingDir C:\Windows\System32
6+
7+
global Ejecutable := "mspaint.exe"
8+
9+
IfWinExist, ahk_exe %Ejecutable%
10+
{
11+
WinActivate, ahk_exe %Ejecutable%
12+
}
13+
else
14+
{
15+
Run, C:\Windows\System32\mspaint.exe
16+
}

3.ahk

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
SetWorkingDir C:\Windows\System32
6+
Run, C:\Windows\System32\cmd.exe

4.ahk

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
SetWorkingDir C:\Users\victo\Desktop
6+
Run, https://github.com/elmodo7

Game1.ahk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#NoEnv
2+
#NoTrayIcon
3+
Msgbox, League of Legends Button

Game2.ahk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#NoEnv
2+
#NoTrayIcon
3+
Msgbox, Apex Legends Button

Game3.ahk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#NoEnv
2+
#NoTrayIcon
3+
Msgbox, Minecraft Button

Game4.ahk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#NoEnv
2+
#NoTrayIcon
3+
Msgbox, 7Days2Die Button

OBS13.ahk

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
SetWorkingDir C:\Users\victo\Desktop
6+
Run, C:\Users\%A_UserName%\Videos

OBS14.ahk

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
SetWorkingDir C:\Program Files\obs-studio\bin\64bit
6+
7+
global Ejecutable := "obs64.exe"
8+
9+
IfWinExist, ahk_exe %Ejecutable%
10+
{
11+
WinActivate, ahk_exe %Ejecutable%
12+
}
13+
else
14+
{
15+
Run, C:\Program Files\obs-studio\bin\64bit\obs64.exe
16+
}

0 commit comments

Comments
 (0)