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
| http://ohmnivore.elementfx.com/vid/spmk_spells.mp4 | |
| http://ohmnivore.elementfx.com/press/sheet.php?p=sunpunch_moonkick |
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
| package quickmsg; | |
| import sys.net.Host; | |
| import sys.net.Socket; | |
| /** | |
| * ... | |
| * @author Ohmnivore | |
| */ | |
| class Server extends Base |
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
| package util; | |
| import flixel.FlxG; | |
| import haxe.xml.Fast; | |
| import flixel.tile.FlxTilemap; | |
| import haxe.Json; | |
| import flixel.tile.FlxTile; | |
| import flixel.FlxObject; | |
| import openfl.Assets; | |
| import entities.Spawn; |
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
| [HellShell demo](http://ohmnivore.elementfx.com/wp-content/uploads/2014/11/HellShell.swf) |
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
| #include <sourcemod> | |
| //Plugin signature | |
| public Plugin:myinfo = | |
| { | |
| name = "Frenzy", | |
| author = "Ohmnivore", | |
| description = "Upon round end, forces everyone to taunt, and forces mini-crits for 30 seconds.", | |
| version = "1.0", | |
| url = "http://www.sourcemod.net/" |
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
| { | |
| "entity": | |
| [ | |
| { | |
| "tag":"player", "x":50, "y":50, | |
| "art": | |
| [ | |
| { | |
| "width":16, "height":16, "path":"assets/images/sumohulk.png", | |
| "animation": |
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
| http://ohmnivore.elementfx.com/FlxShell.swf |
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
| package; | |
| import flixel.FlxG; | |
| //request Player; | |
| class TestScript | |
| { | |
| public function new() | |
| { | |
| FlxG.log.add("TestFunction"); |
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
| package ; | |
| import crashdumper.CrashDumper; | |
| import sys.io.Process; | |
| import sys.FileSystem; | |
| import sys.io.File; | |
| import sys.io.FileOutput; | |
| import haxe.io.Eof; | |
| /** | |
| * ... |