Jump to content
GIGN Forum

Firefox2007

Mirstīgais
  • Posts

    177
  • Joined

  • Last visited

Posts posted by Firefox2007

  1. Es ar vairs nespeleju cs......

    Tas cs rada atkaribu!!

    Padomajat pashi visu dienu sezat pie kautkadas kastes........un spaidat podzinas..

    stulbums kautkads

    labak iet ara un ietuset ar draugiem....

    IESAKU JUMS AR ATMEST TO STULBO CS!!!

  2. AutoBan 0.8d

    AutoBan is a server-side Anti-Cheat for Counter-Strike: Source with the goal of limiting cheating on public dedicated Counter-Strike: Source servers.

    Features:

    * Server-side only plugin, nothing to run or install on the client

    * Wallhacking prevention

    * No-spread and low-spread disabler

    * No-flash disabler

    * Speedhack detection

    * Aimbot detection

    For support, feedback and further information, please check out the AutoBan forum and the included manual.

    link seit

    autobanplugin_v0_8d.zip

  3. /* AMX Mod script.
    *
    * AMX Public Restart Round Vote v1.0 (public_rr_vote)
    *
    * (c) Copyright 2003 by Marach ([email protected], ICQ: 242122535, AIM: marach24, MSN IM: [email protected])
    *
    * This file is provided as is (no warranties)
    *
    * Usage
    * -----
    * - open file addons\amx\admin.cfg
    * - add these lines to admin.cfg :
    * amx_voterr_delay 60
    * amx_voterr_time 10
    * amx_voterr_ratio 0.60
    * - save the changes to file admin.cfg
    *
    * A voting to restart round will appear when anyone playing on server says 'voterr'. Voting will
    * close after time specified with 'amx_voterr_time' and voting results will be shown. Voting will
    * be successful if vote ratio is equal to or greater than 'amx_voterr_ratio'. If so, round will be
    * restarted 3 times and 'FIGHT' message will be written on screen. Next restart round vote can be
    * started only after time specified with 'amx_voterr_delay'.
    *
    * CVARs
    * -----
    * amx_voterr_delay -> minimum delay in seconds between two voting sessions (default 60 sec)
    * amx_voterr_time -> how long voting session goes on (default 10 sec)
    * amx_voterr_ratio -> ratio for voting success (default 0.60)
    *
    * You can customize the CVARs for your need of course.
    *
    * To do:
    * - command 'amx_voterr_enable' which admins can use to enable or disable public voting
    * - maybe more public say commands
    *
    */
    
    #include <amxmod>
    #include <amxmisc>
    
    new bool:cstrike_running
    new votefor = 0
    new Float:vote_ratio
    
    public restart_round(time[])
    {
    server_cmd("sv_restartround %s",time)
    return PLUGIN_CONTINUE
    }
    
    public delay_msg() {
    set_hudmessage(0, 255, 255, -1.0, 0.35, 1, 2.0, 6.0, 0.8, 0.8, 1)
    show_hudmessage(0,"- FIGHT -")
    return PLUGIN_CONTINUE
    }
    
    public check_votes() {
    new players[32],inum
    get_players(players,inum,"c")
    new Float:voteresult = inum ? (float(votefor) / float(inum)) : 0.0
    if (voteresult<vote_ratio){
    client_print(0,print_chat,"* Restart round vote failed (yes ^"%d^") (no ^"%d^") (needed ^"%.2f^").",votefor,inum-votefor,vote_ratio)
    return PLUGIN_HANDLED
    }
    set_task(2.0,"restart_round",0,"1",1)
    set_task(4.0,"restart_round",0,"1",1)
    set_task(6.0,"restart_round",0,"3",1)
    set_task(12.0,"delay_msg")
    client_print(0,print_chat,"* Restart round vote successful (ratio ^"%.2f^") (needed ^"%.2f^").",voteresult,vote_ratio)
    client_print(0,print_chat,"* Restarting round 3 times...")
    return PLUGIN_HANDLED
    }
    
    public count_votes(id,key){
    new name[32]
    get_user_name(id,name,31)
    client_print(0,print_chat,"* %s voted %s restarting round.",name,key ? "against" : "for")
    if (!key) ++votefor
    return PLUGIN_HANDLED
    }
    
    public voterr(id,level,cid) {
    new Float:voting = get_cvar_float("amx_last_voting")
    if (voting > get_gametime()){
    client_print(id,print_chat,"* There is already a voting on...")
    return PLUGIN_HANDLED
    }
    if (voting && voting + get_cvar_float("amx_voterr_delay") > get_gametime()) {
    client_print(id,print_chat,"* Restart round vote not allowed at this time.")
    return PLUGIN_HANDLED
    }
    new msg[256]
    new keys = (1<<0)|(1<<1)
    if(cstrike_running)
    format(msg,255,"\yRestart round?\w^n^n1. Yes^n2. No")
    else
    format(msg,255,"Restart round?^n^n1. Yes^n2. No")
    new Float:vote_time = get_cvar_float("amx_voterr_time") + 2.0
    set_cvar_float("amx_last_voting", get_gametime() + vote_time)
    vote_ratio = get_cvar_float("amx_voterr_ratio")
    show_menu(0,keys,msg,floatround(vote_time))
    set_task(vote_time,"check_votes")
    client_print(id,print_chat,"* Restart round vote has started...")
    votefor = 0
    return PLUGIN_HANDLED
    }
    
    public client_connect(id) {
    client_cmd(id, "echo")
    client_cmd(id, "echo ============================================= =========================")
    client_cmd(id, "echo ^"AMX Public Restart Round Vote v1.0 by Marach <[email protected]>^"")
    client_cmd(id, "echo")
    client_cmd(id, "echo ^" say voterr -> starts a vote to restart round^"")
    client_cmd(id, "echo ============================================= =========================")
    client_cmd(id, "echo")
    return PLUGIN_CONTINUE
    }
    
    public plugin_init() {
    register_plugin("AMX Public Restart Round Vote","1.0","Marach")
    register_menucmd(register_menuid("Restart round?") ,(1<<0)|(1<<1),"count_votes")
    register_clcmd("say voterr","voterr",0,"- starts a vote to restart round")
    register_cvar("amx_voterr_delay","60")
    register_cvar("amx_voterr_time","10")
    register_cvar("amx_voterr_ratio","0.60")
    register_cvar("amx_last_voting","0")
    set_cvar_float("amx_last_voting",0.0)
    new mod_name[32]
    get_modname(mod_name,31)
    cstrike_running = equal(mod_name,"cstrike") ? true : false
    return PLUGIN_CONTINUE
    }

  4. sitais ir labs ;)

    r280s-5.jpg

    HACHA R280s 2.83"

    Failu formati: MP3,WMA,WAV,AVI(video)

    Foto: JPEG

    Iebuvets FM radio (lidz 20 stacijam)

    Id3 atbalsts (dziesmu vardi)

    Diktofons, E-book, Ekvalaizers

    Spele (Russia bricks)

    Anglu, krievu val.

    Baterijas tips Li-polymer lidz 30 st.

    Izmers 85 x 55 x 9 mm

    2.83-inch screen, 16 mill. colors QVGA 320 x 240 pix

    Iebuvets skalrunis

    USB 2.0 highspeed

    mini SD card slot

    18 bit 90db

    ARM processor 240 Mhz

    16 Mb RAM

    Svars: 57,1 gr.

    Bez draiveriem strada ar: Win2000/XP/ME

    Windows 98 jaielade draiveri no diska (komplekta).

    Komplektacija: Austinas ar pultu, USB vads x 2, Instrukcija (eng), CD, Line out vads, Macins.

    Garantijas laiks: 1 gads

  5. aha :D:superlol: :superlol: :superlol:

    PaR GiGn...!

    GigN Ir Saits KuR Tu Ka4aa Viskautko... GIGN SaiStiiTs ar Cs!!! Wink

    Kas Ir Cs>? Counter-Strike.... Parasti Visi Spelee Counter-Strike 1.6!!!

    Ja Tu Jau EsI kaDreIz SPeLEjIs Cs Vai ARii Tew iR TalaNtS uN aR BotEm PaRaaK VieGLi Laughing TaD Gan JAu Tu VeLIeS SPeLeT ArR IsTiem CilVekIem IsTOs SerVeRos..... TaD Ir JaIeIEt Cs...AaAaA uN JaSpIeZ > FIND SERVERS... uN jAraXtA SeRVeRis... > CONSOLEE! ....

    KaS Ir BOTI? BoTi Ir KoMpJuTeRs... TuR Var LikT CiLveKus Cik VieN Gribi! Wink Un VaR LikT uZ > EASY, NORMAL,HARD,EXPERT! Tongue out KaD NokA4aAa BOtUs Tad tEw VajG dArIIT EXTRAXT!!!!! ExtraXt JadaRA TUr Kur Visi Cs FaiLi IR SaGlaBaTI ! >>> Ta Ir VALVE MapiiTe! Lai SpeLeTu aR VinIem iR JaiET uZ >> NEW GAME... IzVeLIes Mapi uN SpIed START! LaI iEvieTotu S[peleEe BOTUS iR JauZpieZ BUrts >> H! Un >> ADD BOT!

    :superlol: :superlol: :superlol:

×
×
  • Create New...