This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
isFast = 1 | |
XButton2:: | |
Send {3} ; Use knife | |
Send {W down} ; Move forward | |
Sleep 690 ; ... | |
Send {Space} ; Jump at the right moment | |
Send {Ctrl down} ; Crouch | |
Sleep 1200 ; Hold it... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Avindra Goolcharan | |
* September 11, 2013 | |
* CS 216 007 - Data Structures & Algorithms | |
* Assignment 2 - Two Stack Buffer | |
*/ | |
import java.util.Stack; | |
public class Buffer |
NewerOlder