You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-19 15:06:19 +00:00
6126c35779
* Incoming 9117 HousekeepingGiveCreditsEvent — Habbo.giveCredits for online (ships UserCreditsComposer) or UPDATE users.credits for offline. * Incoming 9118 HousekeepingGiveCurrencyEvent — generic across the non-credits currencies. currencyType 0 => duckets/pixels (givePixels), 5 => diamonds (givePoints(5,n)), anything else routes through givePoints(type,n). Offline path INSERT ... ON DUPLICATE KEY UPDATE users_currency. * Incoming 9119 HousekeepingGrantItemEvent — batch-INSERT N rows into the items table with item_id = base furni id. Capped at 100 per call so a typo can't bury the DB. Online inventory refresh deferred — the user picks the new items up on next hand-inventory open or relog. * Incoming 9120 HousekeepingSetHcSubscriptionEvent — extends users_settings.club_expire_timestamp by `days*86400`. Stacks on top of the existing expiry if it's still in the future, otherwise starts from now. days==0 clamps to now (effective cancel). All four reuse HousekeepingActionResultComposer (no new outgoing composer this slice). `mvn compile` clean.