UberEmu R63 New New HA :D

Page 1 of 2 12 LastLast
Results 1 to 25 of 26
  1. #1

    UberEmu R63 New New HA :D

    German :

    Ich habe die Nummer für das unten zusehende Fenster gefunden und habe einen Hotel Alarm daraus gebastelt.

    English :


    Important! That's Google translator ^ ^
    And : Yes PEjump i use your swf pack ;D

    I found the number for the bottom window and increasingly have programmed a hotel alarm it.


    Screeni :
    r644.PNG - Bilder und Fotos kostenlos auf ImageBanana hochladen

    Edited to a better version :

    Add the command :
    Code:
     case "specialha":
                                if (Session.GetHabbo().Rank > 6)
                                {
                                    string Notice = MergeParams(Params, 1);
                                    ServerMessage HotelAlert = new ServerMessage(808);
                                    HotelAlert.AppendStringWithBreak("Message");
                                    HotelAlert.AppendStringWithBreak("\r\n" + Notice);
                                    UberEnvironment.GetGame().GetClientManager().BroadcastMessage(HotelAlert);
    
                                    return true;
                                }
                                return false;
    Credits :
    PEjump2 - 10 % ( i use your swf pack )
    Marlon Colhado - 50% - ( coding Command )
    Me - 40 % - ( coding Specialha )

    Please click on Thanks ^^

    Works with UberEmu R63 and all SWF Packs at R63-322 and later.
    Last edited by Lukadora; 16-04-11 at 12:05 AM. Reason: A little Error xD


  2. #2
    Member Elienay is offline
    MemberRank
    Dec 2008 Join Date
    78Posts

    Re: UberEmu R63 New New HA :D

    What a cool release, and what a cool room model! Can u release it?

  3. #3
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: UberEmu R63 New New HA :D

    That room model is actually epic :P As is this hotel alert? I like it! Maybe Aaron could add it to Phoenix as ":altha" or something :P

  4. #4
    sexiess is a sin. Subway is offline
    MemberRank
    Jun 2010 Join Date
    2,491Posts

    Re: UberEmu R63 New New HA :D

    Yea that would be nice, if Aaron could add it to Phoenix :]

    Thanks for this release thou, it's great man!

  5. #5
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: UberEmu R63 New New HA :D

    Very niiice, i really like thizz :p

  6. #6
    Account Upgraded | Title Enabled! Tony is offline
    MemberRank
    Feb 2011 Join Date
    349Posts

    Re: UberEmu R63 New New HA :D

    this is nice

  7. #7
    Proficient Member HabsHotel is offline
    MemberRank
    Jan 2011 Join Date
    CanadaLocation
    167Posts

    Re: UberEmu R63 New New HA :D

    That giant green button is ugly but I love the rest, so using this!
    Last edited by HabsHotel; 16-04-11 at 05:43 AM.

  8. #8
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: UberEmu R63 New New HA :D

    Privifag showed us that Hotelalert a while ago, and now we've got it for uber, how nice :3
    Thanks for releasing this <3
    And you'r german? I live there now :P

    And could you release that heightmap? :x
    Last edited by PEjump2; 16-04-11 at 08:01 AM.

  9. #9

    Re: UberEmu R63 New New HA :D

    Quote Originally Posted by Elienay View Post
    What a cool release, and what a cool room model! Can u release it?
    Yes i release today a pack with room models

  10. #10
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: UberEmu R63 New New HA :D

    Nice release bud. ;]

  11. #11
    Account Upgraded | Title Enabled! salah-salah is offline
    MemberRank
    Jan 2009 Join Date
    UndergroundLocation
    716Posts

    Re: UberEmu R63 New New HA :D

    Yeah awesome release:)

  12. #12
    Valued Member winston1888 is offline
    MemberRank
    Feb 2011 Join Date
    YesLocation
    101Posts

    Re: UberEmu R63 New New HA :D

    Nice release ^^

  13. #13

    Re: UberEmu R63 New New HA :D

    Quote Originally Posted by PEjump2 View Post
    Privifag showed us that Hotelalert a while ago, and now we've got it for uber, how nice :3
    Thanks for releasing this <3
    And you'r german? I live there now :P

    And could you release that heightmap? :x
    PEjump2 i released the heigtmaps :D
    http://forum.ragezone.com/f353/uber-...ayouts-743913/

  14. #14
    Account Upgraded | Title Enabled! Miggs is offline
    MemberRank
    Oct 2010 Join Date
    711Posts

    Re: UberEmu R63 New New HA :D

    Nice Release!

  15. #15
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: UberEmu R63 New New HA :D

    Nice release bro.

  16. #16
    Member EliteRoyal is offline
    MemberRank
    Mar 2011 Join Date
    Santo Domingo,Location
    55Posts

    Re: UberEmu R63 New New HA :D

    Thats Alert i see it that privilege put it but you are the best that do it for uber!!!

  17. #17
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: UberEmu R63 New New HA :D

    Hmm here's a "little bit" better version:
    Code:
                    case "specialha":
    
                        if (Session.GetHabbo().Rank > 6)
                        {
                            string Notice = MergeParams(Params, 1);
    
                            if (Notice.Length > 0)
                            {
                                ServerMessage HotelAlert = new ServerMessage(808);
                                HotelAlert.AppendStringWithBreak("Message from Hotel Management");
                                HotelAlert.AppendStringWithBreak(Notice + Environment.NewLine  + "-" + Session.GetHabbo().Username);
                                UberEnvironment.GetGame().GetClientManager().BroadcastMessage(HotelAlert);
    
                                return true;
                            }
                            else
                            {
                                return false;
                            }
                        }
    
                        return false;

  18. #18

    Re: UberEmu R63 New New HA :D

    Quote Originally Posted by PEjump2 View Post
    Hmm here's a "little bit" better version:
    Code:
                    case "specialha":
    
                        if (Session.GetHabbo().Rank > 6)
                        {
                            string Notice = MergeParams(Params, 1);
    
                            if (Notice.Length > 0)
                            {
                                ServerMessage HotelAlert = new ServerMessage(808);
                                HotelAlert.AppendStringWithBreak("Message from Hotel Management");
                                HotelAlert.AppendStringWithBreak(Notice + Environment.NewLine  + "-" + Session.GetHabbo().Username);
                                UberEnvironment.GetGame().GetClientManager().BroadcastMessage(HotelAlert);
    
                                return true;
                            }
                            else
                            {
                                return false;
                            }
                        }
    
                        return false;
    Good Idea PEjump! You are the codeminimizer :p

  19. #19
    C# | C++ Emerica is offline
    MemberRank
    Oct 2010 Join Date
    GermanyLocation
    437Posts

    Re: UberEmu R63 New New HA :D

    mhm I don't like the style, but thanks for this.

  20. #20
    Member EliteRoyal is offline
    MemberRank
    Mar 2011 Join Date
    Santo Domingo,Location
    55Posts

    Re: UberEmu R63 New New HA :D

    it only left the name of the user that send it and it will be 100% a Hotel Alert!!!

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

    Re: UberEmu R63 New New HA :D

    Quote Originally Posted by EliteRoyal View Post
    it only left the name of the user that send it and it will be 100% a Hotel Alert!!!
    Look my post above idiot, already coded that.
    -PEjump2

  22. #22
    V.I.P Member Beny. is offline
    MemberRank
    Aug 2009 Join Date
    536Posts

    Re: UberEmu R63 New New HA :D

    o.O PEjump infraction banned... AGAIN!

  23. #23
    Account Upgraded | Title Enabled! robertm3363 is offline
    MemberRank
    Aug 2010 Join Date
    ukLocation
    308Posts

    Re: UberEmu R63 New New HA :D

    hey where do i add this :$

  24. #24

    Re: UberEmu R63 New New HA :D

    Robert add this in ChatCommandHandler xD

  25. #25
    Don't buff my pylon! Admiral-Speedy is offline
    MemberRank
    Jun 2008 Join Date
    CanadaLocation
    1,292Posts

    Re: UberEmu R63 New New HA :D

    This is nice, Aaron did add it to Phoenix :P and I think this probably the first time I have seen PEjump post something nice...



Page 1 of 2 12 LastLast

Advertisement