// Returns all tags related to this ability
UFUNCTION(BlueprintPure, Category="GAS|Ability|Tags")
void GetTags(FGameplayTagContainer & OutAbilityTags, FGameplayTagContainer & OutCancelAbilitiesWithTags, FGameplayTagContainer & OutBlockAbilitiesWithTags, FGameplayTagContainer & OutActivationOwnedTags, FGameplayTagContainer & OutActivationRequiredTags, FGameplayTagContainer & OutActivationBlockedTags, FGameplayTagContainer & OutSourceRequiredTags, FGameplayTagContainer & OutSourceBlockedTags, FGameplayTagContainer & OutTargetRequiredTags, FGameplayTagContainer & OutTargetBlockedTags, FGameplayTagContainer & OutCooldownTags);
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
import subprocess, time, os, requests | |
CHECK_INTERVAL = 1 # check changes every n secs | |
DISCORD_WEBHOOK = "https://discord.com/api/webhooks/..." | |
LAST_CACHE = "last.txt" | |
# read last commit from cache file | |
last = 0 | |
if os.path.isfile(LAST_CACHE): | |
with open(LAST_CACHE,'r') as f: |
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
import os | |
def get_running_exes(): # https://www.geeksforgeeks.org/python-get-list-of-running-processes/ | |
wmic_output = os.popen('wmic process get description, processid').read().strip() | |
items = wmic_output.split("\n") | |
exes = [] | |
for line in items: | |
if ".exe" in line.strip(): | |
exe = line.split(" ")[0].rstrip() |
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 | |
REM put this in your .../World of Warcraft/_game_version_/Fonts folder | |
REM then drag n drop a font onto it to replace the games fonts | |
del ARIALN.ttf | |
del DAMAGE.ttf | |
del FRIENDS.ttf | |
del FRIZQT__.ttf | |
del MORPHEUS.ttf |
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
SceneManager.LoadScene(SceneManager.GetActiveScene().name); |
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
// Requires yt-dlp.exe in %PATH% !! | |
using System.Collections; | |
using UnityEngine; | |
using UnityEngine.Events; | |
using UnityEngine.Windows; | |
public class IllegalScript : MonoBehaviour | |
{ | |
private string savefolder; | |
private string current_url; |
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
using TMPro; | |
using UnityEngine; | |
[RequireComponent(typeof(OnlineScoreRecorder))] | |
public class OldSchoolNameEntry : MonoBehaviour | |
{ | |
[SerializeField] private TMP_Text _firstLetterButton; | |
[SerializeField] private TMP_Text _secondLetterButton; |
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
# if you know you know | |
import os, shutil | |
out_folder = "./bundled/" | |
pkg_folder = "./packages/" | |
rap_folder = "./exdata/" | |
rap_files = [] |
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
REM Killall oculus to get rid of the botnets... or if Oculus Link just is stubborn for some reason... | |
REM Killing everything Oculus related, and then opening the Oculus app again usually fixes it | |
REM Run as admin! | |
REM Multiples because theyre stubborn sometimes | |
taskkill /f /im OculusClient.exe | |
taskkill /f /im OVRRedir.exe | |
taskkill /f /im oculus-platform-runtime.exe |
NewerOlder