I need some clarification on this (NOOB MOMENT)
So my take on this is server is checking the timer to see if it has been 15 minutes yet and sends out the default 100 coins. Then I see under it says subscription data what caught my eye was ' _viprank' So basically the question i wanna know is if the server sends more credits & pixels to users that are VIP? If so where can I change this at because in server settings I have it disabled but still seems to send 600 coins.PHP Code:public void CheckCreditsTimer()
{
try
{
this._creditsTickUpdate--;
if (this._creditsTickUpdate <= 0)
{
int CreditUpdate = PlusStaticGameSettings.UserCreditsUpdateAmount;
int DucketUpdate = PlusStaticGameSettings.UserPixelsUpdateAmount;
SubscriptionData SubData = null;
if (PlusEnvironment.GetGame().GetSubscriptionManager().TryGetSubscriptionData(this._vipRank, out SubData))
{
CreditUpdate += SubData.Credits;
DucketUpdate += SubData.Duckets;
}
this._credits += CreditUpdate;
this._duckets += DucketUpdate;
this._client.SendMessage(new CreditBalanceComposer(this._credits));
this._client.SendMessage(new HabboActivityPointNotificationComposer(this._duckets, DucketUpdate));
this.CreditsUpdateTick = PlusStaticGameSettings.UserCreditsUpdateTimer;
}
}
catch { }
}
UPDATE:
I figured out that any users with VIP gets extra credits regardless of the server settings if anyone knows how to change the number of coins sent post below please.
@Sledmore



Reply With Quote![[PLUS] Credit Timer Clarification!](http://ragezone.com/hyper728.png)


