Search results

  1. X

    Help about notice packets.

    typedef Array<char, 128> ChatMessage;
  2. X

    Help about notice packets.

    notice packet struct like that #pragma pack(push, 1) struct AdminCmdNoticeAllOutgoing { UINT16 opcode{ 0xF90B }; // w/ null-terminator UINT8 messageLength; ChatMessage message; }; #pragma pack(pop)
  3. X

    Help about notice packets.

    Im still tryna understand whats problem inside of code, after sending custom notice ps_game crashed. *** AdminCmdNoticeAllOutgoing createNotice(const std::string& message) { AdminCmdNoticeAllOutgoing notice{}; notice.messageLength = message.length(); std::memcpy(&notice.message...
  4. X

    GetProfileString function get file from inside data.sah

    Hey, im wondering is there possible to get and read .ini files from data.sah ? If its possible i am looking for guide about this. I am gonna use with GetProfileString and WriteProfileString methods.
  5. X

    Does anyone whats CCell:: structures and what do they do?

    0042A3B0 - CCell::EnterDoor 0042A410 - CCell::LeaveDoor 0042A420 - CCell::SendCellInfoEnter 0042AA90 - CCell::SendCellInfoLeave 0042ACA0 - CCell::SendAll 0042ADA0 - CCell::SendRange 0042AF40 - CCell::PSendAll< I have no information about these address structures, what exactly do they do?
Back
Top