how do i get Hotel view hall of fame to work

JayC

Always Learning
Aug 8, 2013
5,493
1,398
Go to your Database and look for "emulator_settings". Then look for
' hotelview.halloffame.query '

The code you want for the value is this

Code:
SELECT users.id,username,look,amount AS hof_points FROM users INNER JOIN users_currency ON users.id=users_currency.user_id WHERE users_currency.type = 5 AND users.rank < 5 ORDER BY users_currency.amount DESC LIMIT 8
You can change the users_currency.type = 5 to another number for whatever currency you want to show and change the LIMIT 8 to show more or less users!

Then Restart Arcturus :)
 

reede22

New Member
Jan 23, 2020
21
2
Go to your Database and look for "emulator_settings". Then look for
' hotelview.halloffame.query '

The code you want for the value is this

Code:
SELECT users.id,username,look,amount AS hof_points FROM users INNER JOIN users_currency ON users.id=users_currency.user_id WHERE users_currency.type = 5 AND users.rank < 5 ORDER BY users_currency.amount DESC LIMIT 8
You can change the users_currency.type = 5 to another number for whatever currency you want to show and change the LIMIT 8 to show more or less users!

Then Restart Arcturus :)
its still not showing
Post automatically merged:

why isnt it showing up
 
Last edited:

Users who are viewing this thread

Top