Skocz do zawartości

Nowy szablon forum

mygo.pl

Stworzyliśmy dla Was nowy wygląd forum. Z pewnością znajdziesz rzeczy, które wg Ciebie mogą zostać zmienione - wspomnij o tym w specjalnym wątku.

Czytaj więcej

Jak założyć własną sieć

serwerów CS

Zastanawiasz się nad prowadzeniem własnej sieci serwerów? Przeczytaj podstawowe informacje, na które należy zwrócić uwagę, przy takim projekcie.

Czytaj więcej

Tworzymy spis sieci

dodaj swoją

Dodaj sieć do której należysz, pozwoli to na promocję i budowę ogólnopolskiej bazy sieci CS.

Czytaj więcej

Kamil Olejniczak

Użytkownik
  • Postów

    29
  • Dołączył

  • Ostatnia wizyta

Odpowiedzi opublikowane przez Kamil Olejniczak

  1. Witam mam problem z serwerem ponieważ wywala mi tokeny Poniedzialek Sroda Piatek.

     Ale nie powino ponieważ nie posiadam na serwerze skinow ani kos od valve.Mam skiny z cs 1.6 i inne np:banan.

    Moze ktoś mu pomóc.

    A i jesli znacie jakąś stronke gdzie mozna kupic tokeny w miare tanie to pisac.

    Z góry dzieki

  2. Witam mam do sprzedania serwer DR.Serwer posiada miedzy innymi.

    • VIP
    • PREMIUM
    • MENUVIP
    • SHOP
    • SKLEP
    • KOSY
    • MENUFREE/NORMAL
    • TIMER
    • TOPKE
    • AUTORSKI PLUGIN NA AUTOBH
    • TAGI (VIP,PREMIUM,ZARZADCA,OPIEKUN,ADMIN,GRACZ)
    • WALUTA SERWERA TO CREDITSY ZA KTORE MOZNA KUPIC MIEDZY INNYMI (TRAILE , SKINY DO POSTACI , GRAVITKE , SPEED ITP...)

     

    Wiecej info na pw. Na serwerze gra od 10 do 20 osob.Maszyna jest jeszcze oplacona na 22dni.

    Serwer sprzedaje z powodu braku czasu.

     

  3. //////////////////////////////////////////////////////////////////
    //
    // SAMPLE SETUP:
    //
    //        "Title"                                        <- This can be anything. I suggest making it something indicating what the setup is for.
    //        {
    //            "flag"    "INPUT"                            <- There are 3 kinds of inputs. See below.
    //            "tag"    "[SOME TAG]"                    <- Tag.
    //        }
    //
    //////////////////////////////////////////////////////////////////
    //
    // INPUTS AND ORDER OF OPERATION:
    //
    // The player will get the first tag that matches them. So, a general order of setups is: Bot setup -> Steam ID setups -> group setups.
    //
    // BOT: This setup will apply to all bots, and only to bots.
    //
    // Steam ID (STEAM_X:X:XXXXXXX format): This will apply only to the player whose steam ID it is. 
    //         Note: The plugin checks both "STEAM_0" and "STEAM_1" (steam universe 0 and 1), so if you put the wrong one in, it still works.
    //
    // Groups: This is a single, multiple, or multiple sets of admin flags.
    //         e.g. "a" requires players to have the "a" flag to be considered a match
    //         e.g. "at" requires players to have BOTH the "a" and "t" flags to be considered a match
    //         e.g. "a;t" requires players to have EITHER the "a" OR "t" flags to be considered a match
    //         e.g. "at;b" requires players to have EITHER: BOTH the "a" and "t" flags, OR the "b" flag to be considered a match
    //
    //////////////////////////////////////////////////////////////////
    // Note: Do not change the word "Setups" in the line below, else the plugin will not read this file.
    "Setups"
    {
        "HeadAdmin Group"
        {
            "flag"    "z"
            "tag"    "♚ Zarząd ♚"
        }
        "Admin Group"
        {
            "flag"    "b"
            "tag"    "◎ Admin ◎"
        }
        "Premium Group"
        {
            "flag"    "o"
            "tag"    "✦ Premium ✦"
        }    
        "VIP Group"
        {
            "flag"    "t"
            "tag"    "★ VIP ★"
        }
        "Gracz"
        {
            "flag"    ""
            "tag"    "-Gracz-"
        }
    }

  4. }

    public GiveInvisibility( id )
    {
        if( get_user_team( id ) != 2 )
        {
            client_printc( id, "!tSorry Invisibility is only for CT's :P" );
        }
        else
        {
            new szName[32];
            get_user_name( id, szName, 32 ); 
            set_user_rendering( id, kRenderFxNone, 0,0,0, kRenderTransAdd, 5);
            client_printc( 0, "!g%s !tis invisible now.", szName );
        }
    }

    public RemoveInvisibility( id )
    {
        new szName[32];
        get_user_name( id, szName, 32 ); 
        set_user_rendering( id, kRenderFxNone, 0,0,0, kRenderNormal, 0);
        client_printc( id, "!g%s, !tyou are visible now.", szName );
    }

    stock client_printc(const id, const input[], any:...)
    {
        new count = 1, players[32]
        static msg[191]
        vformat(msg, 190, input, 3)
        
        replace_all(msg, 190, "!g", "^x04") // Green Color
        replace_all(msg, 190, "!n", "^x01") // Default Color
        replace_all(msg, 190, "!t", "^x03") // Team Color
        
        if (id) players[0] = id; else get_players(players, count, "ch")
        {
            for (new i = 0; i < count; i++)
            {
                if (is_user_connected(players))
                {
                    message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players)
                    write_byte(players)
                    write_string(msg)
                    message_end()
                }
            }
        }
    }  

×
×
  • Dodaj nową pozycję...