Don't go for these Habbo hosts, they end up closing in a month when they realise they aren't making enough profit. I'd recommend HostSavor, been around for a long time and I have had no issues with them.
Found this on the rival forum and I see a lot of people requesting it.
1. Go to UserDataFactory.cs
Change
return new UserData(UserId, Achievements, favouritedRooms, ignores, badges, friends, requests, rooms, quests, user, Relationships);
to
if (user.Rank >= 6) //Change it to the minimum...
Making a game in plus emulator and it requires three tables :
- Users
- hoteljobs
- hoteljobs_ranks
I created my two variables:
int JobId;
int JobRank;
The users table has JobId and JobRank in and working correctly.
In my hoteljobs table:
In my hoteljobs_ranks table :
What I am trying to...