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)