ďťż
 
 
  
 
 

Podobne

"matrix+rewolucje+matrix+the+revolutions+2003.php">Matrix: Rewolucje / Matrix: The Revolutions (2003) 1080p & 720p BluRay.x264 "matrix+reaktywacja+matrix+reloaded+2003+1080p.php">Matrix Reaktywacja / Matrix Reloaded (2003) 1080p & 720p BluRay.x264 "piraci+z+karaibow+pirates+of+the+caribbean.php">Piraci Z Karaibów / Pirates Of The Caribbean - Trylogia (2003-2007) HD-Ready 720p/Lektor PL "droga+bez+powrotu+wrong+turn+2003+hd+ready+720p.php">Droga bez powrotu / Wrong Turn (2003) HD-Ready 720p/Lektor PL "rychu+peja+solufka+styl+zycia+g+noja+2008.php">Rychu Peja SoLUfka - Styl Życia G'Noja (2008) "ostrzezenie+dla+agus+lekcewazacy+styl+pisania.php">Ostrzeżenie dla Agus: Lekceważący styl pisania pokemonowymi kolorami. "rocketdock+ikony+styl+windows+sie+wylacza+etc.php">RocketDock - ikony, styl windows sie wylacza etc "styl+gotycki+i+romanski+zbior+prezentacji.php">Styl gotycki i romański - zbiór prezentacji PowerPoint "sprzedam+styl+do+phpbb+by+przemo+tanio.php">Sprzedam styl do phpbb by przemo! Tanio! Zapraszam! "microsoft+office+2000+2003+2007+2010+i+inne.php">Microsoft Office 2000, 2003,2007,2010 i inne
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • adbuxwork.keep.pl
  •  
        
     

     

     

     

    Przeróbka



    adix play it! - 29.06.2008 20:29
    Przeróbka
      Przerobi mi ktoś plugin o nazwie "lastround" aby podczas ostaniej rundy leciała nutka , nazwa piosenki remix , ścieżka misc/mxt.
    Wyglądać to będzie tak misc/mxt/remix podaję kod .sma :

    Kod: /*

     *

     * bAnTAi - Last Round

     * (c) 2004-2005

     *

     */

             

    #include <amxmodx>

    #pragma semicolon                1      // force ; usage, just 'cause

       

    new g_scTitle[]  = "Last Round";

    new g_scVersion[] = "1.0";

    new g_scAuthor[]  = "bAnTAi";

       

    new bool:g_lastround = false;

    new bool:g_changemap = false;

    new Float:g_timelimit = 0.0;

    new Float:g_maxspeed;

    #define INITIATE_LAST_ROUND_TASK 545454

    #define CHANGE_MAP_TASK 545455

    #define DISABLE_PLAYERS_TASK 545456

    public evRoundStart() {

            if (!get_cvar_num("lastround")) return PLUGIN_CONTINUE;

            // Wanted this in init but never got a value

            if (g_timelimit == 0.0)

                    g_timelimit = get_cvar_float("mp_timelimit");

            if (g_lastround) {

                    new Float:roundtime = get_cvar_float("mp_roundtime");

                    new Float:c4timer = get_cvar_float("mp_c4timer")/60;

                    // Extend the maps time one round + c4timer + some buffer

                    set_cvar_float("mp_timelimit", g_timelimit + roundtime + c4timer + 0.5);

                                           

                    new text[256];

                    format(text, 255, ".Ostatnia runda!");

                    doTypesay(text, 5, 210, 0, 0);

                    g_changemap = true;

                    g_lastround = false;

            } else if (g_changemap) {

                    new nextmap[32];

                    get_cvar_string("amx_nextmap", nextmap, 31);

           

                    new text[256];

                    format(text, 255, "Thank you for playing. Now switching to %s!", nextmap);

                    doTypesay(text, 5, 210, 0, 0);

                    g_maxspeed = get_cvar_float("sv_maxspeed");

                    set_cvar_float("sv_maxspeed", 0.0);

                    set_task(0.1, "disablePlayers", DISABLE_PLAYERS_TASK, "", 0, "a", 3);

                    set_task(6.0, "changeMap", CHANGE_MAP_TASK);

            }

            return PLUGIN_CONTINUE;

    }

    public initiateLastRound() {

            if (!get_cvar_num("lastround")) return PLUGIN_CONTINUE;

            remove_task(INITIATE_LAST_ROUND_TASK);

            new text[256];

            format(text, 255, "Zaraz bedzie ostatnia runda!");

            doTypesay(text, 5, 210, 0, 0);

            new Float:roundtime = get_cvar_float("mp_roundtime");

            new Float:c4timer = get_cvar_float("mp_c4timer")/60;

            // (2* roundtime since it is possible that the even occurs at the beginning of a round)

            set_cvar_float("mp_timelimit", g_timelimit + (2.0*roundtime) + (2.0*c4timer));

            g_lastround = true;

            return PLUGIN_CONTINUE;

    }

    public disablePlayers() {

            new players[32], num;

            get_players(players, num, "c");

            for(new i=0;i<num; i++) {

                    client_cmd(players[i],"drop");

            }

    }

    public changeMap() {

            remove_task(CHANGE_MAP_TASK);

            new nextmap[32];

            get_cvar_string("amx_nextmap", nextmap, 31);

            server_cmd("changelevel %s", nextmap);

    }

    doTypesay(string[], duration, r, g, b) {

            set_hudmessage(r, g, b, 0.05, 0.45, 0, 6.0, float(duration) , 0.5, 0.15, 4);

            show_hudmessage(0, string);

    }

                                           

    public plugin_init() {

            register_plugin(g_scTitle, g_scVersion, g_scAuthor);

            register_cvar("lastround", "1");

            register_logevent("evRoundStart", 2, "0=World triggered", "1=Round_Start");

            // Chose 90 seconds not to clash with other events

            set_task(90.0, "initiateLastRound", INITIATE_LAST_ROUND_TASK, "", 0, "d");

            return PLUGIN_CONTINUE;

    }

    public plugin_end() {

            set_cvar_float("mp_timelimit", g_timelimit);

            set_cvar_float("sv_maxspeed", g_maxspeed);

            remove_task(DISABLE_PLAYERS_TASK);

            return PLUGIN_CONTINUE;

    }




    !~* eMo SeBu$ *~! - 06.07.2008 02:11
    Kod: /*

    *

    * bAnTAi - Last Round

    * (c) 2004-2005

    *

    */

    #include <amxmodx>

    #pragma semicolon                1      // force ; usage, just 'cause

    new g_scTitle[]  = "Last Round";

    new g_scVersion[] = "1.0";

    new g_scAuthor[]  = "bAnTAi";

    new bool:g_lastround = false;

    new bool:g_changemap = false;

    new Float:g_timelimit = 0.0;

    new Float:g_maxspeed;

    #define INITIATE_LAST_ROUND_TASK 545454

    #define CHANGE_MAP_TASK 545455

    #define DISABLE_PLAYERS_TASK 545456

    new muzyka[] = "misc/mxt/remix.wav";

    public plugin_precache()

    {

            precache_sound(muzyka);

    }

    public evRoundStart() {

            if (!get_cvar_num("lastround")) return PLUGIN_CONTINUE;

           

            // Wanted this in init but never got a value

            if (g_timelimit == 0.0)

                    g_timelimit = get_cvar_float("mp_timelimit");

           

            if (g_lastround) {

                    new Float:roundtime = get_cvar_float("mp_roundtime");

                    new Float:c4timer = get_cvar_float("mp_c4timer")/60;

                    // Extend the maps time one round + c4timer + some buffer

                    set_cvar_float("mp_timelimit", g_timelimit + roundtime + c4timer + 0.5);

                   

                    client_cmd(0,"speak %s",muzyka);

                   

                    new text[256];

                    format(text, 255, ".Ostatnia runda!");

                    doTypesay(text, 5, 210, 0, 0);

                   

                    g_changemap = true;

                    g_lastround = false;

                    } else if (g_changemap) {

                    new nextmap[32];

                    get_cvar_string("amx_nextmap", nextmap, 31);

                   

                    new text[256];

                    format(text, 255, "Thank you for playing. Now switching to %s!", nextmap);

                    doTypesay(text, 5, 210, 0, 0);

                   

                    g_maxspeed = get_cvar_float("sv_maxspeed");

                    set_cvar_float("sv_maxspeed", 0.0);

                   

                    set_task(0.1, "disablePlayers", DISABLE_PLAYERS_TASK, "", 0, "a", 3);

                    set_task(6.0, "changeMap", CHANGE_MAP_TASK);

            }

           

            return PLUGIN_CONTINUE;

    }

    public initiateLastRound() {

            if (!get_cvar_num("lastround")) return PLUGIN_CONTINUE;

           

            remove_task(INITIATE_LAST_ROUND_TASK);

           

            new text[256];

            format(text, 255, "Zaraz bedzie ostatnia runda!");

            doTypesay(text, 5, 210, 0, 0);

           

            new Float:roundtime = get_cvar_float("mp_roundtime");

            new Float:c4timer = get_cvar_float("mp_c4timer")/60;

           

            // (2* roundtime since it is possible that the even occurs at the beginning of a round)

            set_cvar_float("mp_timelimit", g_timelimit + (2.0*roundtime) + (2.0*c4timer));

           

            g_lastround = true;

           

            return PLUGIN_CONTINUE;

    }

    public disablePlayers() {

            new players[32], num;

            get_players(players, num, "c");

            for(new i=0;i<num; i++) {

                    client_cmd(players[i],"drop");

            }

    }

    public changeMap() {

            remove_task(CHANGE_MAP_TASK);

           

            new nextmap[32];

            get_cvar_string("amx_nextmap", nextmap, 31);

            server_cmd("changelevel %s", nextmap);

    }

    doTypesay(string[], duration, r, g, b) {

            set_hudmessage(r, g, b, 0.05, 0.45, 0, 6.0, float(duration) , 0.5, 0.15, 4);

            show_hudmessage(0, string);

    }

    public plugin_init() {

            register_plugin(g_scTitle, g_scVersion, g_scAuthor);

           

            register_cvar("lastround", "1");

            register_logevent("evRoundStart", 2, "0=World triggered", "1=Round_Start");

           

            // Chose 90 seconds not to clash with other events

            set_task(90.0, "initiateLastRound", INITIATE_LAST_ROUND_TASK, "", 0, "d");

           

            return PLUGIN_CONTINUE;

    }

    public plugin_end() {

            set_cvar_float("mp_timelimit", g_timelimit);

            set_cvar_float("sv_maxspeed", g_maxspeed);

           

            remove_task(DISABLE_PLAYERS_TASK);

           

            return PLUGIN_CONTINUE;

    }
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • qup.pev.pl

  •  

     


     

     
    Copyright 2003. KARRAMBA