What command is this?
This command is :givevip <user> , it goes the user free vip , if you want to give them it. Or when they purchase vip and the vip don't come to them , use this command.
Who coded this command?
Well i didn't code this command , but i found it in Matty13 r63 uberemu edit , So i guess i would release it.
Credits
Matty13 - 100%
Polomikey - For releasing it
This command is :givevip <user> , it goes the user free vip , if you want to give them it. Or when they purchase vip and the vip don't come to them , use this command.
Who coded this command?
Well i didn't code this command , but i found it in Matty13 r63 uberemu edit , So i guess i would release it.
PHP:
case "givevip":
if (Session.GetHabbo().HasFuse("fuse_admin"))
{
TargetClient = UberEnvironment.GetGame().GetClientManager().GetClientByHabbo(Params[1]);
if (TargetClient != null)
{
TargetClient.GetHabbo().GetSubscriptionManager().AddOrExtendSubscription("habbo_vip", 2678400);
Session.SendNotif("VIP has been added for user: " + TargetClient.GetHabbo().Username);
return true;
}
else
{
Session.SendNotif("User could not be found.");
return true;
}
}
return false;
Credits
Matty13 - 100%
Polomikey - For releasing it