1 Attachment(s)
PlusEMU R2 - No overload for method 'ReloadSubscription' takes 0 arguments
Hello RZ,
I was redirected to use the PlusEMU R2 with fixes by Habbo2 by a friend and I wanted to add a few more fixes to the emulator but it came with an error. I'm no C++ coder so I don't particularly know what I'm doing other than adding fixes.
Here's my problem:
Attachment 145124
Link to the EMU I am using: http://forum.ragezone.com/f353/pluse...pdated-994546/
Any help would be appreciated since I've been stuck on this for a while now,
Cheers RZ!
Re: PlusEMU R2 - No overload for method 'ReloadSubscription' takes 0 arguments
It is because ReloadSubscription() requires certain arguements which you can see in the screenshot.
int subid , int duration, gameclient session.
You have to pass these down to the method in order to execute it. You cannot leave it empty.
Re: PlusEMU R2 - No overload for method 'ReloadSubscription' takes 0 arguments
Re: PlusEMU R2 - No overload for method 'ReloadSubscription' takes 0 arguments
Re: PlusEMU R2 - No overload for method 'ReloadSubscription' takes 0 arguments
Replace the line with this:
Code:
Client.GetHabbo().GetSubscriptionManager().ReloadSubscription(1, DurationSeconds, Client);