1. GSManager
    1. Funktionen
    2. Unterstützte Spiele
    3. Neuigkeiten
    4. Statistiken
    5. Serverliste
  2. Lexikon
  3. Filebase
  4. Entwicklung
  5. Forum
    1. Dashboard
    2. Unerledigte Themen
  6. Web-Interface
  7. Artikel
  8. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  • Anmelden
  • Registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  1. GSManager
  2. Forum
  3. Erweiterungen
  4. Anfragen

hello

  • GumGes1
  • 30. Juni 2014 um 15:09
Das Projekt GSManager (vormals ManuAdminMod) wurde am 01.01.2020 eingestellt - diese Internetpräsenz bleibt verfügbar, die Software wird aber nicht länger gepflegt. Vielen Dank für eure Unterstützung in den mehr als zehn vergangenen Jahren!
  • GumGes1
    Fortgeschrittener
    Reaktionen
    10
    Punkte
    1.460
    Trophäen
    1
    Beiträge
    255
    • 30. Juni 2014 um 15:09
    • #1

    hi guys sorry for little spam i think :P
    but seriously i need help with my plugin its so easy maximum 1kb
    that mean when player join and say hi or hi all or hello.. console will say : hi there <PLAYER_NAME> i finished the plugin no error but when i say hi console not say hi please help :)
    and thanks

  • Master of Little
    Entwickler
    Reaktionen
    76
    Punkte
    6.261
    Trophäen
    5
    Beiträge
    1.196
    Einträge
    6
    • 30. Juni 2014 um 15:19
    • #2

    Hi,
    please post your mod.log and your plugin, we will take a look.
    Please post them in

    Spoiler anzeigen
  • GumGes1
    Fortgeschrittener
    Reaktionen
    10
    Punkte
    1.460
    Trophäen
    1
    Beiträge
    255
    • 30. Juni 2014 um 15:22
    • #3

    that's my plugin

    Spoiler anzeigen
    PHP
    <?php
    
    
    
    
    function hello($guid, $params)
    {
        global $mod;
    
        $msg = implode(" ", $params);
        $mod->findReason($msg);
    
        $msg = (strlen($msg) > 100) ? substr($msg, 0, 100) : $msg;
        $search = 'hi';
        $pos = strpos($msg,$search);
    
        if($pos == true){
    
            $mod->rconSay("hi");
        }
    
    
    }
    
    
    
    
    ?>
    Alles anzeigen
    Spoiler anzeigen

    :00 [01.07.14 13:31:18] Notice: == Loading plugins and commands ==
    0:00 [01.07.14 13:31:18] Notice: - Loading antiteamkiller.php
    0:00 [01.07.14 13:31:18] Notice: - Loading banner.php
    0:00 [01.07.14 13:31:18] Notice: - Loading basiccommands.php
    0:00 [01.07.14 13:31:18] Notice: - Loading customcommands.php
    0:00 [01.07.14 13:31:18] Notice: - Loading deferredJobs.php
    0:00 [01.07.14 13:31:18] Notice: - Loading funmessages.php
    0:00 [01.07.14 13:31:18] Notice: - Loading guidchecks.php
    0:00 [01.07.14 13:31:18] Notice: - Loading mapvote.php
    0:00 [01.07.14 13:31:18] Notice: - Loading modstuff.php
    0:00 [01.07.14 13:31:19] Notice: Heartbeat has been sent to serverlist at manuadminmod.de: ERROR: Gameserver unreadable (Debug: 0at108)
    0:00 [01.07.14 13:31:19] Notice: - Loading nameprotection.php
    0:00 [01.07.14 13:31:19] Notice: - Loading permissionstest.php
    0:00 [01.07.14 13:31:19] Notice: - Loading pingkicker.php
    0:00 [01.07.14 13:31:19] Notice: - Loading punkbuster.php
    0:00 [01.07.14 13:31:20] Warning: Punkbuster: PB is disabled on this server (sv_punkbuster = 0), please enable it before using this plugin
    0:00 [01.07.14 13:31:20] Notice: - Loading randommapcycle.php
    0:00 [01.07.14 13:31:20] Notice: Randommapcycle: Setting nextmap to mp_crash_snow (koth)
    0:00 [01.07.14 13:31:20] Notice: Set Dvar sv_maprotationcurrent to 'gametype koth map mp_crash_snow'
    0:00 [01.07.14 13:31:20] Notice: - Loading scream.php
    0:00 [01.07.14 13:31:20] Notice: - Loading spreemessages.php
    0:00 [01.07.14 13:31:20] Notice: - Loading statistics.php
    0:00 [01.07.14 13:31:20] Notice: - Loading tcp_query.php
    0:00 [01.07.14 13:31:20] Warning: TCP-Query: Error: Syntax error in tcp_user.db on line 1
    0:00 [01.07.14 13:31:20] Warning: TCP-Query: Error: Syntax error in tcp_user.db on line 2
    0:00 [01.07.14 13:31:20] Notice: - Loading test.php
    0:00 [01.07.14 13:31:20] Notice: - Loading voting.php
    0:00 [01.07.14 13:31:20] Notice: - Loading warns.php
    0:00 [01.07.14 13:31:20] Notice: - Loading weaponrestrictions.php
    0:00 [01.07.14 13:31:20] Notice: - Loading welcomemessages.php
    0:00 [01.07.14 13:31:20] Notice: == Finished loading plugins (23 plugins) ==
    0:00 [01.07.14 13:31:21] Notice: !! Finished initialisation
    0:00 [01.07.14 13:31:21] Notice: === Start processing loglines... ===
    0:00 [01.07.14 13:31:22] Notice: Banner message was sent: ^2This Server is running Manu-Admin-Mod ^1v0.12 Beta


    my plugin called test.php
    and i used a plugin from yours

    2 Mal editiert, zuletzt von Mirko911 (30. Juni 2014 um 18:23) aus folgendem Grund: added [code] tag

  • Dieses Thema enthält 12 weitere Beiträge, die nur für registrierte Benutzer sichtbar sind.
  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™