// 2-step-zoom script by Walker based on xzoom by X35. //Insert your standart values here: normalfov = 95 normalsens = 15.4 normalsensscale = 3 // Insert zoomvalues you want here: step1sens = 8 step2sens = 5 step1fov = 30 step2fov = 15 step1sensscale = 5 step2sensscale = 5 //zoomkeys, you can also just use one key, if you want so, use the alternative part by removing all "//" and remove zoomst1, zoomst2, zoomout //here. alias zoomkey1 R alias zoomkey2 F bind $zoomkey1 zoomst1 bind $zoomkey2 zoomst2 zoomst1 = [ fov $step1fov sensitivity $step1sens sensitivityscale $step1sensscale bind MOUSE1 [attack;hitout1] bind $zoomkey1 [zoomout] hudgun 0 ] zoomst2 = [ fov $step2fov sensitivity $step2sens sensitivityscale $step2sensscale bind MOUSE1 [attack;hitout1] bind $zoomkey2 [zoomout] bind $zoomkey1 [zoomout] hudgun 0 ] zoomout = [ fov $normalfov sensitivity $normalsens sensitivityscale $normalsensscale bind MOUSE1 [attack] bind $zoomkey1 [zoomst1] bind $zoomkey2 [zoomst2] hudgun 1 ] hitout1 = [alias frogs (getfrags); sleep 200 [if (> (getfrags) $frogs) [zoomout] ] ] hitout2 = [alias doths (getdeaths); sleep 200 [if (> (getdeaths) $doths)[zoomout] ] ] loop1 = [sleep 50 [hitout2;sleep 50 [loop2]]] loop2 = [sleep 50 [hitout2;sleep 50 [loop1]]] loop1 //ALTERNATIVE PART FOR JUST 1 KEY, for use remove all "//" below this Line! // alias zoomkey1 R // bind $zoomkey1 zoomst1 //zoomst1 = [ fov $step1fov sensitivity $step1sens sensitivityscale $step1sensscale bind MOUSE1 [attack;hitout1] bind $zoomkey1 [zoomst2] hudgun 0 //] //zoomst2 = [ fov $step2fov sensitivity $step2sens sensitivityscale $step2sensscale bind MOUSE1 [attack;hitout1] bind $zoomkey1 [zoomout] hudgun 0 //] //zoomout = [ fov $normalfov sensitivity $normalsens sensitivityscale $normalsensscale bind MOUSE1 [attack] bind $zoomkey1 [zoomst1] hudgun 1 //] newgui "Zoomt" [ guitext "Walkers zoomscript with GUI." guitext "Insert your values in the following tabs." guitext "Feature for 1/2 keys comming soon!" guitab "Normal" guitext "Normal values" guibar guitext "Normal fov" guifield normalfov 10 guibar guitext "Normal Sensitivity" guifield normalsens 10 guibar guitext "Normal Sensitivityscale" guifield normalsensscale 5 guitab "Step1" guitext "Step 1 values" guibar guitext "Step 1 fov" guifield step1fov 10 guibar guitext "Step 1 Sensitivity" guifield step1sens 10 guibar guitext "Step 1 Sensitivityscale" guifield step1sensscale 5 guitab "Step2" guitext "Step 2 values" guibar guitext "Step 2 fov" guifield step2fov 10 guibar guitext "Step 2 Sensitivity" guifield step2sens 10 guibar guitext "Step 2 Sensitivityscale" guifield step2sensscale 5 ]