• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC can't load house data tfs 0.4 3884

ralke

(҂ ͠❛ ෴ ͡❛)ᕤ
Joined
Dec 17, 2011
Messages
1,515
Solutions
27
Reaction score
868
Location
Santiago - Chile
GitHub
ralke23
Twitch
ralke23
hi, when i updated my map, i get a strange error that i couldn't solve. the BLOB data is missing, cant assign now, using tfs 0.4 3884, here i upload an image to show the error, thanks in advance
 

Attachments

  • cant load house data.png
    cant load house data.png
    103 KB · Views: 11 · VirusTotal
Solution
It's phpmyadmin visualisation of data. It probably means that BLOB has size 0 bytes and it's not NULL.
You can always assign it with:
Code:
UPDATE `HERE_NAME_OF_TABLE` SET `data` = 'HERE BYTES' WHERE `id` = 837
You can also click Edit on this row in phpmyadmin it use old editor script (not new 'inline' editor added in some version of phpmyadmin).
It's phpmyadmin visualisation of data. It probably means that BLOB has size 0 bytes and it's not NULL.
You can always assign it with:
Code:
UPDATE `HERE_NAME_OF_TABLE` SET `data` = 'HERE BYTES' WHERE `id` = 837
You can also click Edit on this row in phpmyadmin it use old editor script (not new 'inline' editor added in some version of phpmyadmin).
 
Solution
It's phpmyadmin visualisation of data. It probably means that BLOB has size 0 bytes and it's not NULL.
You can always assign it with:
Code:
UPDATE `HERE_NAME_OF_TABLE` SET `data` = 'HERE BYTES' WHERE `id` = 837
You can also click Edit on this row in phpmyadmin it use old editor script (not new 'inline' editor added in some version of phpmyadmin).

thanks for the quick response, a last question, how do i know how many bytes i have to insert?
 
thanks for the quick response, a last question, how do i know how many bytes i have to insert?
I don't think you have to insert any bytes.
Bytes in that table are items in houses. 'empty' houses have some bytes, because there are doors/windows which can be open/closed and this 'state' stored as 'house items'.
If there is a house with 0 bytes of data it probably means it has no door/windows or it's bugged map - mapper did not mark doors/windows as part of that house.
 
Back
Top