Anything here?case 25:
if (Session.GetHabbo().HasFuse("cmd_masscredits"))
{
try
{
int num5 = int.Parse(Params[1]);
Phoenix.GetGame().GetClientManager().method_18(num5);
}
catch
{
Session.SendNotif("Ett nummer tack");
}
Phoenix.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
return true;
}
return false;
.
YesYes lol, that's my question what should i edit?
Anything here?
case 25:
if (Session.GetHabbo().HasFuse("cmd_masscredits"))
{
try
{
int num5 = int.Parse(Params[1]);
if (num5 > 30000)
{
Session.SendNotif("Du kan inte ge ut mer än 30000 credits.");
}
else
{
Phoenix.GetGame().GetClientManager().method_18(num5);
}
}
catch
{
Session.SendNotif("Ett nummer tack");
}
Phoenix.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
return true;
}
return false;