Plus Emulator Revision RB3.0 [Community Project]

Page 36 of 50 FirstFirst ... 26282930313233343536373839404142434446 ... LastLast
Results 526 to 540 of 740
  1. #526
    Valued Member GrateZ4 is offline
    MemberRank
    Jul 2014 Join Date
    145Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Quote Originally Posted by Shredinator View Post
    Is the YouTube TV fix released? Otherwise I'll release my fix.

    Spoiler:
    Release it

  2. #527
    Account Upgraded | Title Enabled! Jamal7 is offline
    MemberRank
    Dec 2013 Join Date
    547Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Going to update the main tread with the latest found bugs. Could you guys help me find them :$
    So it's easier to fix them :D

    I advice you guys to create an account @ https://bliep.me ;)
    Since that's the latest version and one of the most updated Plus edition ;p

  3. #528
    I (L) Willem Spot Ify is offline
    MemberRank
    Jun 2012 Join Date
    The NetherlandsLocation
    294Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Are there bugs then lol?
    I cant find any on my and Duckietm's hotel with 280+ online without lagg. so yeahh it can hold 15+<<<<<<<<< (I use my own plus r2 edit but i think you can also hold 60+ with this edit :P)
    So where are you peaple talking about??

    Ps i cant release fixes at the moment because my laptop adapter is broken and im on vacation ;P

    Gr spotify

  4. #529
    Hakuna Matata Matata is offline
    MemberRank
    Sep 2012 Join Date
    DenmarkLocation
    807Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    I'm kind of confused, your SOS tickets works fine but mine doesn't?
    Have I missed anything? The fixes doesn't work, still DC when picking ticket.

  5. #530
    Valued Member Noman is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    137Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Quote Originally Posted by Sir Jamal View Post
    Going to update the main tread with the latest found bugs. Could you guys help me find them :$
    So it's easier to fix them :D

    I advice you guys to create an account @ https://bliep.me ;)
    Since that's the latest version and one of the most updated Plus edition ;p
    http://forum.ragezone.com/f353/plus-...ml#post8164116

    Posted a bug previous page.

  6. #531
    Apprentice maxl28 is offline
    MemberRank
    Sep 2012 Join Date
    12Posts

    Re: Plus Emulator R2.1 [Update] , [Release] &amp; [Fixes]

    Anyone experienced the huge bug that when u pick some furni it stays in the room untill it's reloaded?
    I'm working on a fix, so if someone got a advice for me feel free to let me know.

    - - - Updated - - -

    Oh and I got to notice that some mod tool fixes are not implented in this new release.
    For example when u try to send a ticket it causes an aritmetic operation overflow, which occures when u try to assign a too large value to an integer.

    FIX:


    Go to SupportTicket.css and change

    Code:
    Message.AppendInt32((SilverwaveEnvironment.GetUnixTimestamp() - (int)this.Timestamp) * 1000);
    to

    Code:
    Message.AppendInt32((SilverwaveEnvironment.GetUnixTimestamp() - (int)this.Timestamp));
    credits: thegeneral

    That should to the trick.
    Last edited by maxl28; 01-08-14 at 04:53 AM.

  7. #532
    Alpha Member Glee is offline
    MemberRank
    Jun 2009 Join Date
    Niagara Falls,Location
    2,225Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    They is a problem with :sa command it cuts out few words example :sa Hello World you'll only get Hello but not the world

  8. #533
    Valued Member Noman is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    137Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Quote Originally Posted by Glee View Post
    They is a problem with :sa command it cuts out few words example :sa Hello World you'll only get Hello but not the world
    It's the same with room alert via mod tools as well.

  9. #534
    Member TheWulles is offline
    MemberRank
    Jan 2014 Join Date
    SP - BrazilLocation
    53Posts

    big grin re: Plus Emulator Revision RB3.0 [Community Project]

    Hello, My ragezone the release came today to fix the tv's are not 100% Only to remember!


    So here we go.


    Search for: internal void InitRoomGroupBadges()


    Above that add:

    Code:
    internal void GetPlaylistYoutube()
            {
                uint ItemId = Request.PopWiredUInt();
                DataTable Ytplaylist;
    
    
    
    
                Room room = SilverwaveEnvironment.GetGame().GetRoomManager().GetRoom(this.Session.GetHabbo().CurrentRoomId);
                if (room == null || !room.CheckRights(this.Session, true))
                    return;
    
    
    
    
                using (IQueryAdapter dbClient = SilverwaveEnvironment.GetDatabaseManager().getQueryreactor())
                {
                    dbClient.setQuery("SELECT videoid, titre, descri FROM user_playlistyoutube WHERE user_id=@id LIMIT 20");
                    dbClient.addParameter("id", room.OwnerId);
                    Ytplaylist = dbClient.getTable();
                }
                int CountVideo = Ytplaylist.Rows.Count;
    
    
    
    
                if (CountVideo == 0)
                    return;
    
    
    
    
                GetResponse().Init(Outgoing.GetPlaylistYoutube);
                GetResponse().AppendInt32(ItemId); // Id ITEM
                GetResponse().AppendInt32(CountVideo); // Count Video
    
    
    
    
                foreach (DataRow Row in Ytplaylist.Rows)
                {
                    GetResponse().AppendString(Row["videoid"].ToString()); //Id Video
                    GetResponse().AppendString(Row["titre"].ToString()); // Title
                    GetResponse().AppendString(Row["descri"].ToString()); // desc
                }
    
    
    
    
                GetResponse().AppendString("La playlist de " + room.Owner); // Text box
                SendResponse();
            }
    
    
            //YT
            internal void PlayVideoYoutube()
            {
                GetResponse().Init(Outgoing.PlayVideoYoutube);
                GetResponse().AppendInt32(Request.PopWiredInt32()); // Id ITEM
                GetResponse().AppendString(Request.PopFixedString()); //Id VIDEO
                GetResponse().AppendInt32(0); // ???
                GetResponse().AppendInt32(0); // ???
                SendResponse();
            }
    Then look for:
    Code:
    internal static void WalkOnSnow(GameClientMessageHandler handler)        {
                handler.WalkOnSnow();
            }
    Below that add:
    Code:
    internal static void GetPlaylistYoutube(GameClientMessageHandler handler)        {
                handler.GetPlaylistYoutube();
            }
    
    
            internal static void PlayVideoYoutube(GameClientMessageHandler handler)
            {
                handler.PlayVideoYoutube();
            }
    Then look for:
    Code:
    handlers.Add(Incoming.SnowWalk, new StaticRequestHandler(SharedPacketLib.WalkOnSnow));
    Below that add:
    Code:
    handlers.Add(Incoming.GetPlaylistYoutube, new StaticRequestHandler(SharedPacketLib.GetPlaylistYoutube));
                handlers.Add(Incoming.PlayVideoYoutube, new StaticRequestHandler(SharedPacketLib.PlayVideoYoutube));

    Code:
    Sql's:
     CREATE TABLE IF NOT EXISTS `user_playlistyoutube` (  `id` int(11) NOT NULL AUTO_INCREMENT,
      `user_id` int(11) NOT NULL,
      `videoid` varchar(20) NOT NULL,
      `titre` varchar(50) NOT NULL,
      `descri` varchar(100) NOT NULL,
      PRIMARY KEY (`id`),
      KEY `user_id` (`user_id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ROW_FORMAT=FIXED AUTO_INCREMENT=2 ;
    
    
    --
    -- Extraindo dados da tabela `user_playlistyoutube`
    --
    
    
    INSERT INTO `user_playlistyoutube` (`id`, `user_id`, `videoid`, `titre`, `descri`) VALUES
    (1, 1, 'istJXUJJP0g', 'James brown', 'James brown - payback');
    
    Catalog_pages:
    
    INSERT INTO `catalog_pages` (`id`, `parent_id`, `caption`, `icon_color`, `icon_image`, `visible`, `enabled`, `min_rank`, `club_only`, `order_num`, `page_layout`, `page_headline`, `page_teaser`, `page_special`, `page_text1`, `page_text2`, `min_sub`, `page_text_details`, `page_text_teaser`, `vip_only`, `page_link_description`, `page_link_pagename`) VALUES
    (1654, 5, 'Youtube TV', 1, 1, '1', '1', 1, '0', 1634, 'default_3x3', '', '', '', '', '', 0, '', '', '0', '', '');
    
    Catalog_items:
    
    INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_belcredits`, `cost_duckets`, `amount`, `vip`, `achievement`, `song_id`, `limited_sells`, `limited_stack`, `offer_active`, `extradata`, `badge`, `flat_id`) VALUES
    (999888636, 1654, '999888636', 'yttv1', 1, 0, 0, 1, '0', 0, 0, 0, 0, '1', '', '', -1),
    (999888634, 1654, '999888634', 'yttv3', 1, 0, 0, 1, '0', 0, 0, 0, 0, '1', '', '', -1),
    (999888637, 1654, '999888637', 'yttv2b', 1, 0, 0, 1, '0', 0, 0, 0, 0, '1', '', '', 12681),
    (999888783, 1654, '999888783', 'yttv2n', 1, 0, 0, 1, '0', 0, 0, 0, 0, '1', '', '', -1),
    (999888635, 1654, '999888635', 'yttv2', 1, 0, 0, 1, '0', 0, 0, 0, 0, '1', '', '', 12679);
    Final result: http://i.imgur.com/QzTiSvf.png


    Sorry my bad english, cause I'm brazilian Thank you! ^^

  10. #535
    this is title Shredinator is offline
    MemberRank
    May 2011 Join Date
    399Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    TheWulles, that code requires people to have rights to the room before they can view the videos, also remember to give credits where it's due..

  11. #536
    Enthusiast FlameStick is offline
    MemberRank
    Dec 2013 Join Date
    Belgium.Location
    47Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Thank you very much! Seems nice and functional. :)

  12. #537
    Member TheWulles is offline
    MemberRank
    Jan 2014 Join Date
    SP - BrazilLocation
    53Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Quote Originally Posted by Shredinator View Post
    TheWulles, that code requires people to have rights to the room before they can view the videos, also remember to give credits where it's due..
    Sorry if anyone knows the name of the owner of the code let me know

  13. #538
    Account Upgraded | Title Enabled! streamhotel is offline
    MemberRank
    Apr 2012 Join Date
    EarthLocation
    511Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Does someone have a fix for CFH sent message?

  14. #539
    I (L) Willem Spot Ify is offline
    MemberRank
    Jun 2012 Join Date
    The NetherlandsLocation
    294Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Quote Originally Posted by streamhotel View Post
    Does someone have a fix for CFH sent message?
    I posted it on a other theard but idk where xd

  15. #540
    Proficient Member ProducerMark is offline
    MemberRank
    Jul 2010 Join Date
    Middle EarthLocation
    176Posts

    re: Plus Emulator Revision RB3.0 [Community Project]

    Can anyone upload the emulator with the fixes, as there are multiple downloads in the reactions which makes it hard for me to add the fixes. Would really appreciate it. (:



Advertisement