Page 1 of 2

Errors: r3948

Posted: Sat Aug 10, 2013 11:47 am
by tagban
When updating triggers.sql
::

Code: Select all

[Err] 1235 - This version of MySQL doesn't yet support 'multiple triggers with the same action time and event for one table'
[Err] CREATE TRIGGER char_delete
	BEFORE DELETE ON chars
	FOR EACH ROW
BEGIN
	DELETE FROM `char_effects`   WHERE `charid` = OLD.charid;
	DELETE FROM `char_equip`     WHERE `charid` = OLD.charid;
	DELETE FROM `char_exp`       WHERE `charid` = OLD.charid;
	DELETE FROM `char_inventory` WHERE `charid` = OLD.charid;
	DELETE FROM `char_jobs`      WHERE `charid` = OLD.charid;
	DELETE FROM `char_look`      WHERE `charid` = OLD.charid;
	DELETE FROM `char_pet`       WHERE `charid` = OLD.charid;
	DELETE FROM `char_points`    WHERE `charid` = OLD.charid;
	DELETE FROM `char_profile`   WHERE `charid` = OLD.charid;
	DELETE FROM `char_skills`    WHERE `charid` = OLD.charid;
	DELETE FROM `char_stats`     WHERE `charid` = OLD.charid;
	DELETE FROM `char_storage`   WHERE `charid` = OLD.charid;
	DELETE FROM `char_vars`      WHERE `charid` = OLD.charid;
	DELETE FROM `char_weapon_skill_points` WHERE `charid` = OLD.charid;
	DELETE FROM `auction_house`  WHERE `seller` = OLD.charid;
	DELETE FROM `delivery_box`   WHERE `charid` = OLD.charid;
END ;
[Msg] Finished - Unsuccessfully
--------------------------------------------------
Aside from that, charactors can NOT be created, Error code: FFXI-3322 (with a bunch of JP writing). This happens as soon as you pick a name and try to 'enter' the world. I had a newly created char from last update that I tried going back into for Port SanD, and it just errored out at "Downloading Data".

All of this started after R3948, so just a heads up.

Re: Errors: r3948

Posted: Sat Aug 10, 2013 11:27 pm
by kjLotus
works fine for me, mysql version?

Re: Errors: r3948

Posted: Sun Aug 11, 2013 6:07 am
by tagban
Whatever the latest was two months ago. I re-did my SQL and fixed ht, but am still unable to create charactors. If you want to give it a shot, point to hltracker.com as the server. But the error 3322, not sure whats going on.

Re: Errors: r3948

Posted: Sun Aug 11, 2013 6:11 am
by tagban
know what, silly me I had forgotten to move the data file over from POL Folder to FFXI folder on this computer. Apparently the dude I had asked to test it also, did the same.

Now I'm just having issues loading the main zones, such as windy/SanD/etc. But can make a char. I'll redo zoneip configuration after killing zone settings/reimporting.

Re: Errors: r3948

Posted: Sun Aug 11, 2013 6:34 am
by tagban
Unfortunately, no luck, but it appears to only happen to charactors going to the starting cities, but it seems to crash the gameserver (Which I've rebuilt several times using clean LUA's and source files.
Error.png

Re: Errors: r3948

Posted: Sun Aug 11, 2013 6:41 am
by tagban
Okay I know its the "newly created charactors" that aren't working, instead of the zones. Apparently there is something screwy with the charactor creation process? I even tried manually moving the charactor via SQL to another zone. And it crashes on "is coming to world" in game server (error attached). I also know that my older chars still work fine.
error2.png

Re: Errors: r3948

Posted: Sun Aug 11, 2013 12:21 pm
by kjLotus
i see, fixed now

Re: Errors: r3948

Posted: Sun Aug 11, 2013 12:29 pm
by tagban
Cool so I didn't break something?

Re: Errors: r3948

Posted: Sun Aug 11, 2013 12:32 pm
by kjLotus
no, strings don't like it when you insert nothing

Re: Errors: r3948

Posted: Sun Aug 11, 2013 12:58 pm
by tagban
Cool, this is why I post bugs when I find them. :)