https://www.youtube.com/playlist?list=PLKK11Ligqitg9MOX3-0tFT1Rmh3uJp7kA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
SET PhpStormPath=D:\Programs\JetBrains\PhpStorm 2018.1.6\bin\PhpStorm64.exe | |
echo Adding file entries | |
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm" /t REG_SZ /v "" /d "Open in PhpStorm" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm" /t REG_EXPAND_SZ /v "Icon" /d "%PhpStormPath%,0" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm\command" /t REG_SZ /v "" /d "%PhpStormPath% \"%%1\"" /f | |
echo Adding within a folder entries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
taskkill /f /im TekkenGame-Win64-Shipping.exe | |
taskkill /f /im "TEKKEN 7.exe" | |
for /f "tokens=2 delims=," %%I in ( | |
'wmic process where "name='TekkenGame-Win64-Shipping.exe'" get ExecutablePath^,Handle /format:csv ^| find /i "TekkenGame-Win64-Shipping.exe"' | |
) do taskkill /f /im TekkenGame-Win64-Shipping.exe | |
for /f "tokens=2 delims=," %%I in ( | |
'wmic process where "name='TEKKEN 7.exe'" get ExecutablePath^,Handle /format:csv ^| find /i "TEKKEN 7.exe"' | |
) do taskkill /f /im "TEKKEN 7.exe" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////////////////////////////////////////////////////////////////////////////// | |
//// Valid access levels are as follows | |
//// startvote - not used | |
//// changemap | |
//// pause - Pause server gameplay | |
//// cheat - Use server cheat commands | |
//// private - Password protect server | |
//// balance - Group Ignores server team balance | |
//// chat - Admin chat and Server broadcast | |
//// kick |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
#MaxHotkeysPerInterval 200 | |
SetBatchLines -1 ; decrease delay between lines | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
#IfWinActive ahk_exe Discord.exe ; script works only in Discord |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Launch] | |
[/Script/EngineSettings.GameMapsSettings] | |
GameInstanceClass=/Script/Engine.GameInstance | |
EditorStartupMap=/Engine/Maps/Templates/Template_Default | |
GameDefaultMap=/Engine/Maps/Entry | |
ServerDefaultMap=/Engine/Maps/Entry | |
GlobalDefaultGameMode="/Script/Engine.GameMode" | |
LocalMapOptions= |