Fixed all the errors, Only error I am getting is when I put something in the room and unload the room.. It also goes away, Got any fixes for it?Console is useful.
Yep fixed it. ThanksCheck the emulator logs, probably a MySQL error so the furni doesn't save.
So I gotta run it as a query where and/or do what?UPDATE items SET user_id = 10, room_id='' WHERE id = 321;UPDATE items SET user_id = 10, room_id='' WHERE id = 310
The queries fucked up + looks like it's trying too execute two in the same query.
Correct:
UPDATE `items` SET `user_id` = '10', `room_id` ='' WHERE id = '321'
UPDATE `items` SET `user_id` = '10', `room_id` ='' WHERE id = '310'
Thank youOh no looking at the query, change roomid='' to roomid='0'
No problemThank you
WELL How do i fix it then ?_?Might be the wrong one as I can remember there being lots of fucked up queries in plus.
Read the error!!!WELL How do i fix it then ?_?
Read the error!!!
It's pretty straight forward, it tells you what's wrong with it and basically where too look to fix it
yea but it fucks up other things as wellIt's pretty straight forward, it tells you what's wrong with it and basically where too look to fix it