Skip to content

Instantly share code, notes, and snippets.

@ZeusAFK
Created October 19, 2012 14:19
Show Gist options
  • Save ZeusAFK/3918460 to your computer and use it in GitHub Desktop.
Save ZeusAFK/3918460 to your computer and use it in GitHub Desktop.
Address class knight online
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace ZeusAFK_koxp.NET
{
public partial class Addresses : Converter
{
public Addresses()
{
InitializeComponent();
}
//Pointers
public int PTR_CHR = 0xD74C9C;
public int PTR_DLG = 0xD74D54;
public int PTR_PKT = 0xD74D20;
public int SND_FNC = 0x476762; // Auto Update Algorith implemented.
public int SEND_PTR = 0xCEED20;
public int FNCZ = 0x835DD0;
public int FLDB = 0xD74C98;
//Offsets
public int OFF_ID = 0x678;
public int OFF_HP = 0x6B4;
public int OFF_MAXHP = 0x6B0;
public int OFF_MP = 0xC50;
public int OFF_MAXMP = 0xC4C;
public int OFF_WH = 0x6B8;
public int OFF_CLASS = 0x5E8;
public int OFF_MOB = 0x644;
public int OFF_EXP = 0x9E0;
public int OFF_MAXEXP = 0x9D8;
public int OFF_LVL = 0x5EC;
public int OFF_ZONE = 0xA64;
public int OFF_X = 0xD8;
public int OFF_Y = 0xE0;
public int OFF_Z = 0xC8;
public int OFF_NAME = 0x5CC;
public int OFF_MX = 0xD84;
public int OFF_MY = 0xD8C;
public int OFF_MZ = 0xD88;
public int OFF_MOVTYPE = 0xEE8;
public int OFF_GO_X = 0xEF4;
public int OFF_GO_Y = 0xEFC;
public int OFF_MVCHRTYP = 0x3F0;
public int OFF_PARTY = 0xC3D368;
public int OFF_PARTY_VALUE = 0x370;
public int OFF_PARTY_OFFSET = 0x1CC;
public int OFF_PARTY_HP = 0x14;
public int OFF_PARTY_MAXHP = 0x18;
public int OFF_PARTY_LEVEL = 0xC;
public int OFF_PARTY_CLASS = 0x10;
public int OFF_PARTY_NAME = 0x30;
public int OFF_PARTY_NUMBER = 0x364;
public int OFF_PARTY_ID = 0x8;
}
}
@shadowg
Copy link

shadowg commented Jan 28, 2013

Hey Zeus, I've been looking your code so I can learn. I usually have no problem coding, since a code for a while. But I am having hard times, when looking for unusual base adress on cheat engine. Like, fiding a timer for an skill, x,y,z, coords, etc... Do you have any tips or know anywher I can study from?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment