Custom Command
Dashboard
Discord
GitHub
$ObjectMerge
Merge the current object with another object, it overwrites the conflicted keys
Usage
$ObjectMerge
[
object
]
Example:
Member
08/02/2026
!!exec $objectSet[name;Mido]
$objectMerge[{"country":"EG"}]
$objectGet
Custom Command
Bot
08/02/2026
{"name":"Mido", "country":"EG"}
Example (Nested Keys):
Member
08/02/2026
!!exec $objectSet[user;name;Mido]
$objectSet[user;country;EG]
Before: $objectGet
$objectMerge[user;{"name":"Rake","country":"DE"}]
After: $objectGet
Custom Command
Bot
08/02/2026
Before: {"user":{"name":"Mido","country":"EG"}}
After: {"user":{"name":"Rake","country":"DE"}}
Prev
$ObjectLoop
Next
$ObjectRemove