05.09.2007, 17:04
Quote:
Originally Posted by BarryM
Very nice zeruel_angel
I may use this! ![]() I will add your name at /credits Thanks!!! ![]() |
Quote:
Originally Posted by ******
np, you can even do things like:
if (newkeys & KEY_ACTION && newkeys & KEY_CROUCH) To detect multiple keys at once, however: if (newkeys & (KEY_ACTION | KEY_CROUCH)) Will be true if either one is pressed (although it is a lot easier and faster than: if (newkeys == KEY_ACTION || newkeys == KEY_CROUCH)) or even: if (newkeys & KEY_ACTION || newkeys & KEY_CROUCH)) if that is in fact the desired effect. |
Thanks ******, I really apreciate this. :RESPECT:
See you later