Bots Property's ?

How To Remove / Delete Bot Property?

To Remove Bot Property Use This Code ⬇️

<?php
bot_remProperty("x");

Here "x" Is Property Name

How To Set Bot Property ?

To Set Bot Property Use This Code ⬇️

<?php
bot_setProperty("x","hi");

Here "x" Is Property Name And "hi" Is Property Data

How To Get Bot Property Data ?

To Get Bot Property Use This Code ⬇️

<?php
$a = bot_getProperty("x");
bot_sendMessage($chat_id,$message_id, "bot prop data : $a","","Markdown");

Last updated