• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OpenTibia Discord bot

Raggaer

Godly Member
Joined
Jul 25, 2012
Messages
1,557
Solutions
8
Reaction score
957
Location
Spain
Tiger is a selfhosted discord bot mean to provide some utility commands for your server players
  • Server status
  • View monster victims, loot, information
  • View player deaths, information
  • Skill highscores
  • View spells
  • Death broadcasts
The bot comes with a config file you need to edit before starting it, the bot connects to your database and loads your server .xml files (monster, spells, vocations)

After editing the onfiguration file (and renaming it) you can start the bot application, invite the bot to your server, you can read more about how to start the bot

You can download the bot from the GitHub releases page or from the AppVeyor page, you can also compile the bot yourself since the source is public

There are more features planned that will come soon when I have some free time
 
No need for bots, all you need to do its to set a php script like this:

PHP:
function discord ($modo0,$mensagem) { //modo,mensagem
    if ('ENV' == "testserver") {
        $modo0 == "publicserver";
    }
$modo = "https://discordapp.com/api/webhooks/YOURWEBHOOK";
if ($modo0 == "publicserver") {
    $modo = "https://discordapp.com/api/webhooks/YOURWEBHOOK";
}

$data_array = array(
    'content' => '',
    'username' => 'YOUR BOT NAME',
    'avatar_url' => '',
    'embeds' => array(array(
        'author' => array(
        'name' => '',
        'url' => '',
        'icon_url' => ''
        ),
        'color' => 3447003,
        'description' => $mensagem,
        'title' => '',
        'url' => '',
        'image' => array(
            'url' => ''
        ),
        'thumbnail' => array(           
        ),
        'footer' => array(
            'text' => '',
            'icon_url' => ''
        )       
    ))
);
 
No need for bots, all you need to do its to set a php script like this:

PHP:
function discord ($modo0,$mensagem) { //modo,mensagem
    if ('ENV' == "testserver") {
        $modo0 == "publicserver";
    }
$modo = "https://discordapp.com/api/webhooks/YOURWEBHOOK";
if ($modo0 == "publicserver") {
    $modo = "https://discordapp.com/api/webhooks/YOURWEBHOOK";
}

$data_array = array(
    'content' => '',
    'username' => 'YOUR BOT NAME',
    'avatar_url' => '',
    'embeds' => array(array(
        'author' => array(
        'name' => '',
        'url' => '',
        'icon_url' => ''
        ),
        'color' => 3447003,
        'description' => $mensagem,
        'title' => '',
        'url' => '',
        'image' => array(
            'url' => ''
        ),
        'thumbnail' => array(          
        ),
        'footer' => array(
            'text' => '',
            'icon_url' => ''
        )      
    ))
);
wat?
 
Back
Top