This file contains hidden or 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
// Fill out your copyright notice in the Description page of Project Settings. | |
#include "ArcInvExampleEngineSubsys.h" | |
#include "AbilitySystemGlobals.h" | |
void UArcInvExampleEngineSubsys::Initialize(FSubsystemCollectionBase& Collection) | |
{ | |
Super::Initialize(Collection); |
This file contains hidden or 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
// 2017-2018 Puny Human Games | |
#include "ArcAbilitySystemComponent.h" | |
#include "GameplayTags.h" | |
#include "Components/InputComponent.h" | |
#include "EngineMinimal.h" | |
#include "ArcCoreGameInstSubsys_Abilities.h" | |
UArcAbilitySystemComponent::UArcAbilitySystemComponent(const FObjectInitializer& ObjectInitializer) |
This file contains hidden or 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
AnyKey | |
MouseX | |
MouseY | |
MouseScrollUp | |
MouseScrollDown | |
MouseWheelAxis | |
LeftMouseButton | |
RightMouseButton |
This file contains hidden or 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 UnityEngine; | |
using System.Collections.Generic; | |
using System; | |
public class Dispatcher : MonoBehaviour { | |
Queue<Action> JoinActions = new Queue<Action>(); | |
public static Dispatcher Instance = null; |
This file contains hidden or 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
private static readonly Regex HasteKeyRegex = new Regex(@"{""key"":""(?<key>[a-z].*)""}", RegexOptions.Compiled); | |
public static string Haste(this string message) | |
{ | |
string hastebin = @"http://hastebin.com/"; | |
using (WebClient client = new WebClient()) | |
{ | |
string response; | |
try |
This file contains hidden or 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 Newtonsoft.Json; | |
using Newtonsoft.Json.Linq; | |
using REsideUtility; | |
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Text; |
This file contains hidden or 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
Functions defined in dota\scripts\vscripts\framework\entities | |
--usage EntityFramework.CreateEntity(...) | |
CreateEntity [function, function: 0x169ab288] | |
GetScriptClassForDesignerName [function, function: 0x169a4d08] | |
GetNativeClassForScriptClass [function, function: 0x169a5258] | |
scriptClassTable [table, table: 0x169ab2c0] | |
InstallClasses [function, function: 0x169a77a8] | |
GetEntityHandle [function, function: 0x169ab310] | |
RegisterScriptClass [function, function: 0x169a7790] |
This file contains hidden or 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
Dependencies: | |
* Json.net: http://james.newtonking.com/json | |
Up to date Revision Databases: | |
* http://testoutfit.info/lebot/RevisionData/ | |
If you wish to use this, PLEASE read this: http://testoutfit.info/lebot/RevisionData/readme.txt | |
This file contains hidden or 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
Dependencies: | |
* json.net: http://james.newtonking.com/json | |
* LZMA: http://testoutfit.info/lebot/LZMA.dll (I had to custom build this. It's not a virus trust me) | |
Manifest Locations: | |
Live: "http://manifest.patch.station.sony.com/patch/sha/manifest/planetside2/planetside2-live/live/planetside2-live.sha.soe" | |
Live-Last: "http://manifest.patch.station.sony.com/patch/sha/manifest/planetside2/planetside2-live/livelast/planetside2-live.sha.soe" |
This file contains hidden or 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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.IO; | |
using System.Xml; | |
using System.Drawing; | |
namespace AreaMapper | |
{ |
NewerOlder