Jump to content

Machiezmo

Members
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

847 profile views

Machiezmo's Achievements

Poring

Poring (1/15)

1

Reputation

  1. I've been trying to get roBrowser to work and I think I have everything setup right...I've used the debugger and it pulls the files out of the grf's. My issue seems to come while loading the cursors.spr file. The specific error according to the Console is: Cursor::init() - SPR::load() - Incorrect header "<s", must be "SP" After a long process I had tracked it down to the roBrowser\src\Loaders\Sprite.js file line 57-63 this.fp = new BinaryReader(data); this.header = this.fp.readBinaryString(2); this.version = this.fp.readUByte()/10 + this.fp.readUByte(); if (this.header != 'SP') { throw new Error('SPR::load() - Incorrect header "' + this.header + '", must be "SP"'); } so maybe if someone who has roBrowser working on their server maybe could share their cursors.spr file maybe it'd work? I am just wondering if mine is too old or something or just not the right version...I just don't know what else to try.
  2. Actually from re-reading I caught something....it kind of looks like your MySQL is actually refusing the connection almost....I'll do some digging and see what the true error means After a bit of searching I found this: "Server dropped an incorrect or too large packet. If mysqld gets a packet that is too large or incorrect, it assumes that something has gone wrong with the client and closes the connection. To fix, you can increase the maximal packet size limit “max_allowed_packet” in my.cnf file, eg. set max_allowed_packet = 128M, then sudo /etc/init.d/mysql restart." This may or may not be the issue but worth a try
×
×
  • Create New...