Advertisement
emsixteen

mapvote script

Dec 16th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. // Mapvote Script - Quickly callvote the map you want
  2. // Author: EmSixTeen
  3. // Date: 11.06.2011 / 16.12.13
  4. // Contact: #quakelive @ Quakenet
  5.  
  6. // To use, you need 3 binds - One to cycle upwards through the list, one to go downwards, and one to confirm your choice and do the callvote.
  7. // For example:
  8.  
  9. //bind F5 "vstr v_mapp" // Previous map selection for callvote script
  10. //bind F6 "vstr v_mapn" // Next map selection for callvote script
  11. //bind F7 "vstr v_mapconfirm" // Confirm & callvote button for callvote script
  12.  
  13. // By the way, the reason every vstr has v_ in front of it is so that they don't clutter the config or autocomplete in the console instead of real cvars.
  14. // I can make a more comprehensive version if people actually request it.
  15.  
  16. set "v_mapconfirm" "vstr v_mapcampgrounds"
  17. set "v_mapn" "vstr v_map3"
  18. set "v_mapp" "vstr v_map1"
  19.  
  20. set "v_map0" "set v_mapn vstr v_map1 ; set v_mapp vstr v_map9 ; set v_mapconfirm vstr v_mapaerowalk ; print ^2Map^3:^7 Aerowalk (hub3aeroq3/cpm22)"
  21. set "v_map1" "set v_mapn vstr v_map2 ; set v_mapp vstr v_map0 ; set v_mapconfirm vstr v_mapbloodrun ; print ^2Map^3:^7 Blood Run (ztn)"
  22. set "v_map2" "set v_mapn vstr v_map3 ; set v_mapp vstr v_map1 ; set v_mapconfirm vstr v_mapcampgrounds ; print ^2Map^3:^7 Campgrounds (dm6)"
  23. set "v_map3" "set v_mapn vstr v_map4 ; set v_mapp vstr v_map2 ; set v_mapconfirm vstr v_mapcure ; print ^2Map^3:^7 Cure"
  24. set "v_map4" "set v_mapn vstr v_map5 ; set v_mapp vstr v_map3 ; set v_mapconfirm vstr v_mapfuriousheights ; print ^2Map^3:^7 Furious Heights (t7)"
  25. set "v_map5" "set v_mapn vstr v_map6 ; set v_mapp vstr v_map4 ; set v_mapconfirm vstr v_maphektik ; print ^2Map^3:^7 Hektik"
  26. set "v_map6" "set v_mapn vstr v_map7 ; set v_mapp vstr v_map5 ; set v_mapconfirm vstr v_maplostworld ; print ^2Map^3:^7 Lost World (dm13/nodm9)"
  27. set "v_map7" "set v_mapn vstr v_map8 ; set v_mapp vstr v_map6 ; set v_mapconfirm vstr v_mapsinister ; print ^2Map^3:^7 Sinister"
  28. set "v_map8" "set v_mapn vstr v_map9 ; set v_mapp vstr v_map7 ; set v_mapconfirm vstr v_maptoxicity ; print ^2Map^3:^7 Toxicity (pukka3tourney2)"
  29. set "v_map9" "set v_mapn vstr v_map0 ; set v_mapp vstr v_map8 ; set v_mapconfirm vstr v_mapverticalvengeance ; print ^2Map^3:^7 Vertical Vengeance (t4)"
  30.  
  31. set "v_mapaerowalk" "cv map aerowalk"
  32. set "v_mapalmostlost" "cv map almostlost"
  33. set "v_mapasylum" "cv map asylum"
  34. set "v_mapbattleforged" "cv map battleforged"
  35. set "v_mapbloodrun" "cv map bloodrun"
  36. set "v_mapcampgrounds" "cv map campgrounds"
  37. set "v_mapdismemberment" "cv map dismemberment"
  38. set "v_mapfocalpoint" "cv map focalpoint"
  39. set "v_mapfuriousheights" "cv map furiousheights"
  40. set "v_maphektik" "cv map hektik"
  41. set "v_maphouseofdecay" "cv map houseofdecay"
  42. set "v_maplongestyard" "cv map longestyard"
  43. set "v_maplostworld" "cv map lostworld"
  44. set "v_mapphrantic" "cv map phrantic"
  45. set "v_mapquarantine" "cv map quarantine"
  46. set "v_maptoxicity" "cv map toxicity"
  47. set "v_maptrinity" "cv map trinity"
  48. set "v_mapverticalvengeance" "cv map verticalvengeance"
  49. set "v_mapcure" "cv map cure"
  50. set "v_mapsinister" "cv map sinister"
  51. set "v_mapdelirium" "cv map delirium"
  52.  
  53. print "^5Mapcycle callvote script loaded"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement