Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Hall of Fame in hotelview (Arcturus)

Newbie Spellweaver
Joined
Mar 8, 2017
Messages
14
Reaction score
1
Hi there!

Does anyone have the hotelview external_variables for the Hall of Fame feature? I can't find it :(
 
Junior Spellweaver
Joined
Feb 22, 2012
Messages
133
Reaction score
23
Hi there!

Does anyone have the hotelview external_variables for the Hall of Fame feature? I can't find it :(

It's not in your variables. Go to your Database and look for "emulator_settings". Then look for
' hotelview.halloffame.query '

The code you want for the value is this
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 :)
 
Upvote 0
Back
Top