• 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!

Ideas for a server discord bot

I want to keep it simple, I already parse monsters, items, spells. I dont plan to add much more features from what its already listed here Tiger - Discord bot for Open Tibia servers

The stuff I want to add is basically:
  1. Broadcast server deaths on certain channel
  2. Broadcast server news
  3. View player items
  4. Track server save
 
How can I compile it? I'm trying, but I never used go before.
imgur .com /a/ mHSRm6T
It looks like a library is missing, but I don't know about that. :(
 
Last edited:
How can I compile it? I'm trying, but I never used go before.
imgur .com /a/ mHSRm6T
It looks like a library is missing, but I don't know about that. :(
You can look how to build it by looking at the appveyor script Raggaer/tiger

Basically:

Code:
go get github.com/golang/dep/cmd/dep
dep ensure
go build

Remember you can also grab an already compiled version from appveyor
 
I officially gave up of trying to compile it. Haha.
Can you do a new test in appveyor? I don't know if that version is the newest.
 
Yeah I haven't the slightest idea how this works. I have never used go, nor can I figure out the
AppVeyor version. Any insight on how to make this work would be great.
Its a bit tricky to setup a working Go environment for the first time, soon this will change ad the language is looking into adding modules to remove some parts of the environment setup...

I however helped @Caduceus and he can now compile changes into the bot. If anyone needs help contact me at discord.

I also updated the bot message format to now use embed messages using a simple XML schema to follow, heres a preview:
Code:
<template>
  <title>Tiger - Open Tibia discord bot</title>
  <description>[https://github.com/Raggaer/tiger](https://github.com/Raggaer/tiger)</description>
  <provider>
    <name>Raggaer</name>
    <url>https://github.com/Raggaer</url>
  </provider>
  <footer>
    <text>Made by Raggaer#0954</text>
  </footer>
</template>
 
Back
Top