Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
PlusEMU Diamond Timer
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="BIOS" data-source="post: 376355" data-attributes="member: 15674"><p>Well the reason you have to logout is most likely because the diamonds are being cached, you'd probably have to create an emulator function for that.</p><p></p><p>Run this query, it will give all online users a diamond every 15 minutes:</p><p>[CODE]</p><p>CREATE EVENT</p><p> diamonds_timer</p><p>ON</p><p> SCHEDULE EVERY 15 MINUTE</p><p>DO</p><p> UPDATE yourDatabaseName.users</p><p>SET</p><p> vip_points = vip_points + 1 WHERE online = '1';</p><p>[/CODE]</p><p></p><p>If you haven't already enabled the scheduler run this query too:</p><p>[CODE]SET GLOBAL event_scheduler = ON;[/CODE]</p></blockquote><p></p>
[QUOTE="BIOS, post: 376355, member: 15674"] Well the reason you have to logout is most likely because the diamonds are being cached, you'd probably have to create an emulator function for that. Run this query, it will give all online users a diamond every 15 minutes: [CODE] CREATE EVENT diamonds_timer ON SCHEDULE EVERY 15 MINUTE DO UPDATE yourDatabaseName.users SET vip_points = vip_points + 1 WHERE online = '1'; [/CODE] If you haven't already enabled the scheduler run this query too: [CODE]SET GLOBAL event_scheduler = ON;[/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
PlusEMU Diamond Timer
Top