Quest System [UBER, R63/64]

Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 52
  1. #26
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: Quest System [UBER, R63/64]

    nanananana ^^

    check this

    down of MessageHandler.RegisterUsers(); .. MessageHandler.RegisterRooms();

    add

    MessageHandler.GetResponse().Init(800);
    MessageHandler.GetResponse().AppendStringWithBreak("val11");
    MessageHandler.GetResponse().AppendStringWithBreak("JISjKFIND_STUFF");
    MessageHandler.GetResponse().AppendStringWithBreak("bling_chair_c");
    MessageHandler.GetResponse().AppendStringWithBreak("QA1296543600000");
    MessageHandler.GetResponse().AppendStringWithBreak("EXTRA01");
    MessageHandler.GetResponse().AppendStringWithBreak("");
    MessageHandler.SendResponse();

    check EXTRA02... :) and check 1296543600000 is the time of event change to 1296543700000 (1 second more)

    and change bling_chair_c to other furni... :D

  2. #27
    Banned c0mma is offline
    BannedRank
    Jan 2011 Join Date
    ^RaGEZONE^Location
    696Posts

    Re: Quest System [UBER, R63/64]

    Hope this goes well (:

  3. #28
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by iPixelHotel View Post
    Hope this goes well (:
    my last code works fine.. the others codes not..

    GameClient.cs
    PHP Code:
            public void Login(string AuthTicket)
            {
                
    //...

                
    MessageHandler.RegisterUsers();
                
    MessageHandler.RegisterMessenger();
                
    MessageHandler.RegisterCatalog();
                
    MessageHandler.RegisterNavigator();
                
    MessageHandler.RegisterRooms();
                
    MessageHandler.RegisterQuests();

                
    //..
            

    file.cs
    PHP Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace 
    Uber.Messages
    {
        
    partial class GameClientMessageHandler
        
    {
            private 
    void Initialize()
            {
                
    ServerMessage Message = new ServerMessage(800);
                
    Message.AppendStringWithBreak("val11");
                
    Message.AppendStringWithBreak("JISjKFIND_STUFF");
                
    Message.AppendStringWithBreak("bling_chair_c");
                
    Message.AppendStringWithBreak("QA1296543600000");
                
    Message.AppendStringWithBreak("EXTRA01");
                
    Message.AppendStringWithBreak("");
                
    Session.SendMessage(Message);
            }

            public 
    void RegisterQuests()
            {
                
    RequestHandlers[3102] = new RequestHandler(Initialize);
            }
        }


  4. #29
    Elite Member DaEternity is offline
    Member +Rank
    Dec 2010 Join Date
    EngladLocation
    123Posts

    Re: Quest System [UBER, R63/64]

    Woah, Nice Post :)

  5. #30
    Member Lts is offline
    MemberRank
    Sep 2010 Join Date
    ItalyLocation
    58Posts

    Re: Quest System [UBER, R63/64]

    I have a little problem with this: RequestHandlers[3102] = new RequestHandler(Initialize); .
    capostrike93 help me
    The last packetlog of the quest :
    L`val11JJSjIFIND_STUFFbling_chair_cQA1296540000000EXTRA01PkHFIND_STUFFval_table1QA1296626400000EXTRA02
    Last edited by Lts; 30-01-11 at 09:58 AM.

  6. #31
    Sorcerer Supreme DJAlexxstyle is offline
    Member +Rank
    Feb 2008 Join Date
    341Posts

    Re: Quest System [UBER, R63/64]

    @Sojobo They have changed nothing, it just happens sometimes when the SWF are obfuscated, and then re-obfuscated, and then re-obfuscated etc (like Habbo does)... It already happened for 2/3 revisions in the half of December.... It's the cause the first 'cracked' SWF were working (simply because the SWF can't read the protection code) u.u
    Posted via Mobile Device

  7. #32
    Elite Member DjInTrouble is offline
    Member +Rank
    Dec 2010 Join Date
    The NetherlandsLocation
    180Posts

    Re: Quest System [UBER, R63/64]

    Yep, @capostrike93 does the window opens?

  8. #33
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by Lts View Post
    I have a little problem with this: RequestHandlers[3102] = new RequestHandler(Initialize); .
    capostrike93 help me
    The last packetlog of the quest :
    L`val11JJSjIFIND_STUFFbling_chair_cQA1296540000000EXTRA01PkHFIND_STUFFval_table1QA1296626400000EXTRA02
    test it

    PHP Code:
    private void Initialize() 

                
    ServerMessage Message = new ServerMessage(800); 
                
    Message.AppendStringWithBreak("val11"); 
                
    Message.AppendStringWithBreak("JISjKFIND_STUFF"); 
                
    Message.AppendStringWithBreak("bling_chair_c"); 
                
    Message.AppendStringWithBreak("QA1296540000000"); 
                
    Message.AppendStringWithBreak("EXTRA01"); 
                
    Message.AppendStringWithBreak(""); 
                
    Message.AppendStringWithBreak("PkHFIND_STUFF"); 
                
    Message.AppendStringWithBreak("val_table1"); 
                
    Message.AppendStringWithBreak("QA1296626400000"); 
                
    Message.AppendStringWithBreak("EXTRA02"); 
                
    Message.AppendStringWithBreak("");
                
    Session.SendMessage(Message); 


  9. #34
    Member Lts is offline
    MemberRank
    Sep 2010 Join Date
    ItalyLocation
    58Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by capostrike93 View Post
    test it

    PHP Code:
    private void Initialize() 

                
    ServerMessage Message = new ServerMessage(800); 
                
    Message.AppendStringWithBreak("val11"); 
                
    Message.AppendStringWithBreak("JISjKFIND_STUFF"); 
                
    Message.AppendStringWithBreak("bling_chair_c"); 
                
    Message.AppendStringWithBreak("QA1296540000000"); 
                
    Message.AppendStringWithBreak("EXTRA01"); 
                
    Message.AppendStringWithBreak(""); 
                
    Message.AppendStringWithBreak("PkHFIND_STUFF"); 
                
    Message.AppendStringWithBreak("val_table1"); 
                
    Message.AppendStringWithBreak("QA1296626400000"); 
                
    Message.AppendStringWithBreak("EXTRA02"); 
                
    Message.AppendStringWithBreak("");
                
    Session.SendMessage(Message); 

    Nor does this

  10. #35
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by Lts View Post
    Nor does this
    sorry change this:

    JISjKFIND_STUFF

    to

    JJSjKFIND_STUFF

    I is = 1
    J is = 2
    K is = 3

    :D

  11. #36
    Member Lts is offline
    MemberRank
    Sep 2010 Join Date
    ItalyLocation
    58Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by capostrike93 View Post
    sorry change this:

    JISjKFIND_STUFF

    to

    JJSjKFIND_STUFF

    I is = 1
    J is = 2
    K is = 3

    :D
    I did but not go! xD
    Class1.cs In Messages/Request
    PHP Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace 
    LaserEMU.Messages
    {
        
    partial class GameClientMessageHandler
        
    {
            private 
    void Initialize()  
    {  
                
    ServerMessage Message = new ServerMessage(800);  
                
    Message.AppendStringWithBreak("xmas10");
                
    Message.AppendStringWithBreak("JJSjKFIND_STUFF");  
                
    Message.AppendStringWithBreak("bling_chair_c");  
                
    Message.AppendStringWithBreak("QA1296540000000");  
                
    Message.AppendStringWithBreak("DAY01");  
                
    Message.AppendStringWithBreak("");
                
    Message.AppendStringWithBreak("JJSjKFIND_STUFF");  
                
    Message.AppendStringWithBreak("val_table1");  
                
    Message.AppendStringWithBreak("QA1296626400000");  
                
    Message.AppendStringWithBreak("DAY02");  
                
    Message.AppendStringWithBreak(""); 
                
    Session.SendMessage(Message);  

              
            }

            public 
    void RegisterQuests()
            {
                
    RequestHandlers[3102] = new RequestHandler (Initialize);
            }
        }

    and this is the code of my GameClient.cs
    PHP Code:
     public void Login(string AuthTicket)
            {
                
    MessageHandler.RegisterUsers();
                
    MessageHandler.RegisterMessenger();
                
    MessageHandler.RegisterCatalog();
                
    MessageHandler.RegisterNavigator();
                
    MessageHandler.RegisterRooms();
                
    MessageHandler.RegisterQuests(); 

  12. #37
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by Lts View Post
    I did but not go! xD
    Class1.cs In Messages/Request
    PHP Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace 
    LaserEMU.Messages
    {
        
    partial class GameClientMessageHandler
        
    {
            private 
    void Initialize()  
    {  
                
    ServerMessage Message = new ServerMessage(800);  
                
    Message.AppendStringWithBreak("xmas10");
                
    Message.AppendStringWithBreak("JJSjKFIND_STUFF");  
                
    Message.AppendStringWithBreak("bling_chair_c");  
                
    Message.AppendStringWithBreak("QA1296540000000");  
                
    Message.AppendStringWithBreak("DAY01");  
                
    Message.AppendStringWithBreak("");
                
    Message.AppendStringWithBreak("JJSjKFIND_STUFF");  
                
    Message.AppendStringWithBreak("val_table1");  
                
    Message.AppendStringWithBreak("QA1296626400000");  
                
    Message.AppendStringWithBreak("DAY02");  
                
    Message.AppendStringWithBreak(""); 
                
    Session.SendMessage(Message);  

              
            }

            public 
    void RegisterQuests()
            {
                
    RequestHandlers[3102] = new RequestHandler (Initialize);
            }
        }

    and this is the code of my GameClient.cs
    PHP Code:
     public void Login(string AuthTicket)
            {
                
    MessageHandler.RegisterUsers();
                
    MessageHandler.RegisterMessenger();
                
    MessageHandler.RegisterCatalog();
                
    MessageHandler.RegisterNavigator();
                
    MessageHandler.RegisterRooms();
                
    MessageHandler.RegisterQuests(); 
    Message.AppendStringWithBreak("JJSjKFIND_STUFF"); <-- this bad
    Message.AppendStringWithBreak("val_table1");
    Message.AppendStringWithBreak("QA1296626400000");
    Message.AppendStringWithBreak("DAY02");
    Message.AppendStringWithBreak("");
    Session.SendMessage(Message);

    try Message.AppendStringWithBreak("PkHFIND_STUFF");

    and more..


  13. #38
    Elite Member vicancer is offline
    Member +Rank
    Mar 2010 Join Date
    133Posts

    Re: Quest System [UBER, R63/64]

    could someone step by step guide to do all this?

  14. #39
    Elite Member DjInTrouble is offline
    Member +Rank
    Dec 2010 Join Date
    The NetherlandsLocation
    180Posts

    Re: Quest System [UBER, R63/64]

    Could someone post the correctly code for opening window? I got stuck all times

  15. #40
    Member Lts is offline
    MemberRank
    Sep 2010 Join Date
    ItalyLocation
    58Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by DjInTrouble View Post
    Could someone post the correctly code for opening window? I got stuck all times
    I have the file but does not work without the last swf habbo them to me if you step past the file

  16. #41
    Elite Member DjInTrouble is offline
    Member +Rank
    Dec 2010 Join Date
    The NetherlandsLocation
    180Posts

    Re: Quest System [UBER, R63/64]

    ? So dude, does the file work with R64(heart) swfs uncracked?

  17. #42
    Member Lts is offline
    MemberRank
    Sep 2010 Join Date
    ItalyLocation
    58Posts

    Re: Quest System [UBER, R63/64]

    yes only whit the R63 quest of valentine

  18. #43
    Elite Member DjInTrouble is offline
    Member +Rank
    Dec 2010 Join Date
    The NetherlandsLocation
    180Posts

    Re: Quest System [UBER, R63/64]

    I mean it open window then of quests, if I use R63 habbo.nl swfs(yea they have valentine) the quest window does open?

    offtopic question:
    does habbo swfs support message of the day?

  19. #44
    Grand Master Moogly is offline
    Grand MasterRank
    Feb 2008 Join Date
    Pool LidoLocation
    2,321Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by DjInTrouble View Post
    thanks chillhabbo.
    and I use privilege's packetlogger.

    must I find MessageHandler.RegisterUsers();
    MessageHandler.RegisterMessenger();
    MessageHandler.RegisterCatalog();
    MessageHandler.RegisterNavigator();
    MessageHandler.RegisterRooms();? and add below that the code of you?
    I thought you coded this yourself? o.O You sure so fail @ coding considering you gotta ask where to put your own code and how to make it work. -.-

  20. #45
    Banned Beny. is offline
    BannedRank
    Aug 2009 Join Date
    536Posts

    Re: Quest System [UBER, R63/64]

    Thanks, Works brilliant !

  21. #46
    Grand Master Chapo is offline
    Grand MasterRank
    Jul 2010 Join Date
    United StatesLocation
    944Posts

    Re: Quest System [UBER, R63/64]

    It looks nice.

    i'll test it later

  22. #47
    Grand Master Chapo is offline
    Grand MasterRank
    Jul 2010 Join Date
    United StatesLocation
    944Posts

    Re: Quest System [UBER, R63/64]

    i did added it but it doesn't do anything? ideas? o_O

  23. #48
    Member Sphinx12345123 is offline
    MemberRank
    Oct 2010 Join Date
    Visual Basic ;)Location
    47Posts

    Re: Quest System [UBER, R63/64]

    Code is clean, thanks for the share.

  24. #49
    Sorcerer Supreme toperwin is offline
    Member +Rank
    Jan 2009 Join Date
    313Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by Nills View Post
    i did added it but it doesn't do anything? ideas? o_O
    bcouse it isnt done/doesnt works,..? >,<
    just use my full code, this toppic is old,

  25. #50
    Banned Someuser is offline
    BannedRank
    Aug 2010 Join Date
    466Posts

    Re: Quest System [UBER, R63/64]

    Quote Originally Posted by Nills View Post
    i did added it but it doesn't do anything? ideas? o_O
    Maybe just maybe you'll need R63+ swfs *hint*
    Use you'r brain for once ( I know you haven't got one but just pretend that you've got one, k? )



Page 2 of 3 FirstFirst 123 LastLast

Advertisement