[REL] :Give VIP Command, Not coded by Polomikey [REL]

Status
Not open for further replies.

Polomikey

Member
Sep 27, 2010
325
0
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.

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
 

Crup

weeeeee
Jul 25, 2010
545
310
Honestly, It's useless and Jammy coded a command relating to this but it's better. The command give out more ranks then VIP. If you're going to spam threads by releasing more commands. Just add them all together
 

Ari

Member
Sep 29, 2010
320
48
This comes with ObboRP Emulator. :vip <username>
If u read the thread this is for uber (r63) and for v26 the command is

Code:
#region :vip <user>
case "vip":
{
If (_Rank > 5)
{
virtualUser Target = userManager.getuser
(args[1]);
Target._Rank = 2;
Target.sendData("You have received VIP no need for you to reload all vip functions should be active");
}
break;
#endregion
Sorry if theirs any mistakes did this on my phone
 

Cablink

http://www.vroleplay.net - join now!
Feb 4, 2011
382
27
If u read the thread this is for uber (r63) and for v26 the command is

Code:
#region :vip <user>
case "vip":
{
If (_Rank > 5)
{
virtualUser Target = userManager.getuser
(args[1]);
Target._Rank = 2;
Target.sendData("You have received VIP no need for you to reload all vip functions should be active");
}
break;
#endregion
Sorry if theirs any mistakes did this on my phone
Sorry, Jammy, didnt read it carefully, thanks for telling me tho
 
Status
Not open for further replies.

Users who are viewing this thread

Top