StatusUpdateType

ELSATHESLAYER

Пляшущий с бубном
Участник
Сообщения
37
Розыгрыши
0
Решения
2
Репутация
0
Реакции
1
Баллы
245
Хроники
  1. Master Class
Исходники
Присутствуют
Сборка
Essence Mobius
Привет ,подскажите плиз ,где можно найти эти опкоды
Код:
LEVEL(0x01, Creature::getLevel),
    EXP(0x02, creature -> (int) creature.getStat().getExp()),
    STR(0x03, Creature::getSTR),
    DEX(0x04, Creature::getDEX),
    CON(0x05, Creature::getCON),
    INT(0x06, Creature::getINT),
    WIT(0x07, Creature::getWIT),
    MEN(0x08, Creature::getMEN),
    
    CUR_HP(0x09, creature -> (long) creature.getCurrentHp()),
    MAX_HP(0x0A, creature -> creature.getMaxHp()),
    CUR_MP(0x0B, creature -> (int) creature.getCurrentMp()),
    MAX_MP(0x0C, Creature::getMaxMp),
    CUR_LOAD(0x0E, Creature::getCurrentLoad),
    
    P_ATK(0x11, Creature::getPAtk),
    ATK_SPD(0x12, Creature::getPAtkSpd),
    P_DEF(0x13, Creature::getPDef),
    EVASION(0x14, Creature::getEvasionRate),
    ACCURACY(0x15, Creature::getAccuracy),
    CRITICAL(0x16, creature -> (int) creature.getCriticalDmg(1)),
    M_ATK(0x17, Creature::getMAtk),
    CAST_SPD(0x18, Creature::getMAtkSpd),
    M_DEF(0x19, Creature::getMDef),
    PVP_FLAG(0x1A, creature -> (int) creature.getPvpFlag()),
    REPUTATION(0x1B, creature -> creature.isPlayer() ? creature.asPlayer().getReputation() : 0),
    
    CUR_CP(0x21, creature -> (int) creature.getCurrentCp()),
    MAX_CP(0x22, Creature::getMaxCp),
    
    CUR_DP(0x2a, creature -> creature.isPlayer() ? creature.asPlayer().getDeathPoints() : 0),
    MAX_DP(0x2b, creature -> creature.isPlayer() ? creature.asPlayer().getMaxDeathPoints() : 0),
    
    CUR_BP(0x2c, creature -> creature.isPlayer() ? creature.asPlayer().getBeastPoints() : 0),
    MAX_BP(0x2d, creature -> creature.isPlayer() ? creature.asPlayer().getMaxBeastPoints() : 0),
 
Решение
в Engine.dll
 
Решение
Данный сайт использует cookie. Вы должны принять их для продолжения использования. Узнать больше…