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!

[C#, PHP, R38] Project Aurora

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 22, 2016
Messages
19
Reaction score
4
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Omg so amazing, some beta?
 
Custom Title Activated
Loyal Member
Joined
Oct 26, 2012
Messages
2,357
Reaction score
1,086
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Glaceon I'm really excited with this development.

GitHub already?

There's a Github already, but it's private.

Omg so amazing, some beta?

No BETA yet until more features are finished. It depends on how much I code from day to day, I can't guarantee a BETA date yet... though I hope one can be put online in around 2/3 months.
 
Skilled Illusionist
Joined
Feb 25, 2009
Messages
343
Reaction score
114
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Very great work ! I like it ! :D

I have something about Shockwave ! A little utility, who work like Bittorent/uTorrent when i click on a magnet link (Enter on hotel).
With this, you must install a little silent utility and when you click on the "Enter>>", a new beautiful popup is displayed with hotel ! But i haven't finish this...

But i thinks it's a really good solution !
 
Custom Title Activated
Loyal Member
Joined
Oct 26, 2012
Messages
2,357
Reaction score
1,086
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

No updates for the week, I'll definitely post some next weekend. I have my last week of my internship and got some work left to do for school. Also, #rip to my subscription, it was fun while it lasted... now I'm just another Alpha Male (wonders me, is there an Alpha Female??)

If there's anybody who wants to help I'll maybe put git on public soon but I don't know yet. You can always hit me up if you want to help.

I hope y'all have a wonderful week.

Very great work ! I like it ! :D

I have something about Shockwave ! A little utility, who work like Bittorent/uTorrent when i click on a magnet link (Enter on hotel).
With this, you must install a little silent utility and when you click on the "Enter>>", a new beautiful popup is displayed with hotel ! But i haven't finish this...

But i thinks it's a really good solution !

Sounds interesting, but the thing is that the "install something for a hotel" thing is all what really matters.
 
Newbie Spellweaver
Joined
Jun 4, 2017
Messages
8
Reaction score
0
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Amazing, don't let this project die. The R35/36 BETA is my favorite version and always will be!
Keep going dude :)
 
Custom Title Activated
Loyal Member
Joined
Oct 26, 2012
Messages
2,357
Reaction score
1,086
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

'Cause I promised:

TtKqPUy - [C#, PHP, R38] Project Aurora - RaGEZONE Forums


PHP:
  class ObjectsMessageComposer : MessageComposer
    {
        public ObjectsMessageComposer(ConcurrentBag<Item> floorItems)
            : base (32)
        {
            AppendVL64(floorItems.Count);

            foreach (Item floorItem in floorItems)
            {
                SerializeItem(floorItem);
            }
        }

        private void SerializeItem(Item item)
        {
            AppendVL64(item.Id);
            AppendVL64(item.Definition.SpriteId);
            AppendVL64(item.X);
            AppendVL64(item.Y);
            AppendVL64(item.Rotation);
            AppendString(item.Z.ToString());
            AppendVL64(0); // Not used AT ALL
            AppendString(item.Data);
            AppendVL64(-1); // Not used AT ALL
        }
    }

(the 'Not used AT ALL' isn't a joke; they really aren't used in the SWF...)

PHP:
            client.SendComposer(new ObjectsMessageComposer(client.CurrentRoom.GetFloorItems()));
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Aug 22, 2016
Messages
19
Reaction score
4
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

When are you going to start with the pathfinder?

Looks good.
 
Custom Title Activated
Loyal Member
Joined
May 23, 2011
Messages
1,607
Reaction score
588
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Nice to see this progressing well, keep it up

(Also: do you want to be a part of a super secret developer discord? PM me)
 
Custom Title Activated
Loyal Member
Joined
Oct 26, 2012
Messages
2,357
Reaction score
1,086
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Wall items work correctly now too:

FcM8hfQ - [C#, PHP, R38] Project Aurora - RaGEZONE Forums


PHP:
    class ItemsMessageComposer : MessageComposer
    {
        public ItemsMessageComposer(ConcurrentBag<Item> wallItems)
            : base(45)
        {
            AppendVL64(wallItems.Count);

            foreach (Item wallItem in wallItems)
            {
                SerializeItem(wallItem);
            }
        }
        
        private void SerializeItem(Item item)
        {
            AppendString(item.Id.ToString());
            AppendVL64(item.Definition.SpriteId);
            AppendString(item.Wallposition);
            AppendString(item.Data);
        }
    }

All is from database too, nothing is hard-coded! (thought it'd be worth mentioning...)
 

Attachments

You must be registered for see attachments list
Custom Title Activated
Loyal Member
Joined
Oct 26, 2012
Messages
2,357
Reaction score
1,086
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Cool you got past entering rooms :p

Cool, you don't act like a noob for once ;p

(don't throw a boomerang, it will always return ;))

Just kidding.

You are a good coder. But a little idiot too.

Nice work josh, i hope more updates soon :w00t:

Don't call my homeboy an idiot!! But thanks ;p
 
Newbie Spellweaver
Joined
Nov 21, 2011
Messages
66
Reaction score
12
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

It's a running joke. :p:

Ah, sorry, I thought you really told him, To have comments like this would put me back on a project like this. I will delete my last comment and Hope u2 good luck with ur proyects!
 
Custom Title Activated
Loyal Member
Joined
Oct 26, 2012
Messages
2,357
Reaction score
1,086
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

eX9hUCW - [C#, PHP, R38] Project Aurora - RaGEZONE Forums

uRouMOy - [C#, PHP, R38] Project Aurora - RaGEZONE Forums

LteaK2v - [C#, PHP, R38] Project Aurora - RaGEZONE Forums


I forgot to add the one with one throne after first purchase to imgur... but you get the deal; it works.

If there are any SWF "hijackers" who are willing to modify the Habbo.swf for me for some stuff contact me.
 

Attachments

You must be registered for see attachments list
git bisect -m
Loyal Member
Joined
Sep 2, 2011
Messages
2,171
Reaction score
916
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

I pretty like how the far the development it's going.

I'm pretty anxious for new updates and feature for this emulator.

It's been, what? 3 weeks? or 4 weeks? And we just have basics catalogue yet? xD

I'm too much anxious..
 
Custom Title Activated
Loyal Member
Joined
Oct 26, 2012
Messages
2,357
Reaction score
1,086
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

I pretty like how the far the development it's going.

I'm pretty anxious for new updates and feature for this emulator.

It's been, what? 3 weeks? or 4 weeks? And we just have basics catalogue yet? xD

I'm too much anxious..

Eh what? You're... anxious? I don't really know what you're trying to say.
 
Elite Diviner
Joined
Sep 17, 2013
Messages
403
Reaction score
58
Re: [V9] [R35] Aurora Emulator [C#] [NHibernate] [DotNetty] [Log4net]

Eh what? You're... anxious? I don't really know what you're trying to say.
I think he might be high on something since I also don't really understand what he is trying to say.
 
Status
Not open for further replies.
Back
Top