PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

Page 7 of 9 FirstFirst 123456789 LastLast
Results 91 to 105 of 121
  1. #91
    Sean told me to come back Late3 is offline
    MemberRank
    Jul 2007 Join Date
    United KingdomLocation
    1,205Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Yeah, I noticed. Its rank >4.

    I recoded it to obey permissions instead, although having trouble getting "makesay" work.

    Edit: Fixed makesay, Also doesn't require 9 chars before text.

    Code:
    case 75:
    if(!Session.GetHabbo().HasFuse("cmd_makesay"))
    {
        string text = Params[1];
        TargetClient = Phoenix.GetGame().GetClientManager().GetClientByHabbo(text);
        class2 = Phoenix.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);
        if (Session == null || TargetClient == null)
        {
            return false;
        }
        RoomUser class4 = class2.method_53(TargetClient.GetHabbo().Id);
        class4.method_1(TargetClient, Input.Substring(TargetClient.GetHabbo().Username.Length + text.Length), false);
        return true;
    }
    return false;
    Last edited by Late3; 27-01-14 at 02:47 AM. Reason: See edit

  2. #92
    Planning Stuff Since 2013 Vrop93 is offline
    MemberRank
    Jan 2012 Join Date
    Grocery StoreLocation
    320Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by Late3 View Post
    Yeah, I noticed. Its rank >4.

    I recoded it to obey permissions instead, although having trouble getting "makesay" work.

    Edit: Fixed makesay, Also doesn't require 9 chars before text.

    Code:
    case 75:
    if(!Session.GetHabbo().HasFuse("cmd_makesay"))
    {
        string text = Params[1];
        TargetClient = Phoenix.GetGame().GetClientManager().GetClientByHabbo(text);
        class2 = Phoenix.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);
        if (Session == null || TargetClient == null)
        {
            return false;
        }
        RoomUser class4 = class2.method_53(TargetClient.GetHabbo().Id);
        class4.method_1(TargetClient, Input.Substring(TargetClient.GetHabbo().Username.Length + text.Length), false);
        return true;
    }
    return false;
    Dude, how does that obey permissions?
    With that code you are telling it that if you don't have the permission makesay then you can run the command, that's backwords. You should omit the '!' not even that hard :P

    Let's just say, use your code, have a user come on and run
    :makesay Late3 :ha Vrop93 is amazing
    and it will send an ha using your permissions. :P

    PHP Code:
    case 75:
    if(
    Session.GetHabbo().HasFuse("cmd_makesay"))
    {
        
    string text Params[1];
        
    TargetClient Phoenix.GetGame().GetClientManager().GetClientByHabbo(text);
        
    class2 Phoenix.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);
        if (
    Session == null || TargetClient == null)
        {
            return 
    false;
        }
        
    RoomUser class4 class2.method_53(TargetClient.GetHabbo().Id);
        
    class4.method_1(TargetClientInput.Substring(TargetClient.GetHabbo().Username.Length text.Length), false);
        return 
    true;
    }
    return 
    false
    Dude, it's not that hard :)

  3. #93
    Sean told me to come back Late3 is offline
    MemberRank
    Jul 2007 Join Date
    United KingdomLocation
    1,205Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by Vrop93 View Post
    Dude, how does that obey permissions?
    With that code you are telling it that if you don't have the permission makesay then you can run the command, that's backwords. You should omit the '!' not even that hard :P

    Let's just say, use your code, have a user come on and run and it will send an ha using your permissions. :P

    PHP Code:
    case 75:
    if(
    Session.GetHabbo().HasFuse("cmd_makesay"))
    {
        
    string text Params[1];
        
    TargetClient Phoenix.GetGame().GetClientManager().GetClientByHabbo(text);
        
    class2 Phoenix.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId);
        if (
    Session == null || TargetClient == null)
        {
            return 
    false;
        }
        
    RoomUser class4 class2.method_53(TargetClient.GetHabbo().Id);
        
    class4.method_1(TargetClientInput.Substring(TargetClient.GetHabbo().Username.Length text.Length), false);
        return 
    true;
    }
    return 
    false
    Dude, it's not that hard :)
    Indeed, It would allow bypass of Permissions with !, but that was the only way it would work for me,
    What I posted above wasn't meant to include the permissions just the fix for the 9 characters.

    But since you pointed it out. (Y)

  4. #94
    is it me or is it just .. duckietm is offline
    MemberRank
    Oct 2010 Join Date
    339Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    - Solved :)
    Last edited by duckietm; 27-01-14 at 01:21 PM.

  5. #95
    Apprentice Aoon is offline
    MemberRank
    Jun 2013 Join Date
    GermanyLocation
    24Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by StaffJunior View Post
    Hehe i fix the pathfinder bug with the lay and sit problem on rooms with stairs.
    http://prntscr.com/2mwavo
    How did you fix this problem?

  6. #96
    Member Fenturr is offline
    MemberRank
    Aug 2013 Join Date
    59Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by duckietm View Post
    - Solved :)
    How do you fixed it??

  7. #97
    Apprentice StaffJunior is offline
    MemberRank
    Dec 2013 Join Date
    13Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Next think what i add :D
    Thank you to some people of ragezone where help me ;-)

    You love it?





    Maybe a realease a version of my emu in the next days.

  8. #98
    Valued Member Juniori is offline
    MemberRank
    Dec 2013 Join Date
    104Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Three small update and you renamed it? ;/

  9. #99
    Apprentice StaffJunior is offline
    MemberRank
    Dec 2013 Join Date
    13Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by Juniori View Post
    Three small update and you renamed it? ;/
    you don't know what i do with the emu but there Stand "based on Phoenix"

  10. #100
    is it me or is it just .. duckietm is offline
    MemberRank
    Oct 2010 Join Date
    339Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by StaffJunior View Post
    Next think what i add :D
    Thank you to some people of ragezone where help me ;-)

    You love it?

    Maybe a realease a version of my emu in the next days.
    Well sounds very nice, can't wait to see it :)

  11. #101
    Valued Member Juniori is offline
    MemberRank
    Dec 2013 Join Date
    104Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by duckietm View Post
    Well sounds very nice, can't wait to see it :)
    I dont like he. He wanted my Freeze! game code before release and sayd "Dont release your emulator" ;/ Code stoler detected. He also renamed emulator and removed credits >:(

    Only 4 updates in his emulator: socket error fix, pathfinder bug fix (bad?), some new commands, room polls
    Last edited by Juniori; 28-01-14 at 12:35 PM. Reason: Typo

  12. #102
    Apprentice StaffJunior is offline
    MemberRank
    Dec 2013 Join Date
    13Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by Juniori View Post
    I dont like he. He wanted my Freeze! game code before release and sayd "Dont release your emulator" ;/ Code stoler detected. He also renamed emulator and removed credits >:(

    Only 4 updates in his emulator: socket error fix, pathfinder bug fix (bad?), some new commands, room polls
    haha, i like a part of you source to fix it in my emu and i am a code stealer???
    I only say don't released it for anybody but i think they remove your credits and say its here own.
    And i think its bad for some Retros where fix the bugs by her self and other people released it and do nothing.


    I get some more addons like handitem and some more.

  13. #103
    Member ruflesbpt is offline
    MemberRank
    Jun 2011 Join Date
    live:ajdaudioLocation
    70Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by StaffJunior View Post
    haha, i like a part of you source to fix it in my emu and i am a code stealer???
    I only say don't released it for anybody but i think they remove your credits and say its here own.
    And i think its bad for some Retros where fix the bugs by her self and other people released it and do nothing.


    I get some more addons like handitem and some more.
    Your EMu stable with 1000 onlines or + ?

  14. #104
    Apprentice StaffJunior is offline
    MemberRank
    Dec 2013 Join Date
    13Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by ruflesbpt View Post
    Your EMu stable with 1000 onlines or + ?
    Don't can test it but i think its stable.

  15. #105
    Account Upgraded | Title Enabled! Joe Richardson is offline
    MemberRank
    Feb 2013 Join Date
    485Posts

    Re: PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Quote Originally Posted by Juniori View Post
    I dont like he. He wanted my Freeze! game code before release and sayd "Dont release your emulator" ;/ Code stoler detected. He also renamed emulator and removed credits >:(

    Only 4 updates in his emulator: socket error fix, pathfinder bug fix (bad?), some new commands, room polls
    Well, people just want the best they can get. You obviously won't release yours, so yano. He's just trying to get people a decent version, but if he did steal and remove credits. That's kinda low.



Advertisement