-
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
-
Re: Quest System [UBER, R63/64]
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
iPixelHotel
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);
}
}
}
-
Re: Quest System [UBER, R63/64]
-
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
-
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
-
Re: Quest System [UBER, R63/64]
Yep, @capostrike93 does the window opens?
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
Lts
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);
}
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
capostrike93
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
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
Lts
Nor does this
sorry change this:
JISjKFIND_STUFF
to
JJSjKFIND_STUFF
I is = 1
J is = 2
K is = 3
:D
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
capostrike93
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();
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
Lts
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..
http://img140.imageshack.us/img140/5257/sinttulovk.png
-
Re: Quest System [UBER, R63/64]
could someone step by step guide to do all this?
-
Re: Quest System [UBER, R63/64]
Could someone post the correctly code for opening window? I got stuck all times
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
DjInTrouble
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
-
Re: Quest System [UBER, R63/64]
? So dude, does the file work with R64(heart) swfs uncracked?
-
Re: Quest System [UBER, R63/64]
yes only whit the R63 quest of valentine
-
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?
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
DjInTrouble
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. -.-
-
Re: Quest System [UBER, R63/64]
Thanks, Works brilliant !
-
Re: Quest System [UBER, R63/64]
It looks nice.
i'll test it later
-
Re: Quest System [UBER, R63/64]
i did added it but it doesn't do anything? ideas? o_O
-
Re: Quest System [UBER, R63/64]
Code is clean, thanks for the share.
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
Nills
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,
-
Re: Quest System [UBER, R63/64]
Quote:
Originally Posted by
Nills
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? )