There’s a tool to compare your figuredata to habbos. As for catalogue items just use a habbo downloader (duckies) and then all the swfs downloaded, copy them to your swf directory but don’t replace ones that are already there, then once they’re pasted simply copy them and put them in a sql...
Opening up console is the easiest way to figure out what’s wrong. Are you saying it’s loading into the hotel and then disconnecting or just loading to 100%and disconnecting before hotelview?
Users_currency doesn’t have a rank column so what’s what that errors for, you need to use this SELECT * FROM users INNER JOIN users_currency ON users.id=users_currency.user_id AND users_currency.type = '5' WHERE rank <= '5' ORDER BY users_currency.amount DESC LIMIT
You probably have infinite currency set as your rank so it won’t subtract for you.... the clients purse is correct it’s your cms that’s pulling the data from the wrong places, if you look on the Q&A sub I’ve posted a MySQL code in nateforever’s post that pulls the correct duckets just use that...
Credits isn’t in the user settings table it’s stored in users table under ‘credits’. Points is not diamonds on the emulator, points are under user_currency with type 5 being diamonds type 0 being duckets and any custom currency on top of that. So your page isn’t collecting the right data, as...