[ButterFly r96] Sit Command

Results 1 to 25 of 25
  1. #1
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    [ButterFly r96] Sit Command

    I was trying to add Jacobs sit command to the butterfly emu but I found that it needed some editing and some additional code to make it work.

    I got it working and will show you how to add it. Maybe this will start the trend of people posting code snippets for Bfly just like they used to do for Uber.

    I know it's a simple release but it works:)

    Alright, lets get started:
    First open system/commands.ini

    At the bottom add:

    PHP Code:
    [sit]
    sit.minrank=1
    sit
    .description=Makes your avatar sit
    sit
    .prefix=
    sit.input=sit
    sit
    .clubs
    Now open system/commands_register.ini

    At the bottom add:
    PHP Code:
    sit=69 
    Open ChatCommandRegister.cs and find:
    PHP Code:
    case 68:
                        {
                            
    commandHandler.Fly();
                            break;
                        } 
    Below that add:
    PHP Code:
    case 69:
                        {
                            
    commandHandler.sit();
                            break;
                        } 
    Open ChatCommandHandler.cs and find:
    PHP Code:
    #region Commands 
    Below that add:
    PHP Code:
    internal void sit()
            {
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    int tries 0;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (!
    TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    if ((
    TargetRoomUser.RotBody 2) == 0)
                    {
                        if (
    TargetRoomUser == null)
                        {
                            return;
                        }

                        try
                        {
                            
    TargetRoomUser.Statusses.Add("sit""1.0");
                            
    TargetRoomUser.-= 0.35;
                            
    TargetRoomUser.isSitting true;
                            
    TargetRoomUser.UpdateNeeded true;
                        }
                        catch { }

                        return;

                    }

                    else
                    {
                        if (
    tries <= 1)
                        {
                            
    TargetRoomUser.RotBody--;
                            
    tries++;
                            
    sit();
                        }
                        else
                        {
                            
    Session.SendNotif("You cannot sit diagonally, try it again please");
                            
    tries 0;
                        }

                    }

                }

                else if (
    TargetRoomUser.isSitting == true)
                {
                    
                        
    TargetRoomUser.+= 0.35;
                        
    TargetRoomUser.Statusses.Remove("sit");
                        
    TargetRoomUser.Statusses.Remove("1.0");
                        
    TargetRoomUser.isSitting false;
                        
    TargetRoomUser.UpdateNeeded true;

                }
            } 
    Open RoomUser.cs and find:
    PHP Code:
    internal bool isFlying false
    Below that add:
    PHP Code:
    internal bool isSitting false
    Now open RoomUserManagaer.cs and find:
    PHP Code:
    double nextZ room.GetGameMap().SqAbsoluteHeight(nextXnextY); 
    Below that add:
    PHP Code:
          if (User.isSitting == true)
                            {

                                    
    User.Statusses.Remove("sit");
                                    
    User.+= 0.35;
                                    
    User.isSitting false;
                                    
    User.UpdateNeeded true;
                                
                                
                            } 
    Credits to T09 for fixing it up a little.

    I think that's about it :)
    Don't flame I know it's simple.
    Last edited by leenster; 03-07-12 at 03:06 AM.


  2. #2
    Member CobraSnip is offline
    MemberRank
    Apr 2011 Join Date
    BlackburnLocation
    60Posts

    Re: [ButterFly r96] Sit Command

    Nice release
    Last edited by CobraSnip; 05-07-12 at 05:46 AM.

  3. #3
    Zephyr Studios PRIZM is offline
    MemberRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Re: [ButterFly r96] Sit Command

    Thanks Leenster! Going to add it now Butterfly FTW!
    Edit: got it to work :P
    Last edited by PRIZM; 29-06-12 at 06:46 AM.

  4. #4
    son, i am dissapoint Near is offline
    MemberRank
    Sep 2009 Join Date
    The NetherlandsLocation
    491Posts

    Re: [ButterFly r96] Sit Command

    It's nice that you're contributing really. But still, that sit command is kinda stupid.. sitting in the air?

  5. #5
    Right here, right now.. jordynegen11 is offline
    MemberRank
    Jul 2009 Join Date
    NetherlandsLocation
    398Posts

    Re: [ButterFly r96] Sit Command

    I fixed wired for butterfly and a good catalogue

    demo: rabbo-hotel.nl

  6. #6
    Account Upgraded | Title Enabled! SkeetEmUp is offline
    MemberRank
    Aug 2011 Join Date
    358Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by Near View Post
    It's nice that you're contributing really. But still, that sit command is kinda stupid.. sitting in the air?
    No... Sitting on the floor... Habbo has it.

  7. #7
    G'nome sayin' Exonize is offline
    MemberRank
    May 2011 Join Date
    Czech RepublicLocation
    517Posts

    Re: [ButterFly r96] Sit Command

    Thank you very much. I hope people will keep posting things like this to Butterfly :)

  8. #8
    son, i am dissapoint Near is offline
    MemberRank
    Sep 2009 Join Date
    The NetherlandsLocation
    491Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by SkeetEmUp View Post
    No... Sitting on the floor... Habbo has it.
    Oh really? Well, didn't really know that. On the screen it looked like he was sitting in the air, haha. Thanks mate.

  9. #9
    Zephyr Studios PRIZM is offline
    MemberRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Re: [ButterFly r96] Sit Command

    What about making addons to Butterfly?

  10. #10
    Erday im hustlin Bapestar is offline
    MemberRank
    Dec 2007 Join Date
    SandaygoLocation
    587Posts

    Re: [ButterFly r96] Sit Command

    Nvm, fixed lol

    EDIT: not fixed, still can't create rooms
    Last edited by Bapestar; 29-06-12 at 10:13 AM.

  11. #11
    Proficient Member wizcsharp is offline
    MemberRank
    Nov 2011 Join Date
    DenmarkLocation
    195Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by Lasse View Post
    Thanks Leenster! Going to add it now Butterfly FTW!
    Edit: got it to work :P
    Stop using my look. blah

  12. #12
    Zephyr Studios PRIZM is offline
    MemberRank
    Feb 2012 Join Date
    DenmarkLocation
    2,291Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by wizcsharp View Post
    Stop using my look. blah
    Lol, i knew you would say that :p Just used your account from the db to test it. Also created a new one WITHOUT YOUR LOOK :D

  13. #13
    Learning C# T09 is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    216Posts

    Re: [ButterFly r96] Sit Command

    I fixed the code to be working fine (if you stand on a platform you'll sit at that height, you can't stand on chairs, adapted sit height), I only get credits for the small modifications. Tutorial and bfly compability go to leenster and base goes to jacob.

    Remove all of his code and do the following:

    First open system/commands.ini

    At the bottom add:

    PHP Code:
    [sit]
    sit.minrank=1
    sit
    .description=Makes your avatar sit
    sit
    .prefix=
    sit.input=sit
    sit
    .clubs
    Now open system/commands_register.ini

    At the bottom add:
    PHP Code:
    sit=69 
    Open ChatCommandRegister.cs and find:
    PHP Code:
    case 68:
                        {
                            
    commandHandler.Fly();
                            break;
                        } 
    Below that add:
    PHP Code:
    case 69:
                        {
                            
    commandHandler.sit();
                            break;
                        } 
    Open ChatCommandHandler.cs and find:
    PHP Code:
    #region Commands 
    Below that add:
    PHP Code:
    internal void sit()
            {
                
    InitTimer();
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    int tries 0;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (!
    TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    if ((
    TargetRoomUser.RotBody 2) == 0)
                    {
                        if (
    TargetRoomUser == null)
                        {
                            return;
                        }

                        try
                        {
                            
    TargetRoomUser.Statusses.Add("sit""1.0");
                            
    TargetRoomUser.-= 0.35;
                            
    TargetRoomUser.isSitting true;
                            
    TargetRoomUser.UpdateNeeded true;
                        }
                        catch { }

                        return;

                    }

                    else
                    {
                        if (
    tries <= 1)
                        {
                            
    TargetRoomUser.RotBody--;
                            
    tries++;
                            
    sit();
                        }
                        else
                        {
                            
    Session.SendNotif("You cannot sit diagonally, try it again please");
                            
    tries 0;
                        }

                    }

                }

                else if (
    TargetRoomUser.isSitting == true)
                {
                    
                        
    TargetRoomUser.+= 0.35;
                        
    TargetRoomUser.Statusses.Remove("sit");
                        
    TargetRoomUser.Statusses.Remove("1.0");
                        
    TargetRoomUser.isSitting false;
                        
    TargetRoomUser.UpdateNeeded true;

                }
            }
           

            private 
    Timer timer1;
            public 
    void InitTimer()
            {
                
    timer1 = new Timer();
                
    timer1.Tick += new EventHandler(timer1_Tick);
                
    timer1.Interval 1000// in miliseconds
                
    timer1.Start();
            }

            private 
    void timer1_Tick(object senderEventArgs e)
            {
                
    isSitting();
            }
            
    internal void isSitting()
            {
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (
    TargetRoomUser.isSitting == true && !TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    
    TargetRoomUser.isSitting false;
                }
            } 
    Open RoomUser.cs and find:
    PHP Code:
    internal bool isFlying false
    Below that add:
    PHP Code:
    internal bool isSitting false
    Now open RoomUserManagaer.cs and find:
    PHP Code:
    double nextZ room.GetGameMap().SqAbsoluteHeight(nextXnextY); 
    Below that add:
    PHP Code:
          if (User.isSitting == true)
                            {

                                    
    User.Statusses.Remove("sit");
                                    
    User.+= 0.35;
                                    
    User.isSitting false;
                                    
    User.UpdateNeeded true;
                                
                                
                            } 

  14. #14
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by T09 View Post
    Spoiler:

    I fixed the code to be working fine (if you stand on a platform you'll sit at that height, you can't stand on chairs, adapted sit height), I only get credits for the small modifications. Tutorial and bfly compability go to leenster and base goes to jacob.

    Remove all of his code and do the following:

    First open system/commands.ini

    At the bottom add:

    PHP Code:
    [sit]
    sit.minrank=1
    sit
    .description=Makes your avatar sit
    sit
    .prefix=
    sit.input=sit
    sit
    .clubs
    Now open system/commands_register.ini

    At the bottom add:
    PHP Code:
    sit=69 
    Open ChatCommandRegister.cs and find:
    PHP Code:
    case 68:
                        {
                            
    commandHandler.Fly();
                            break;
                        } 
    Below that add:
    PHP Code:
    case 69:
                        {
                            
    commandHandler.sit();
                            break;
                        } 
    Open ChatCommandHandler.cs and find:
    PHP Code:
    #region Commands 
    Below that add:
    PHP Code:
    internal void sit()
            {
                
    InitTimer();
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    int tries 0;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (!
    TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    if ((
    TargetRoomUser.RotBody 2) == 0)
                    {
                        if (
    TargetRoomUser == null)
                        {
                            return;
                        }

                        try
                        {
                            
    TargetRoomUser.Statusses.Add("sit""1.0");
                            
    TargetRoomUser.-= 0.35;
                            
    TargetRoomUser.isSitting true;
                            
    TargetRoomUser.UpdateNeeded true;
                        }
                        catch { }

                        return;

                    }

                    else
                    {
                        if (
    tries <= 1)
                        {
                            
    TargetRoomUser.RotBody--;
                            
    tries++;
                            
    sit();
                        }
                        else
                        {
                            
    Session.SendNotif("You cannot sit diagonally, try it again please");
                            
    tries 0;
                        }

                    }

                }

                else if (
    TargetRoomUser.isSitting == true)
                {
                    
                        
    TargetRoomUser.+= 0.35;
                        
    TargetRoomUser.Statusses.Remove("sit");
                        
    TargetRoomUser.Statusses.Remove("1.0");
                        
    TargetRoomUser.isSitting false;
                        
    TargetRoomUser.UpdateNeeded true;

                }
            }
           

            private 
    Timer timer1;
            public 
    void InitTimer()
            {
                
    timer1 = new Timer();
                
    timer1.Tick += new EventHandler(timer1_Tick);
                
    timer1.Interval 1000// in miliseconds
                
    timer1.Start();
            }

            private 
    void timer1_Tick(object senderEventArgs e)
            {
                
    isSitting();
            }
            
    internal void isSitting()
            {
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (
    TargetRoomUser.isSitting == true && !TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    
    TargetRoomUser.isSitting false;
                }
            } 
    Open RoomUser.cs and find:
    PHP Code:
    internal bool isFlying false
    Below that add:
    PHP Code:
    internal bool isSitting false
    Now open RoomUserManagaer.cs and find:
    PHP Code:
    double nextZ room.GetGameMap().SqAbsoluteHeight(nextXnextY); 
    Below that add:
    PHP Code:
          if (User.isSitting == true)
                            {

                                    
    User.Statusses.Remove("sit");
                                    
    User.+= 0.35;
                                    
    User.isSitting false;
                                    
    User.UpdateNeeded true;
                                
                                
                            } 
    Thanks for fixing it up. I will change the main post and add credits.

  15. #15
    Learning C# T09 is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    216Posts
    Quote Originally Posted by leenster View Post
    Thanks for fixing it up. I will change the main post and add credits.
    I'll post an improved one tomorrow as the timer is unneeded and I cleaner up some code

  16. #16
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by T09 View Post
    I'll post an improved one tomorrow as the timer is unneeded and I cleaner up some code
    Yeah i was just wondering what the timer was for.. I am going to remove the timer from the main post.

  17. #17
    Learning C# T09 is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    216Posts
    Quote Originally Posted by leenster View Post
    Yeah i was just wondering what the timer was for..
    Preventing standing on a chair but I'll post a more efficient way tomorrow.

  18. #18
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts
    Quote Originally Posted by T09 View Post
    Preventing standing on a chair but I'll post a more efficient way tomorrow.
    If(isSitting) should do he trick..


    Sent from some remote location using Tapatalk...

  19. #19
    Learning C# T09 is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    216Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by leenster View Post
    If(isSitting) should do he trick..


    Sent from some remote location using Tapatalk...
    No, if you stand on a platform and you remove it isSitting will stay true :S

    First use my code and after that do the following to improve it:

    Remove the following code from chatcommandhandler.cs:

    PHP Code:
     private Timer timer1;
            public 
    void InitTimer()
            {
                
    timer1 = new Timer();
                
    timer1.Tick += new EventHandler(timer1_Tick);
                
    timer1.Interval 1000// in miliseconds
                
    timer1.Start();
            }

            private 
    void timer1_Tick(object senderEventArgs e)
            {
                
    isSitting();
            }
            
    internal void isSitting()
            {
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (
    TargetRoomUser.isSitting == true && !TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    
    TargetRoomUser.isSitting false;
                }
            } 
    After that find the following line in roomusermanager.cs:

    PHP Code:
                        Gamemap map room.GetGameMap();
                        
    SquarePoint Point DreamPathfinder.GetNextStep(User.XUser.YUser.GoalXUser.GoalYmap.GameMapmap.ItemHeightMap
                            
    map.Model.MapSizeXmap.Model.MapSizeYUser.AllowOverridemap.DiagonalEnabled); 
    and add the following code underneath:

    PHP Code:
                        User.isSitting false

  20. #20
    Alpha Member Danny is offline
    MemberRank
    Oct 2011 Join Date
    My PCLocation
    2,158Posts

    Re: [ButterFly r96] Sit Command

    Anyone has the codes for Hang-Glider?

  21. #21
    What about no. Davidaap is offline
    MemberRank
    Nov 2009 Join Date
    773Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by jordynegen11 View Post
    I fixed wired for butterfly and a good catalogue

    demo: rabbo-hotel.nl


    nice rename of butterfly, faggot

  22. #22
    G'nome sayin' Exonize is offline
    MemberRank
    May 2011 Join Date
    Czech RepublicLocation
    517Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by Davidaap View Post


    nice rename of butterfly, faggot
    Oh wow... Butterfly Controle Panel - Log in

  23. #23
    Proficient Member Yesser is offline
    MemberRank
    Aug 2010 Join Date
    179Posts

    Re: [ButterFly r96] Sit Command

    Quote Originally Posted by T09 View Post
    I fixed the code to be working fine (if you stand on a platform you'll sit at that height, you can't stand on chairs, adapted sit height), I only get credits for the small modifications. Tutorial and bfly compability go to leenster and base goes to jacob.

    Remove all of his code and do the following:

    First open system/commands.ini

    At the bottom add:

    PHP Code:
    [sit]
    sit.minrank=1
    sit
    .description=Makes your avatar sit
    sit
    .prefix=
    sit.input=sit
    sit
    .clubs
    Now open system/commands_register.ini

    At the bottom add:
    PHP Code:
    sit=69 
    Open ChatCommandRegister.cs and find:
    PHP Code:
    case 68:
                        {
                            
    commandHandler.Fly();
                            break;
                        } 
    Below that add:
    PHP Code:
    case 69:
                        {
                            
    commandHandler.sit();
                            break;
                        } 
    Open ChatCommandHandler.cs and find:
    PHP Code:
    #region Commands 
    Below that add:
    PHP Code:
    internal void sit()
            {
                
    InitTimer();
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    int tries 0;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (!
    TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    if ((
    TargetRoomUser.RotBody 2) == 0)
                    {
                        if (
    TargetRoomUser == null)
                        {
                            return;
                        }

                        try
                        {
                            
    TargetRoomUser.Statusses.Add("sit""1.0");
                            
    TargetRoomUser.-= 0.35;
                            
    TargetRoomUser.isSitting true;
                            
    TargetRoomUser.UpdateNeeded true;
                        }
                        catch { }

                        return;

                    }

                    else
                    {
                        if (
    tries <= 1)
                        {
                            
    TargetRoomUser.RotBody--;
                            
    tries++;
                            
    sit();
                        }
                        else
                        {
                            
    Session.SendNotif("You cannot sit diagonally, try it again please");
                            
    tries 0;
                        }

                    }

                }

                else if (
    TargetRoomUser.isSitting == true)
                {
                    
                        
    TargetRoomUser.+= 0.35;
                        
    TargetRoomUser.Statusses.Remove("sit");
                        
    TargetRoomUser.Statusses.Remove("1.0");
                        
    TargetRoomUser.isSitting false;
                        
    TargetRoomUser.UpdateNeeded true;

                }
            }
           

            private 
    Timer timer1;
            public 
    void InitTimer()
            {
                
    timer1 = new Timer();
                
    timer1.Tick += new EventHandler(timer1_Tick);
                
    timer1.Interval 1000// in miliseconds
                
    timer1.Start();
            }

            private 
    void timer1_Tick(object senderEventArgs e)
            {
                
    isSitting();
            }
            
    internal void isSitting()
            {
                
    Room TargetRoom Session.GetHabbo().CurrentRoom;
                
    RoomUser TargetRoomUser null;
                
    TargetRoom ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);

                
    TargetRoomUser TargetRoom.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);

                if (
    TargetRoomUser.isSitting == true && !TargetRoomUser.Statusses.ContainsKey("sit"))
                {
                    
    TargetRoomUser.isSitting false;
                }
            } 
    Open RoomUser.cs and find:
    PHP Code:
    internal bool isFlying false
    Below that add:
    PHP Code:
    internal bool isSitting false
    Now open RoomUserManagaer.cs and find:
    PHP Code:
    double nextZ room.GetGameMap().SqAbsoluteHeight(nextXnextY); 
    Below that add:
    PHP Code:
          if (User.isSitting == true)
                            {

                                    
    User.Statusses.Remove("sit");
                                    
    User.+= 0.35;
                                    
    User.isSitting false;
                                    
    User.UpdateNeeded true;
                                
                                
                            } 
    Why:

    PHP Code:
    User.+= 0.35
    Hmmm?

  24. #24
    GreenMaX keven007 is offline
    MemberRank
    Jul 2008 Join Date
    The NetherlandsLocation
    275Posts
    Quote Originally Posted by Davidaap View Post


    nice rename of butterfly, faggot
    And he said earlier in this topic HE fixed wired? What a lie! Don't do like you could do anything! I HATE IT!

    Sent from my GT-S5660 using Tapatalk

  25. #25
    Account Upgraded | Title Enabled! J4y2 is offline
    MemberRank
    Feb 2012 Join Date
    South KoreaLocation
    317Posts

    Re: [ButterFly r96] Sit Command

    I Already Put In The Code But Still Can't Sit



Advertisement