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
  • Deutsch
  • Anmelden
  • Registrieren
  • Suche
Forum
  1. GSManager
  2. Mitglieder
  3. JeffSkye

Beiträge von JeffSkye

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!
  • finall kill cam download from here

    • JeffSkye
    • 16. Oktober 2014 um 19:35

    you can make the files server sided

  • finall kill cam download from here

    • JeffSkye
    • 16. Oktober 2014 um 16:42

    i didnt ask 1 + 1 i asked the download link

  • finall kill cam download from here

    • JeffSkye
    • 16. Oktober 2014 um 11:46

    What is the download link i will have a look

  • finall kill cam download from here

    • JeffSkye
    • 16. Oktober 2014 um 09:20

    What about making a mod of it? ( mod.ff )

  • GO GO GO MirKo :)

    • JeffSkye
    • 24. September 2014 um 12:43

    all credits go to Mirko

    PHP
    <?php
    /**
     * Register User on Server
     *
     * If you type !register, the server put's you in an other server group
     *
     * @package Plugins
     * @subpackage none
     * @version 1.0
     *
     * @copyright ManuAdminMod (http://www.manuadminmod.de)
     * @license Creative Commons BY-NC-ND 4.0 (http://www.creativecommons.org/licenses/by-nc-nd/4.0/)
     *
     * @author mirko911
     * @since 05.01.11
     */
    $mod->registerCommand("register", false , "register_main" );
    $mod->setDefaultCV("register_main", "registed_group", "user");
    $mod->setDefaultCV("register_main", "registed_message", "You are now registered on this server");
    /**
     * If you type !register, the server put's you in an other server group
     * 
     * @author mirko911
     * @since 05.01.11
     * @global mod $mod 
     * @global player $players
     * @param string $guid 32 char long hex guid
     * @return boolean true if all successful
     */
    function register_main($guid) {
        global $mod, $players;
        if($players[$guid]->getGroup() != "default") return false;
        $players[$guid]->setGroup($mod->getCV("register_main" , "registed_group"));
        $players[$guid]->Say($mod->getCV("register_main" , "registed_message"));
        return true;
    }
    ?>
    Alles anzeigen
  • Join Command plugin

    • JeffSkye
    • 21. September 2014 um 14:12

    no problem ;)
    like i said if you need help just ask :)

  • can anyone help me on this?

    • JeffSkye
    • 21. September 2014 um 09:39
    Zitat von Azad69

    You are the man who I was waiting for xD :biggrin:
    This script was made by a newbie
    You can do better........
    Can you make a script that will show
    K/D Ratio :
    Kills :
    Headshots :
    Deaths :

    Alles anzeigen

    i will give it a try :P
    i searched for it to before i could script.
    the script you posted few posts earlier is bugged like hell :attention:

    but i will see what i can do :)

  • Join Command plugin

    • JeffSkye
    • 21. September 2014 um 09:38
    Zitat von Azad69

    Oky and what cmd should I type in game ?

    for example us

    Code
    !join list


    this will show all the servers

    Code
    !join sd


    this will send you to the search and destroy server

    Code
    !join tdm


    this will send you to the team death match server

    etc..

    if you have more questions or if you need help with adding servers etc just ask ;)
    and if you get errors please post them here with a screenshot

  • Join Command plugin

    • JeffSkye
    • 20. September 2014 um 20:28

    i think

    Code
    join = "set new_cmd join:<ARG>"
  • can anyone help me on this?

    • JeffSkye
    • 20. September 2014 um 17:46
    Zitat von Azad69

    Hey!
    All I've found is this.
    But this one has a bug that was not fixed.
    Can someone see whats the prob? :pinch:

    I will have a look at it soon :P

  • Join Command plugin

    • JeffSkye
    • 16. September 2014 um 19:42

    which script do you use?

  • Join Command plugin

    • JeffSkye
    • 12. September 2014 um 22:21
    Zitat von Azad69

    Do I need to add anything in

    Code
    ( "new_cmd", "" );      >>>       ( "new_cmd", "[color=#FF0000]?????????[/color]" );

    Just to be clear. :smile:

    LOL :tongue:

    all you have to edit are these

    Code
    pl sendThem("id", server port, "servername", "thePassword");
    
    
    
    
    example:
    pl sendThem("tdm", 28961, "Promodlive217 TDM", "topsecretpassword");
  • Join Command plugin

    • JeffSkye
    • 12. September 2014 um 14:01
    Zitat von Azad69

    My cod4 servers have password, players have to type /connect (ip);password (password)
    Can you also add support for password function?
    Like you have added port for each server and can also add password with it?


    I made a small modification to @NiNJA his script :P
    Not sure if it works.
    If you get any errors just post them here and i will try to fix them ;)

  • Join Command plugin

    • JeffSkye
    • 11. September 2014 um 21:32
    Zitat von NiNJA

    well I made one in gsc a while ago, it's not very good (I was noob at the time but I'll post it in a second)

    https://www.dropbox.com/s/jdf3hvns81b0…ervers.gsc?dl=0
    there we go, I made it for UA so you will have to change the cases and the iPrintLn shit from line 52+

    in config.cfg custom commands
    servers = "set ichdasboot <PLAYER:PID>:<ARG:OPT "list">

    you might have to change the clientCmd depending on the mod you are using

    Very Nice :D
    Some functions are really strange lol but looks nice :D
    Think it will work better than the script i made myself yours has more options :P
    Nice Work Thank You :)

  • Join Command plugin

    • JeffSkye
    • 11. September 2014 um 17:33

    I saw a B3 server with the command so i started searching if it was possible for MaM to.
    Few days ago i found a server running MaM with the !join command


    @Belstgut
    I can script .gsc files so that wont be an problem ;)

  • Join Command plugin

    • JeffSkye
    • 11. September 2014 um 17:11

    Hi Everyone!

    Could anyone help me with a plugin?
    For few weeks now i'm trying to find a plugin like it.
    (CoD4)

    When you use the custom command !join <input> it will redirect you to that server
    So for example if you use !join deathrun you will join the deathrun server and if you use the !join war command it will redirect you to the war server.

    If someone could help me with it that would be awesome! :)

  • !report command

    • JeffSkye
    • 12. Juli 2014 um 15:20
    Zitat von Belstgut

    i wrote a sendmail plugin for 0.12 once. but needs mail() compatibility. so for windows you need to edit your php.ini to get mail working

    Zitat von Belstgut

    see attachment.

    new command is !contact

    Thank You For Your Fast Reply! Your awesome !

  • !report command

    • JeffSkye
    • 12. Juli 2014 um 15:02
    Zitat von Belstgut

    i wrote a sendmail plugin for 0.12 once. but needs mail() compatibility. so for windows you need to edit your php.ini to get mail working

    Could you send the code? Our server is linux. We run MaM 0.11.5 Beta
    If its possible it would be really awesome !
    Thank You For Your Time

  • !report command

    • JeffSkye
    • 11. Juli 2014 um 19:51

    Hi everyone,

    I'm looking for a !report <playername> <reason> plugin.
    Does anyone have one or can someone make one?
    And is it possible to send an email to an admin if someons uses the !report command?

    Thank you very much for your time!
    If someone could help that would really awesome!

    Greetings From

    JeffSkye

  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™
  • Alles
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  • Deutsch
  • English