View Single Post
  #3  
Old 11-15-2006, 11:54 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
hmm, when I use enablefeatures I always have to use like
PHP Code:
enablefeatures(allfeatures 0x10);
// for example 
because it enables, so I think you have to enable
all the features, then pick out the parts that is not going to be enabled.

PHP Code:
enablefeatures(allfeatures & ~(0x10 0x20)); 
/*
  would enable everything, except dropping of items (all items for S+A combo)         
  and S+D combo for switching weapons.
*/

// 0x10      S+A key combination for dropping items
// 0x20      S+D key combination for switching weapons 
Also, enablefeatures can go in a timeout, or when creating the script/initializing
(Not sure about this, I usually uses a timeout)
__________________
Reply With Quote