Plus Emulation [Revision 2] FIXES!

Page 28 of 29 FirstFirst ... 1820212223242526272829 LastLast
Results 406 to 420 of 432
  1. #406
    Enthusiast SabIsSharp is offline
    MemberRank
    Apr 2014 Join Date
    Atlanta, GeorgiLocation
    42Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jiozx View Post
    Pffffff.... @Sefyu41 should have created a [request] in help section.
    The title says it all. If the publisher of this thread will will not update the emu he should close this thread.

  2. #407
    Enthusiast Are Ferkingstad is offline
    MemberRank
    Nov 2012 Join Date
    NorwayLocation
    49Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by SabIsSharp View Post
    Dumb comment. Read the title of this thread.
    I know, that is why he releases the fixes out separately, so you can do it yourself!

  3. #408
    Only God Can Judge Me Jiozx is offline
    MemberRank
    Nov 2009 Join Date
    Weird WorldLocation
    253Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by SabIsSharp View Post
    The title says it all. If the publisher of this thread will will not update the emu he should close this thread.
    You shouldn't care at all.

  4. #409
    Enthusiast SabIsSharp is offline
    MemberRank
    Apr 2014 Join Date
    Atlanta, GeorgiLocation
    42Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jiozx View Post
    You shouldn't care at all.
    Obviously you care. If not you wouldn't be replying. Have a nice day

  5. #410
    Proficient Member Jeanzinh0 is offline
    MemberRank
    May 2009 Join Date
    BrazilLocation
    175Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Simple fix:

    Add in HabboHotel/GameClients/GameClient.cs:
    PHP Code:
    internal void SendNotificationWithPicture(string Messagestring Titlestring Picturestring Link ""string LinkTitle "")
            {
                
    ServerMessage Notification = new ServerMessage(Outgoing.SendNotifWithPic);
                
    Notification.AppendString(Picture);
                
    Notification.AppendInt32((Link != "" 2));
                
    Notification.AppendString("title");
                
    Notification.AppendString(Title);
                
    Notification.AppendString("message");
                
    Notification.AppendString(Message);
                if (
    Link != "")
                {
                    
    Notification.AppendString("linkUrl");
                    
    Notification.AppendString(Link);
                    
    Notification.AppendString("linkTitle");
                    
    Notification.AppendString(LinkTitle);
                }
                
    this.SendMessage(Notification);
            } 
    Add in Messagens/Headers/Composers.cs
    PHP Code:
    internal static int SendNotifWithPic 1310
    Notification Example:
    PHP Code:
     About.Append("<b><font color='#00A7E4' size='16'>Your Text Here - Title</font></b><br><br>Your Text Here - Body");
     
    Session.SendNotificationWithPicture(About.ToString(), "Title Here :)""image here"); 


    To add images:
    Go to c_images -> Create a folder with name 'notifications'
    Only png images

    Credits:
    =dj.matias= : Ankka emulator
    Me : Packet id

  6. #411
    Member TheWulles is offline
    MemberRank
    Jan 2014 Join Date
    SP - BrazilLocation
    53Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jeanzinh0 View Post
    Simple fix:

    Add in HabboHotel/GameClients/GameClient.cs:
    PHP Code:
    internal void SendNotificationWithPicture(string Messagestring Titlestring Picturestring Link ""string LinkTitle "")
            {
                
    ServerMessage Notification = new ServerMessage(Outgoing.SendNotifWithPic);
                
    Notification.AppendString(Picture);
                
    Notification.AppendInt32((Link != "" 2));
                
    Notification.AppendString("title");
                
    Notification.AppendString(Title);
                
    Notification.AppendString("message");
                
    Notification.AppendString(Message);
                if (
    Link != "")
                {
                    
    Notification.AppendString("linkUrl");
                    
    Notification.AppendString(Link);
                    
    Notification.AppendString("linkTitle");
                    
    Notification.AppendString(LinkTitle);
                }
                
    this.SendMessage(Notification);
            } 
    Add in Messagens/Headers/Composers.cs
    PHP Code:
    internal static int SendNotifWithPic 1310
    Notification Example:
    PHP Code:
     About.Append("<b><font color='#00A7E4' size='16'>Your Text Here - Title</font></b><br><br>Your Text Here - Body");
     
    Session.SendNotificationWithPicture(About.ToString(), "Title Here :)""image here"); 


    To add images:
    Go to c_images -> Create a folder with name 'notifications'
    Only png images

    Credits:
    =dj.matias= : Ankka emulator
    Me : Packet id
    Hello, What does this fix?

  7. #412
    Proficient Member Jeanzinh0 is offline
    MemberRank
    May 2009 Join Date
    BrazilLocation
    175Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by TheWulles View Post
    Hello, What does this fix?
    Notification with your images

  8. #413
    Only God Can Judge Me Jiozx is offline
    MemberRank
    Nov 2009 Join Date
    Weird WorldLocation
    253Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jeanzinh0 View Post
    Simple fix:

    Add in HabboHotel/GameClients/GameClient.cs:
    PHP Code:
    internal void SendNotificationWithPicture(string Messagestring Titlestring Picturestring Link ""string LinkTitle "")
            {
                
    ServerMessage Notification = new ServerMessage(Outgoing.SendNotifWithPic);
                
    Notification.AppendString(Picture);
                
    Notification.AppendInt32((Link != "" 2));
                
    Notification.AppendString("title");
                
    Notification.AppendString(Title);
                
    Notification.AppendString("message");
                
    Notification.AppendString(Message);
                if (
    Link != "")
                {
                    
    Notification.AppendString("linkUrl");
                    
    Notification.AppendString(Link);
                    
    Notification.AppendString("linkTitle");
                    
    Notification.AppendString(LinkTitle);
                }
                
    this.SendMessage(Notification);
            } 
    Add in Messagens/Headers/Composers.cs
    PHP Code:
    internal static int SendNotifWithPic 1310
    Notification Example:
    PHP Code:
     About.Append("<b><font color='#00A7E4' size='16'>Your Text Here - Title</font></b><br><br>Your Text Here - Body");
     
    Session.SendNotificationWithPicture(About.ToString(), "Title Here :)""image here"); 


    To add images:
    Go to c_images -> Create a folder with name 'notifications'
    Only png images

    Credits:
    =dj.matias= : Ankka emulator
    Me : Packet id
    eh? that's not a fix.

    - - - Updated - - -

    Quote Originally Posted by Jeanzinh0 View Post
    Notification with your images
    edit your post.. it should be "welcome message with pictures"

  9. #414
    Proficient Member Jeanzinh0 is offline
    MemberRank
    May 2009 Join Date
    BrazilLocation
    175Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jiozx View Post
    eh? that's not a fix.

    - - - Updated - - -



    edit your post.. it should be "welcome message with pictures"

    My Habbo_scripts.txt disagrees with you

    http://prntscr.com/3mcskj
    http://prntscr.com/3mcsm9

  10. #415
    Only God Can Judge Me Jiozx is offline
    MemberRank
    Nov 2009 Join Date
    Weird WorldLocation
    253Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jeanzinh0 View Post
    My Habbo_scripts.txt disagrees with you

    http://prntscr.com/3mcskj
    http://prntscr.com/3mcsm9
    Ehhh... still not a fix.

  11. #416
    Proficient Member Jeanzinh0 is offline
    MemberRank
    May 2009 Join Date
    BrazilLocation
    175Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jiozx View Post
    Ehhh... still not a fix.
    This notification works in the original version?
    Nope, so it is a fix :)

  12. #417
    Only God Can Judge Me Jiozx is offline
    MemberRank
    Nov 2009 Join Date
    Weird WorldLocation
    253Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jeanzinh0 View Post
    This notification works in the original version?
    Nope, so it is a fix :)
    Dude, stop being dumb..

  13. #418
    HabboFont.net Cankiee is offline
    MemberRank
    May 2013 Join Date
    North KoreaLocation
    978Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Jeanzinh0 View Post
    Simple fix:

    Add in HabboHotel/GameClients/GameClient.cs:
    PHP Code:
    internal void SendNotificationWithPicture(string Messagestring Titlestring Picturestring Link ""string LinkTitle "")
            {
                
    ServerMessage Notification = new ServerMessage(Outgoing.SendNotifWithPic);
                
    Notification.AppendString(Picture);
                
    Notification.AppendInt32((Link != "" 2));
                
    Notification.AppendString("title");
                
    Notification.AppendString(Title);
                
    Notification.AppendString("message");
                
    Notification.AppendString(Message);
                if (
    Link != "")
                {
                    
    Notification.AppendString("linkUrl");
                    
    Notification.AppendString(Link);
                    
    Notification.AppendString("linkTitle");
                    
    Notification.AppendString(LinkTitle);
                }
                
    this.SendMessage(Notification);
            } 
    Add in Messagens/Headers/Composers.cs
    PHP Code:
    internal static int SendNotifWithPic 1310
    Notification Example:
    PHP Code:
     About.Append("<b><font color='#00A7E4' size='16'>Your Text Here - Title</font></b><br><br>Your Text Here - Body");
     
    Session.SendNotificationWithPicture(About.ToString(), "Title Here :)""image here"); 


    To add images:
    Go to c_images -> Create a folder with name 'notifications'
    Only png images

    Credits:
    =dj.matias= : Ankka emulator
    Me : Packet id

    And with wich command i can activate this message? Or is this the welcome message?


    Notification Example:
    PHP Code:
     About.Append("<b><font color='#00A7E4' size='16'>Your Text Here - Title</font></b><br><br>Your Text Here - Body");
     
    Session.SendNotificationWithPicture(About.ToString(), "Title Here :)""image here"); 
    adding in wich file?
    Last edited by Cankiee; 25-05-14 at 01:18 PM.

  14. #419
    No need of reading this Rush Retros is offline
    MemberRank
    Dec 2013 Join Date
    DenmarkLocation
    365Posts

    Re: Plus Emulation [Revision 2] FIXES!

    Quote Originally Posted by Cankiee View Post
    And with wich command i can activate this message? Or is this the welcome message?




    adding in wich file?
    It was just an example like
    Code:
    internal void enable()
            {
                if (Session.GetHabbo().VipRank < 1)
                {
                    Session.SendNotificationWithPicture("You need a higher rank to do this command. You rank must be at least " + Session.GetVIPNameFromId(1), "Wrong rank", "vip.missing.membership");  
    
                    return;
                }
    like you can see it says "wrong rank" the text he want to pop up "vip missing membership = Picture he wants to use

  15. #420
    Enthusiast wafer is offline
    MemberRank
    Sep 2013 Join Date
    38Posts

    Re: Plus Emulation [Revision 2] FIXES!

    URGENT BUG: Users can override furnis! .-.



Advertisement