Tivet - Teamspeak 3 Dynamic Banner

Tivet - Teamspeak 3 Dynamic Banner 1.0.3

No permission to download

djalmasi

Well-Known Member
Sep 10, 2015
135
40
118
How customizable?
More background?
Costum font?
Positioning text?
Add/Remove custom text?
Resize background workable?
 

djalmasi

Well-Known Member
Sep 10, 2015
135
40
118
Nice Script ! Can u add TIme and Date? :D

Add to -> banner.php +1 line - 'date("Y/m/d"), - ( Eg: 'date' => date("Y/m/d"), )
And next add to config.php

[
'value' => lang('banner.date'),
'size' => 19,
'font' => BASE_DIR . '/resources/font/CaviarDreams.ttf',
'color' => '#ffffff',
'opacity' => 1,
'align' => 'left',
'valign' => 'top',
'x' => 512,
'y' => 50,
],
 

Ondra3211

Contributor
May 5, 2018
65
37
71
php 7.3
Code:
[TEAMSPEAK] invalid URI supplied
EDIT: I have in password @. Can this reproduce the error?
 
Last edited:

Chimukrate

New Member
Mar 23, 2019
1
0
6
Really nice Banner, but we are currently running into a problem where only a single person can see the banner. If something is changed in the config (forinstance dark to light theme), the changes will be visible for the person when the bot connects again.

php 7.2.16

EDIT: After a few more "new" users joining, only a couple of them can see the banner, but not everyone.
 
Last edited:

comdn

Member
Jan 2, 2016
1
0
33
Code:
Warning: require_once(C:\Users\ciaosamuelriod\Desktop\banner\htdocs\dynamic-banner-1.0.3\vendor\autoload.php): failed to open stream: No such file or directory in C:\Users\ciaosamuelriod\Desktop\banner\htdocs\dynamic-banner-1.0.3\bootstrap.php on line 2

Fatal error: require_once(): Failed opening required 'C:\Users\ciaosamuelriod\Desktop\banner\htdocs\dynamic-banner-1.0.3\vendor\autoload.php' (include_path='C:\Users\ciaosamuelriod\Desktop\banner\php\PEAR') in C:\Users\ciaosamuelriod\Desktop\banner\htdocs\dynamic-banner-1.0.3\bootstrap.php on line 2
 

toby345

New Member
Oct 12, 2018
2
0
13
I have the following and can't explain why ? the php modules are installed

[TEAMSPEAK] Join the server.


best regards
 

PaXe

Member
May 17, 2017
9
3
38
I have a little trouble with this, probably my fault ^^

I have it installed on an apache2 server in a virtualhost, however it just keeps spamjoining the server and i don't think that is intended ^^
I have everything on the newest version.

ENDxfzt.png

This seems like a nice Bot, but I can't use it like this ^^

Any solutions?

Regards
 
Last edited:

fyfywka

TeamSpeak Developer
Contributor
Sep 10, 2015
147
140
158
I have a little trouble with this, probably my fault ^^

I have it installed on an apache2 server in a virtualhost, however it just keeps spamjoining the server and i don't think that is intended ^^
I have everything on the newest version.

View attachment 2735

This seems like a nice Bot, but I can't use it like this ^^

Any solutions?

Regards
this is how all bots work to generate banners, you can try to use my old banner (https://ciphers.pw/threads/fyfywkabanner.4162/#post-39922) that uses cache and does not spam in the logs
 

krygnc

Member
Jun 13, 2019
3
1
38
Hi
How can I make the banner change in 60 seconds?

Code:
<?php

    namespace Tivet\Banner;

    use Dflydev\DotAccessData\Data;

    class Template
    {
        private static $templateName;

        /**
         * @var Data
         */
        private static $templateConfig;

        const BACKGROUND = 'background.png' ;

        const CONFIG     = 'config.php';


        public function __construct(string $templateName)
        {
            if (!static::$templateName) {
                static::$templateName = $templateName;
            }

            if (!static::$templateConfig) {
                static::$templateConfig = new Data((include BASE_DIR . "/resources/template/{$templateName}/" . self::CONFIG));
            }
        }


        /**
         * @return string
         */
        public function getBackgroundLocation()
        {
            return BASE_DIR . "/resources/template/" . static::$templateName . "/" . self::BACKGROUND;
        }
        
        /**
         * @param string $notation
         * @return array|mixed|null
         */
        public function getConfig(string $notation = null)
        {
            if ($notation === null) {
                return static::$templateConfig->export();
            }

            return static::$templateConfig->get($notation);
        }
    }

Is it possible to do it here
 

krygnc

Member
Jun 13, 2019
3
1
38
In ts3 server change the hostbanner GXF interval to 60.
I'm sorry I couldn't explain
Already set that way

I want to have more than one image, there is only one image here I want to reproduce it example: banner.png, banner2.png, banner3.png
 

Amin3Nator

Active Member
Sep 24, 2015
68
29
93
[TEAMSPEAK] php_network_getaddresses: getaddrinfo failed: No such host is known.

i tried other server its worked but for my server no im use xampp server! on my dedicated machine!
 
Top