Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[BcStorm] - Black Room & Furni Gone! [IMPORTANT - THANKS!]

Newbie Spellweaver
Joined
Aug 4, 2010
Messages
6
Reaction score
0
Hi ragezoner's, whenever I put something down in my room and logging out and in, then when I'm trying to go in to the room again it is still black and can't see anything....


This is my 2nd problem:
whenever I put something down in my room and restarting server and going in to the room again, then the furni is gone in my room and it's in my hand instead...

Here's also some screenies of my problems:

-Hab- - [BcStorm] - Black Room & Furni Gone! [IMPORTANT - THANKS!] - RaGEZONE Forums

-Hab- - [BcStorm] - Black Room & Furni Gone! [IMPORTANT - THANKS!] - RaGEZONE Forums

-Hab- - [BcStorm] - Black Room & Furni Gone! [IMPORTANT - THANKS!] - RaGEZONE Forums


Thank you for your help!
 
Banned
Banned
Joined
Aug 8, 2008
Messages
214
Reaction score
64
I am having the same issue at the moment. I think you'll need to alter some of the tables in the database. They have two separate items table which I don't quite understand at the moment. If I find out, I will notify you the solution.
 
Upvote 0
Banned
Banned
Joined
Aug 8, 2008
Messages
214
Reaction score
64
Well
the black backround, might be because you havent edited
the backround, i believe it exists in your config.php

This has nothing to do with the external configuration files. This is strictly server/database side.
 
Upvote 0
Newbie Spellweaver
Joined
Mar 27, 2012
Messages
60
Reaction score
10
You need to run this @ your database

#1

CREATE DEFINER=`root`@`localhost` PROCEDURE `getroomitems`(IN `roomid` INT(10) UNSIGNED)
BEGIN
SELECT items_rooms.item_id, items_rooms.x, items_rooms.y, items_rooms.n, items.base_id, items_extradata.data, items.rareid, items.group_data
FROM items_rooms
JOIN items ON (items.item_id = items_rooms.item_id)
LEFT JOIN items_extradata ON (items_extradata.item_id = items.item_id)
WHERE items_rooms.room_id = roomid;
END
;;
DELIMITER ;

#2

CREATE DEFINER=`root`@`localhost` PROCEDURE `getuseritems`(IN `userid` INT(10) UNSIGNED)
BEGIN
SELECT items_users.item_id, items.base_id, items_extradata.data, items.rareid, items.group_data
FROM items_users
JOIN items ON (items.item_id = items_users.item_id)
LEFT JOIN items_extradata ON (items_extradata.item_id = items.item_id)
WHERE items_users.user_id = userid;
END
;;
DELIMITER ;
 
Upvote 0
Back
Top