[BCSTORM] Furnitrure Fix [BC]

Results 1 to 10 of 10
  1. #1
    Just out there.. Flare is offline
    MemberRank
    Jun 2012 Join Date
    269Posts

    [BCSTORM] Furnitrure Fix [BC]

    well this is simple and easy. run this in your database.


    Spoiler:

    DELIMITER $$
    --
    -- Procedures
    --
    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
    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$$


    CREATE DEFINER=`root`@`localhost` PROCEDURE `getuseritems`(
    IN userid int(10) unsigned
    )
    BEGIN
    SELECT items_users.item_id, items.base_id, items_extradata.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 ;


    thanks,


  2. #2
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    What exactly does it fix with the furniture?

  3. #3
    Just out there.. Flare is offline
    MemberRank
    Jun 2012 Join Date
    269Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    when you place it , it wont pick your furniture up, etc.

  4. #4
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    Quote Originally Posted by HabflareH View Post
    when you place it , it wont pick your furniture up, etc.
    Awesome, I'll add it soon, thanks :)

  5. #5
    Banned rafa95123 is offline
    BannedRank
    May 2009 Join Date
    /home/RaphaLocation
    564Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    This already come with database bro. '-'

  6. #6
    Alpha Member Moogly is offline
    MemberRank
    Feb 2008 Join Date
    Pool LidoLocation
    2,322Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    In some cases though these procedures aren't setup correctly, or they just don't work, sometimes you need to reset them. In any case whenever furniture "disappears" after you reload the hotel, this is usually the culprit, and if it's not pray you figure it out.

  7. #7
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,610Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    Quote Originally Posted by Moogly View Post
    In some cases though these procedures aren't setup correctly, or they just don't work, sometimes you need to reset them. In any case whenever furniture "disappears" after you reload the hotel, this is usually the culprit, and if it's not pray you figure it out.
    Thats what he said.

  8. #8
    Banned Habp is offline
    BannedRank
    Mar 2012 Join Date
    TCPOELocation
    208Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    Gives me that error

  9. #9
    Enthusiast astroqwerty101 is offline
    MemberRank
    Nov 2011 Join Date
    AustraliaLocation
    25Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    Quote Originally Posted by Habp View Post
    Gives me that error
    Yeah same error, how do you fix this problem :S

  10. #10
    Member Qbus is offline
    MemberRank
    Mar 2012 Join Date
    In your mind.Location
    60Posts

    Re: [BCSTORM] Furnitrure Fix [BC]

    Maybe a fix for the 2 post above this post :p -> http://forum.ragezone.com/f353/bcstr...hoenix-906600/

    Post says:
    Quote Originally Posted by Giles121 View Post
    clear items table



Advertisement