See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
Note: This tutorial uses a backported model, and does not cover creating & exporting a custom model
I'll be using the wyvern model from 3.0. You can source this model on your own.
Note: This tutorial uses a backported model, and does not cover creating & exporting a custom model
As usual, we have our custom folder root at the root of the game_pak. In my case, the folder is genesis
Models can be put in genesis/objects
For the 8 box freighter, it should be in genesis\objects\env\06_unit\05_carriage
| -- albion online wireshark dissector.... or at least a beginning | |
| -- used as ref: https://github.com/rafalfigura/AO-Radar/blob/master/AlbionRadaro/PhotonPacketHandler/PhotonPacketHandler.cs | |
| -- (c) Green Sky | |
| photon_protocol = Proto("Photon", "Photon Protocol") | |
| peer_id = ProtoField.uint16("photon.peer_id", "peer_id", base.DEC) | |
| crc_enabled = ProtoField.bool( "photon.crc_enabled", "crc_enabled") | |
| command_count = ProtoField.uint8( "photon.command_count", "command_count", base.DEC) | |
| time_stamp = ProtoField.int32( "photon.time_stamp", "time_stamp", base.DEC) |
| #!/bin/sh | |
| set -eu | |
| create_iconset() { | |
| mkdir -p Ghidra.iconset | |
| cat << EOF > Ghidra.iconset/Contents.json | |
| { | |
| "images": | |
| [ |
| 774f 4646 0001 0000 0000 3d54 000e 0000 | |
| 0000 5940 0000 0000 0000 0000 0000 0000 | |
| 0000 0000 0000 0000 0000 0000 4646 544d | |
| 0000 3d38 0000 001c 0000 001c 5f7e 70ab | |
| 4744 4546 0000 3d14 0000 0022 0000 0028 | |
| 0096 0024 4f53 2f32 0000 01b8 0000 0047 | |
| 0000 0056 85b4 f225 636d 6170 0000 0364 | |
| 0000 00b6 0000 015a b15a f47a 6376 7420 | |
| 0000 041c 0000 0004 0000 0004 0021 0279 | |
| 6761 7370 0000 3d0c 0000 0008 0000 0008 |
| import base64 | |
| from django.core.files.base import ContentFile | |
| from rest_framework import serializers | |
| class Base64ImageField(serializers.ImageField): | |
| def from_native(self, data): | |
| if isinstance(data, basestring) and data.startswith('data:image'): | |
| # base64 encoded image - decode |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Web.Http; | |
| using System.Web.Http.Tracing; | |
| using System.Reflection; | |
| using Owin; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Drawing.Imaging; | |
| using System.Runtime.InteropServices; | |
| using System.IO; | |
| namespace S16.Drawing | |
| { | |
| public class DDSImage |