Engineer // Certification // Knowledge Base
The Architect Academy
Master the Data Center simulation engine and build high-performance framework extensions with our deep-layer guides.
foundation
Foundations
psychology
Architect SDK
terminal
codeQuick Start: Your First Hook
// 1. Initialize your Architectural Blueprint
using greg.Sdk.Services;
using MelonLoader;
// 2. Hijack the Simulation Data Flow
[assembly: MelonInfo(typeof(MyMod), "MyMod", "1.0.0", "Marvin")]
public class MyMod : MelonMod {
public override void OnInitializeMelon() {
GregEvents.OnPacketReceived.AddListener((pkt) => {
MelonLogger.Msg("Packet Hijacked!");
});
}
}