Phoenix Emulator [ Never ending effect]

Jmando

Member
Mar 5, 2012
37
3
Ok, Basically I want the code so when my user ( staff ) enter hotel or any room the staff badge effect is over their head anyone know the code?

Phoenix Emulator

b5ed4931f92ca219d9039486ebba6cc0.png
 
Last edited:

megarshark

Member
Apr 4, 2013
114
9
For Phoenix:
This isn't complicated at all :) (This time)
Replace your case 11: (Enable task) with this...


case 11:
if (Session.GetHabbo().HasFuse("cmd_enable"))
{
int int_ = int.Parse(Params[1]);
if (Session.GetHabbo().Rank > 5 && int_ == 102 || int_ == 178)
{
Session.SendNotif("You are not allowed to preform this enable.");
return true;
}
else
{
Session.GetHabbo().method_24().method_2(int_, true);
Phoenix.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
}
return true;
}
return false;

Or just go to this link and look for your question in the comments some 1 must to have asked it

 

13rad

King
Sep 15, 2013
156
36
Try this. Find the Mod Tools serializes for Staff in GameClient.cs and underneath the serialize add GetHabbo().GetAvatarComponentInventory().ApplyEffect(102);
 

Users who are viewing this thread

Top