Advertisement
ijontichy

dicks

Feb 3rd, 2014
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. echo "\n -- Hadoken aliases -- "
  2.  
  3. set hadoken "baronball"
  4.  
  5. alias h "summon $hadoken"
  6. alias h1 "h;h;h;h;h"
  7. alias h2 "h1;h1;h1;h1;h1"
  8. alias h3 "h2;h2;h2;h2;h2"
  9. alias h4 "h3;h3;h3;h3;h3"
  10. alias h5 "h4;h4;h4;h4;h4"
  11.  
  12.  
  13. set loophadoken 0
  14.  
  15. alias hl "h2"
  16.  
  17. alias hloop "hl;wait 1; test $loophadoken \"hloop\""
  18.  
  19. alias +h "set loophadoken 1; hloop"
  20. alias -h "set loophadoken 0"
  21.  
  22. echo " -- End Hadoken aliases -- "
  23. echo " -- Light setting aliases -- "
  24.  
  25. alias lightmode_id "set lightmode $lightmode; archivecvar lightmode"
  26. alias lightswitch "lightmode_id; eval == $lightmode 0 lightmode; test $lightmode \"dmlight\" \"cooplight\""
  27.  
  28. alias cooplight "gl_light_ambient 0; echo \"\cfCoop Light\""
  29. alias dmlight "gl_light_ambient 1000000; echo \"\\ck DM Light \""
  30.  
  31. echo "\n -- End Light setting aliases -- "
  32. echo "\n -- Healing aliases -- "
  33.  
  34. alias muchhealth "give health 250"
  35.  
  36. alias m1 "muchhealth;muchhealth;muchhealth;muchhealth;muchhealth"
  37. alias m2 "m1;m1;m1;m1;m1"
  38. alias m3 "m2;m2;m2;m2;m2"
  39. alias m4 "m3;m3;m3;m3;m3"
  40. alias m5 "m4;m4;m4;m4;m4"
  41.  
  42. echo " -- End Healing aliases -- "
  43. echo "\n -- Report alias -- "
  44.  
  45. set report0 "["
  46. set report2 "]"
  47. set reportMain "\cg$health\cr health \cuI\cd $armor\cq armor \cuI\cc $weapon \cuI\cb $ammocount \cp$ammos"
  48.  
  49. set subOn 0
  50. set repTmp ""
  51.  
  52. // eval + + + + $report0 $name \"\c-\" $report2 $reportMain repTmp
  53.  
  54. alias autoSayTeam "test $teamplay \"say_team $reportMain\" \"say $reportMain\""
  55.  
  56. alias report "set subOn $chat_substitution; chat_substitution 1; autoSayTeam; chat_substitution $subOn"
  57.  
  58. echo " -- End Report alias -- "
  59. echo "\n -- Tech loop aliases -- "
  60.  
  61. set looptech 0
  62.  
  63. set tech1 "spectrallightningbigv1"
  64. set tech2 "spectrallightningbigv1"
  65. set tech3 "spectrallightningbigv1"
  66.  
  67. alias tech "summon $tech1; summon $tech2; summon $tech3"
  68.  
  69. alias techloop "tech;wait 1; test $looptech \"techloop\""
  70.  
  71. alias +tech "set looptech 1; techloop"
  72. alias -tech "set looptech 0"
  73.  
  74. echo " -- End Tech loop aliases -- "
  75. echo "\n -- Zoom Aliases -- "
  76.  
  77. set zoomKey mouse3
  78. set zoomFactor 0
  79. set mouseTmp 0
  80.  
  81. alias zoomto "set mouseTmp $mouse_sensitivity; eval / %2 %1 zoomFactor; eval * $mouseTmp $zoomFactor mouse_sensitivity; fov %2"
  82.  
  83. alias zoomin "zoomto 90 10; rebind zoomout"
  84. alias zoomout "zoomto 10 90; rebind zoomin"
  85.  
  86. //bind $zoomKey zoomin
  87.  
  88. echo "zoomin bound to" $zoomKey
  89.  
  90. echo " -- End Zoom Aliases -- "
  91. echo "\n -- SR50 -- "
  92.  
  93. alias +sr50 "+strafe; turnspeeds 32768 32768 32768 32768"
  94. alias -sr50 "-strafe; turnspeeds 0 0 0 0"
  95.  
  96. alias +srleft "+moveleft; +left"
  97. alias -srleft "-moveleft; -left"
  98.  
  99. alias +srright "+moveright; +right"
  100. alias -srright "-moveright; -right"
  101.  
  102. //turnspeeds 0 0 0 0
  103.  
  104. echo " -- End SR50 -- "
  105. echo "\n -- Clean screenshots -- "
  106.  
  107. set hudon 0
  108. set scrbl 0
  109. set cross 0
  110. set mesgs 0
  111.  
  112. alias hidehud "set hudon $r_drawplayersprites; set scrbl $screenblocks; set cross $crosshair; set mesgs $show_messages; r_drawplayersprites 0; screenblocks 12; crosshair 0; show_messages 0"
  113. alias showhud "r_drawplayersprites $hudon; screenblocks $scrbl; crosshair $cross; show_messages $mesgs; set hudon 0; set scrbl 0; set cross 0; set mesgs 0"
  114.  
  115. alias cleanscreenshot "hidehud;wait;screenshot; wait 1; showhud"
  116.  
  117. echo " -- End Clean screenshots -- "
  118. echo "\n -- Clear decals -- "
  119.  
  120. alias cleardecals "set decTmp $cl_maxdecals; cl_maxdecals 0; cl_maxdecals $decTmp; set decTmp 0; echo \"\cfDecals cleared\" "
  121.  
  122. echo " -- End Clear decals -- "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement