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": | |
| [ |
| 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 |
| 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 |
| 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 |