PlusEMU - Help Thread

Page 1 of 15 12345678911 ... LastLast
Results 1 to 15 of 211
  1. #1
    Evil Italian Overlowrd Droppy is offline
    [Internal Coder]Rank
    Feb 2012 Join Date
    /home/droppyLocation
    2,047Posts

    PlusEMU - Help Thread

    Post your help requests related to the PlusEMU emulator here.

    Please use the SPOILER tags if you're going to post screenshots or a large chunk of code.
    Also make sure your code is between the CODE tags to make it easier to read.

    WARNING:
    When replying to a post, QUOTE the post. There's a link under the user's post "Reply With Quote" - use it. If you're not replying to a question with quote, it will be considered as Spam.
    Edit 13/12/16: Please try to only QUOTE the PARTS that you are replying to instead of the full post!

    Edit 01/05/16: Make sure to add your emulator version, if it's either Habboon or any other edit, or original PlusEMU. There are a lot of PlusEmu edits out there, and we would like the questions to be posted in one thread only.

    Why a new thread? The last one had 128 pages, thus it's hard to find answers quickly.

    Link to the old thread (closed): http://forum.ragezone.com/f333/offic...hread-1090581/

    @Shoelace @CodeDragon @Shorty @asesinato
    Last edited by Taiga; 13-12-16 at 04:30 PM. Reason: Corrected grammar mistake


  2. #2
    Apprentice INCOLENZEN is offline
    MemberRank
    Nov 2016 Join Date
    23Posts

    Re: Official PlusEMU - Help Thread

    Hi,

    can someone tell me why this is happening? can_stack is on 0 - why it is stackable??

    Image: https://sc-cdn.scaleengine.net/i/084...d72d91a3fe.png

  3. #3
    Valued Member Mackors is offline
    MemberRank
    Aug 2016 Join Date
    100Posts

    Re: Official PlusEMU - Help Thread

    Quote Originally Posted by INCOLENZEN View Post
    Hi,

    can someone tell me why this is happening? can_stack is on 0 - why it is stackable??

    Image: https://sc-cdn.scaleengine.net/i/084...d72d91a3fe.png
    Change the stack_height to a 0.
    Run :update items and place the plant_yukka again in the room.

  4. #4
    Apprentice INCOLENZEN is offline
    MemberRank
    Nov 2016 Join Date
    23Posts

    Re: Official PlusEMU - Help Thread

    Quote Originally Posted by Mackors View Post
    Change the stack_height to a 0.
    Run :update items and place the plant_yukka again in the room.


    Now it looks like this :-D

  5. #5
    Member Marcois is offline
    MemberRank
    Oct 2016 Join Date
    63Posts

    Official PlusEMU - Help Thread

    Hello guys need help updating the production to new habbo production can someone send me a link of a plus emu with new production?


    Sent from my iPad using Tapatalk

  6. #6
    Novice kimdaastrup is offline
    MemberRank
    May 2012 Join Date
    Herning, DenmarLocation
    3Posts

    Re: Official PlusEMU - Help Thread

    Hello, how to remove the badge over a person?


    Screenshot by Lightshot

  7. #7
    Valued Member Mackors is offline
    MemberRank
    Aug 2016 Join Date
    100Posts

    Re: Official PlusEMU - Help Thread

    Quote Originally Posted by INCOLENZEN View Post


    Now it looks like this :-D
    You've changed can_stack again to 1, put it back to 0 and try it again.

    Quote Originally Posted by Marcois View Post
    Hello guys need help updating the production to new habbo production can someone send me a link of a plus emu with new production?


    Sent from my iPad using Tapatalk
    Look at the Habbo Release section, there are a couple of new productions.
    Take the one that's the best for you, and if you have trouble with set it up let me know.

    Quote Originally Posted by kimdaastrup View Post
    Hello, how to remove the badge over a person?


    Screenshot by Lightshot
    That's a enable effect. With the enable command you can turn it off.

    If you need a remove badge command, use this command. @spreedblood made this:
    PHP Code:

    using System
    ;
    using System.Linq;
    using System.Text;
    using System.Collections.Generic;
    using Plus.HabboHotel.GameClients;
    using Plus.Communication.Packets.Outgoing.Inventory.Badges;

    namespace 
    Plus.HabboHotel.Rooms.Chat.Commands.Moderator
    {   
      class 
    TakeBadgeCommand IChatCommand    
        
    {        
          public 
    string PermissionRequired        
                
    {            
              
    get { return "command_take_badge";  
                   }       
                     }
            public 
    string Parameters        
                      
    {            get
                             
    { return "%badge%";
                                       }        
                                    }
            public 
    string Description        
                    
    {            get 
                          
    { return "Take badge from specific user."
                                         }        }
            public 
    void Execute(GameClient SessionRoom Roomstring[] Params)        
                                        {            
                 if (
    Params.Length != 3)            
               {                
          
    Session.SendWhisper("Please enter a username and the code of the badge you'd like to take!");                
                            return;            }
                
    GameClient TargetClient PlusEnvironment.GetGame().GetClientManager().GetClientByUsername(Params[1]);           
           if (
    TargetClient != null)            {                
      if (
    TargetClient.GetHabbo().GetBadgeComponent().HasBadge(Params[2]))                
                  {                    
    TargetClient.GetHabbo().GetBadgeComponent().RemoveBadge(Params[2]);                 
       if (
    TargetClient.GetHabbo().Id != Session.GetHabbo().Id)                        TargetClient.SendMessage(new BadgesComposer(Session));                    
          else   
    Session.SendWhisper("You have successfully removed the badge " Params[2] + " from yourself!");  
            
    TargetClient.SendMessage(new BadgesComposer(TargetClient));               
                        }                
                      else                    
                  
    Session.SendWhisper("Oops, that user doesn't have this badge (" Params[2] + ") !");                return;            
          }            else            
          {                
    Session.SendWhisper("Oops, we couldn't find that target user!");                return;            }        }    }} 


    Last edited by Mackors; 26-11-16 at 07:16 PM.

  8. #8
    Apprentice INCOLENZEN is offline
    MemberRank
    Nov 2016 Join Date
    23Posts

    Re: Official PlusEMU - Help Thread

    Quote Originally Posted by Mackors View Post
    You've changed can_stack again to 1, put it back to 0 and try it again.
    It doesn't work :D

  9. #9
    Enthusiast Berttos is offline
    MemberRank
    Oct 2016 Join Date
    GermanyLocation
    27Posts

    Re: Official PlusEMU - Help Thread

    Anyone knows how can i Change the ''Special chat commands'' list?

    Screenshot by Lightshot

  10. #10
    j’aime ma famille dominic is offline
    MemberRank
    Aug 2012 Join Date
    ~/Location
    611Posts

    Re: Official PlusEMU - Help Thread

    Why is my group badges always black?


    nvm fixed
    Last edited by dominic; 29-11-16 at 11:39 PM.

  11. #11
    Member Angel1303 is offline
    MemberRank
    Feb 2011 Join Date
    UKLocation
    59Posts

    Re: Official PlusEMU - Help Thread

    Production-201602082203-712976078
    Anyone have a fix for the Catalog at any chance


    as it showing up just white boxes

    Update it managed to fix it by redoing all the swfs by hand
    Last edited by Angel1303; 03-12-16 at 02:29 AM.

  12. #12
    Novice CentoottoAngelo is offline
    MemberRank
    Jul 2016 Join Date
    Parma, ItalyLocation
    2Posts

    Re: Official PlusEMU - Help Thread

    How fix the group forum Plus Emulator 201602082203-712976078??


  13. #13
    Apprentice INCOLENZEN is offline
    MemberRank
    Nov 2016 Join Date
    23Posts

    Re: Official PlusEMU - Help Thread

    Quote Originally Posted by INCOLENZEN View Post
    Hi,

    can someone tell me why this is happening? can_stack is on 0 - why it is stackable??

    Image: https://sc-cdn.scaleengine.net/i/084...d72d91a3fe.png
    bump!

  14. #14
    Novice Jaxtons is offline
    MemberRank
    Nov 2016 Join Date
    3Posts

    Re: Official PlusEMU - Help Thread

    hi all help need please

    i install Production-201602082203-712976078 plus emu on vps moments ago and catalog show white boxes for all furni

    can help me?

    sorry for bad english

  15. #15
    Member Marcois is offline
    MemberRank
    Oct 2016 Join Date
    63Posts

    Re: Official PlusEMU - Help Thread

    Quote Originally Posted by Jaxtons View Post
    hi all help need please

    i install Production-201602082203-712976078 plus emu on vps moments ago and catalog show white boxes for all furni

    can help me?

    sorry for bad english
    Check your external vars


    Sent from my iPad using Tapatalk



Page 1 of 15 12345678911 ... LastLast

Advertisement