Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn
.
Author: Kaspars Dambis
kaspars.net / @konstruktors
bind SPACE "+dota_camera_follow; +dota_camera_follow; -dota_camera_follow" | |
Enter that into the console and space will center with a single tap. It doesn't lock the camera though so I will see if there is a better bind. | |
edit: | |
dota_camera_follow_doublepress_time 100 | |
entering this is likely needed to make it work right. Tried some stuff and not sure how to reset it to check if it is strictly necessary. |
/* Based on | |
* - EGM Mathematical Finance class by Enrique Garcia M. <[email protected]> | |
* - A Guide to the PMT, FV, IPMT and PPMT Functions by Kevin (aka MWVisa1) | |
*/ | |
var ExcelFormulas = { | |
PVIF: function(rate, nper) { | |
return Math.pow(1 + rate, nper); | |
}, |
Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn
.
Author: Kaspars Dambis
kaspars.net / @konstruktors