Welcome to the RaGEZONE - MMORPG development forums.

Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

This is a discussion on Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1 within the Habbo Tutorials forums, part of the Habbo Hotel category; Things you need: - Microsoft C# - MySql.Data.dll (for MySql connections) - Swfs (R63, but before the crypto) - Notepad++ ...

LyncusMU
Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    Working in private usage.
    Rank
    Member +
    Join Date
    Jul 2011
    Location
    On FrostEmu
    Posts
    886
    Liked
    128

    Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Tabo Hotel
    Things you need:

    - Microsoft C#
    - MySql.Data.dll (for MySql connections)
    - Swfs (R63, but before the crypto)
    - Notepad++ (coding CMS)
    - Flash Decompiler Trillix (editing swf images if you want)
    - Brains (for thinking)
    - Time (don't think you can do it in 5 minutes)

    Okay, first of all, make sure you opened Microsoft C#, because the first 4 steps are only Emulator, you can open Notepad++ but it's not necessary.

    Make a new project, it doesn't matter which name. Because it's a sample I call my project SampleProject. Make it a Console Application, because it's better to do.

    If project creation is done, a window will come with some text, on the file Program.cs. This is the file you want to invoke the Initialize method on another file, but first you need a new file.

    How to create a file: right-click your project name (UNDER solution) and go to Add and choose Class.

    Call it PROJECTNAMEEnvironment, or something like that. I'll call it SampleEnvironment.cs. Choose normal class (no interface, or something else).

    Once it's done, change class into public class, and between the { } under your class name, make a static void called Initialize or Debug or something. I call it Start. A method looks like this:

    public static void Start()
    {
    }

    You can start adding some Console.WriteLine("");, but I'm going to show you the sockets now.


    Sockets

    Sockets are needing to go on your hotel. Without sockets nothing work.
    Make a new map (right click your project name and Add->New Folder and call the folder something like Connections, TCP, NET. I'll call it Sockets. Add a new class called GameConnections.cs or something.

    Create a new method, no void and no static, with the class name, like this:

    public GameConnections()
    {
    }

    add 2 parameters: string IP and int Port:

    public GameConnections(string IP, int Port)
    {
    }

    Between the class bracelets (before the method) add:

    private Socket mSocket = new Socket(AddressFamily.InterNetwork, SocketType.Unknown, ProtocolType.Tcp);

    Now right-click Socket, Resolve and choose the first option.

    Once this is done, you make a new void called OnConnection or something with a parameter IAsyncResult Ias.

    public void OnConnection(IAsyncResult Ias)
    {
    }

    In the method you created earlier (the public CLASSNAME() method), add:

    mSocket.Bind(new IPEndPoint(IPAddress.Parse(IP), Port));

    Now right-click IPEndPoint and resolve it like you did earlier.
    Below it add:
    mSocket.BeginAccept(new AsyncCallback(OnConnection), null);

    In the OnConnection void add:

    Console.WriteLine("Accepted connection from " + mSocket.EndAccept(Ias).RemoteEndPoint.ToString());


    In next part:

    - Receiving and sending packets
    - Sql explaination

  2. HostKey.com: Unmetered Dedicated servers in the Netherlands
  3. #2
    Overlord of RZ
    Rank
    Administrator
    Join Date
    Dec 2000
    Location
    /home/ragezone/
    Posts
    29,466
    Liked
    11907

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    This is quite bad so hopefully the rest of it won't be.

  4. #3
    Working in private usage.
    Rank
    Member +
    Join Date
    Jul 2011
    Location
    On FrostEmu
    Posts
    886
    Liked
    128

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Quote Originally Posted by MentaL View Post
    This is quite bad so hopefully the rest of it won't be.
    I know, I'll make a video soon which is better.

  5. #4
    C-images website soon
    Rank
    Member +
    Join Date
    May 2010
    Location
    England, UK
    Posts
    1,283
    Liked
    166

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Ah okay. Nice one

  6. #5
    // Razorlight - America
    Rank
    Subscriber
    Join Date
    Jun 2011
    Location
    Southampton.
    Posts
    1,606
    Liked
    260

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    No offence, I need to see a video to do this.. It'll be easier.

  7. #6
    Web Application Developer
    Rank
    Moderator
    Join Date
    Apr 2010
    Posts
    2,938
    Liked
    985

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    You need to have it 'less' bland. It's quite boring to read. I suggest instead of having the code like this:

    public static void Start()
    {
    }

    You have it like this:

  8. #7
    C# | C++
    Rank
    Member +
    Join Date
    Oct 2010
    Location
    Germany
    Posts
    457
    Liked
    88

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    atm it isn't a Tutorial about making an Emulator, you only show us the TCP Connection ;P

    Next time:
    First Write the Tut, than release it.

  9. #8
    Alpha
    Rank
    Member
    Join Date
    Jan 2012
    Posts
    128
    Liked
    12

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Can you write the next part please?

  10. #9
    Habbo Section <3
    Rank
    Subscriber
    Join Date
    Jun 2009
    Location
    Niagara Falls,
    Posts
    1,158
    Liked
    85

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Nice, i guess i'm going to try it for CMS

  11. #10
    Azure subscription
    Rank
    Subscriber
    Join Date
    Dec 2011
    Location
    єαятн
    Posts
    1,704
    Liked
    255

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Okay, I don't want to be rude, but you said you were going to make a video, and that hasn't happened. And this thread doesn't help anyone, this wouldn't even be a start to an emulator, sorry to say. This is a poor effort.

  12. #11
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Aug 2011
    Location
    England Coder<3
    Posts
    525
    Liked
    104
    Urghhh, reading the first 12 lines got me confused... no-one codes like this. (Omg, I CAN CODE!)

    Sent from my mobile via Tapatalk.

  13. #12
    Idiots these days...
    Rank
    Member +
    Join Date
    Sep 2009
    Location
    Wales
    Posts
    1,202
    Liked
    213

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Quote Originally Posted by Divide View Post
    Urghhh, reading the first 12 lines got me confused... no-one codes like this. (Omg, I CAN CODE!)

    Sent from my mobile via Tapatalk.
    You cannot code because the things you say make me laugh my ass of because they are so stupid.

  14. #13
    Back from temporary leave
    Rank
    Member +
    Join Date
    Nov 2010
    Location
    :O You PERVERT!
    Posts
    978
    Liked
    62

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Where is the second one?

  15. #14
    My title is enabled
    Rank
    Member +
    Join Date
    Sep 2010
    Posts
    273
    Liked
    36

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    While its not written in the best of ways, its still usefull. And maybe, when more sections are added. I'll attempt this.

  16. #15
    RoboJun off DevB
    Rank
    Member +
    Join Date
    Nov 2011
    Location
    Trollville, UK
    Posts
    699
    Liked
    68

    Re: Code your own Habbo Hotel Project [CMS & Emu] [From Scratch] - Part 1

    Gibberish. My mind is fried. I understand the concept - but your teaching is scrambled and sloppy. No download links, pictures, not even a video.

    I give this a 5/10

 

 
Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •