Link Search Menu Expand Document

Method: messages.reorderStickerSets

Back to methods index

Reorder installed stickersets

Parameters:

NameTypeDescriptionRequired
masksBoolReorder mask stickersetsOptional
emojisBoolReorder custom emoji stickersetsOptional
orderArray of longNew stickerset order by stickerset IDsYes

Return type: Bool

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$Bool = $MadelineProto->messages->reorderStickerSets(masks: $Bool, emojis: $Bool, order: [$long, $long], );