I hereby claim:
- I am scottstamp on github.
- I am darkstar851 (https://keybase.io/darkstar851) on keybase.
- I have a public key ASDV08iKddt2_rQry1a0OATbD8DC5DfIIsk0DoaZkuiXdQo
To claim this, I am signing this object:
| /// @name BC Achievement Booster | |
| /// @group Utility | |
| /// @scripter 1.0.0-beta | |
| var count = 0; | |
| OnIntercept((In["Achievement"], In["BuildersClubFurniCount"]), e => { | |
| if (count < 10) { | |
| if (e.Packet.Header == In["Achievement"] && e.Packet.ReadInt() != 196) { | |
| return; | |
| } |
| /// @name Roller Queue | |
| /// @group Utility | |
| /// @scripter 1.0.0-beta | |
| OnEntitySlide(x => { | |
| var roller = FloorItems.At(Self.Location.XY).NamedLike("Roller").FirstOrDefault(); | |
| if (roller != null) { | |
| switch ((Directions)roller.Direction) { | |
| case Directions.North: | |
| if (x.PreviousTile == Self.Location.Subtract(0, 1)) |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading.Tasks; | |
| using System.Windows.Forms; | |
| namespace Antidote | |
| { | |
| static class Program | |
| { |
| using System; | |
| public enum IncomingMessageCodes : short | |
| { | |
| LegacyBannerPublicKey = 1, | |
| ClubAndSecurityLevels, | |
| Ok, | |
| Film, | |
| UserObject, | |
| WalletBalance, |
| <?php | |
| // replace $key with something secret or face peril! | |
| error_reporting(E_ALL); | |
| $key = 'secret'; | |
| $sec = $_GET['sec']; | |
| $payload = $_POST['payload']; | |
| if (isset($payload) && $sec == $key) { | |
| $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); | |
| $res = socket_connect($sock, "127.0.0.1", 3001); |
| using Flazzy; | |
| using Flazzy.Tags; | |
| using System.Drawing; | |
| using System.IO; | |
| using System.Linq; | |
| namespace FlassetReplacer | |
| { | |
| class Program | |
| { |
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| namespace Hideaway.Common.Communication | |
| { | |
| public class ProtocolReader | |
| { | |
| private byte[] _buffer; | |
| private int position = 0; |
| using Sulakore.Protocol; | |
| using System.Collections.Generic; | |
| namespace WiredIdent | |
| { | |
| public class HCatalogPage | |
| { | |
| public bool Visible { get; set; } | |
| public int Icon { get; set; } | |
| public int Id { get; set; } |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Diagnostics; | |
| using System.Collections.Generic; | |
| using System.Text.RegularExpressions; | |
| namespace Sulakore.Network.Protocol | |
| { | |
| [DebuggerDisplay("Id: {Id} | {ToString()}")] |