aAa*
Mesaje : 6 ASSOS : 24/04/1992 Data de inscriere : 30/03/2010 Varsta : 32 Cat la % iti place Forumul LeGoEE ? : 100%
| Subiect: Choose Connection Lun Apr 05, 2010 9:56 pm | |
| Descriere: Deoarece am observat multe cereri m-am hotarat sa-l postez. Cu acest plugin pe server-ul dvs,jucatorii isi pot alege conexiunea la internet ! Descarcare: Click!Autor: aAa* Credite: mut2ntVersiune: 2.0 Modificari[2.0] - optimizare cod - adaugare optiune de afisare automat meniul + mesaj [1.0] - prima publicare Instalare: 1. Fisierul choose_connection.sma il puneti in addons/amxmodx/scripting2. Fisierul choose_connection.amxx il puneti in addons/amxmodx/plugins3. Intrati in addons/amxmodx/configs/plugins.ini si adaugati la sfarsit : Code:choose_connection.amxx Comenzi publice: say & say_team /lan - afiseaza meniul cu optiuni. Cvar-uri: connection_autoshow 1/0 - activeaza/dezactiveaza optiunea de a afisa automat meniul cand un jucator intra pe server (default 1) connection_info 1/0 - activeaza/dezactiveaza mesaj informativ cu privire la plugin (default 1) Modificari:
- intervalul in secunde pentru afisare mesaj informativ (zecimala!)
Code: #define INTERVAL 120.0
- setarile pentru fiecare optiune:
Code: new const g_DSlow[][] = { "rate 2500", "cl_updaterate 10", "cl_cmdrate 10", "ex_interp 0.100", "cl_shadows 0", "cl_himodels 0", "cl_dynamiccrosshair 0", "cl_crosshair_translucent 0", "cl_weather 0", "hud_fastswitch 1", "mp_decals 50" };
new const g_VerySlow[][] = { "rate 3500", "cl_updaterate 13", "cl_cmdrate 13", "ex_interp 0.077", "cl_shadows 0", "cl_himodels 0", "cl_dynamiccrosshair 0", "cl_crosshair_translucent 0", "cl_weather 0", "hud_fastswitch 1", "mp_decals 100" };
new const g_Slow[][] = { "rate 5000", "cl_updaterate 15", "ex_interp 0.068", "cl_cmdrate 15", "cl_shadows 0", "cl_himodels 0", "cl_dynamiccrosshair 0", "cl_crosshair_translucent 0", "cl_weather 0", "hud_fastswitch 1", "mp_decals 150" };
new const g_Normal[][] = { "rate 7500", "cl_updaterate 20", "ex_interp 0.050", "cl_cmdrate 30", "cl_shadows 1", "cl_himodels 0", "cl_dynamiccrosshair 1", "cl_crosshair_translucent 0", "cl_weather 0", "hud_fastswitch 0", "mp_decals 200" };
new const g_Fast[][] = { "rate 9999", "cl_updaterate 30", "ex_interp 0.034", "cl_cmdrate 40", "cl_shadows 1", "cl_himodels 1", "cl_dynamiccrosshair 1", "cl_crosshair_translucent 1", "cl_weather 1", "hud_fastswitch 0", "mp_decals 250" };
new const g_VeryFast[][] = { "rate 20000", "cl_updaterate 60", "ex_interp 0.017", "cl_cmdrate 60", "cl_shadows 1", "cl_himodels 1", "cl_dynamiccrosshair 1", "cl_crosshair_translucent 1", "cl_weather 1", "hud_fastswitch 0", "mp_decals 300" };
new const g_Lan[][] = { "rate 20000", "cl_updaterate 100", "ex_interp 0.010", "cl_cmdrate 100", "cl_shadows 1", "cl_himodels 1", "cl_dynamiccrosshair 1", "cl_crosshair_translucent 1", "cl_weather 1", "hud_fastswitch 0", "mp_decals 300" };
| |
|