• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jun 26, 2011
Messages
70
Reaction score
3
Download disponible in: password: ragezone_agehotel123

Open Source ... NOT EDIT... Source original by topic




Please fixes and updates in Skype:

live:ajdaudio
 
Last edited:
Newbie Spellweaver
Joined
Jun 26, 2011
Messages
70
Reaction score
3
Links down.. Please reupload!


Download disponible in: password: ragezone_agehotel123

Open Source ... NOT EDIT... Source original by topic




Please fixes and updates in Skype:

live:ajdaudio
 
Skilled Illusionist
Joined
Oct 20, 2010
Messages
329
Reaction score
84
Who knows hot to fix error :

GameClients\GameClient.cs:line 449
Error: System.IndexOutOfRangeException: Index was outside the bounds of the array.
 
Newbie Spellweaver
Joined
Mar 31, 2012
Messages
19
Reaction score
0
- down.
Please reupload!
 
Sean told me to come back
Joined
Jul 21, 2007
Messages
39
Reaction score
9
Does Dance, Rave, Roll, Makesay, Sitdown still not work?
 
Newbie Spellweaver
Joined
Dec 4, 2013
Messages
13
Reaction score
0
Does Dance, Rave, Roll, Makesay, Sitdown still not work?
its work.

Hehe i fix the pathfinder bug with the lay and sit problem on rooms with stairs.


I fixed the Socket error, too.
 
Sean told me to come back
Joined
Jul 21, 2007
Messages
39
Reaction score
9
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:
Skilled Illusionist
Joined
Jan 23, 2012
Messages
301
Reaction score
164
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:
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, it's not that hard :)
 
Sean told me to come back
Joined
Jul 21, 2007
Messages
39
Reaction score
9
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:
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, 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)
 
Newbie Spellweaver
Joined
Dec 4, 2013
Messages
13
Reaction score
0
Next think what i add :D
Thank you to some people of ragezone where help me ;-)

You love it?

RyanVS - PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More - RaGEZONE Forums


RyanVS - PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More - RaGEZONE Forums


Maybe a realease a version of my emu in the next days.
 
Junior Spellweaver
Joined
Dec 31, 2013
Messages
104
Reaction score
43
Three small update and you renamed it? ;/
 
Status
Not open for further replies.
Back
Top