I thought you'd disabled PoK on your server? In any case, this query should allow combat in the zone:
Code:
UPDATE zone SET cancombat = 1 WHERE short_name = 'poknowledge';
I don't know for sure if you can disable the looting of bags. A lot of things seem to be controlled from the variables table of the database:
Code:
+-----------+--------+----------------------------------------------------------------------------------------------------------------------------------------------+
| varname | value | information |
+-----------+--------+----------------------------------------------------------------------------------------------------------------------------------------------+
| LootCoin | 1 | Allows players to loot coin off a player corpse in pvp | 0 - off | 1 - on |
| PvPitem | 0 | Specific item that can be looted off a player in pvp |
| PvPreward | 0 | Allows players to loot items off a player corpse in pvp | 0 - no items | 1 - a single item | 2 - all items | 3 - item specified in PvPreward |
| ServerType| 0 | Sets server type | 0 - normal | 1 - pvp |
+-----------+--------+----------------------------------------------------------------------------------------------------------------------------------------------+
(Note: The above values are from the server I run, it's going to be almost certain that yours are different.) My guess is that it's one of the settings of the PvPreward value. Try 1 and see what happens.
As for being able to see through /who all, I know that it's a certain status level that triggers it, but I don't know for sure which. Judging by
this page, I would try those different status levels to see which it is. I know that 20 doesn't allow it, so try 80, 100, 150, or 200. If your reason for doing so is that everyone in the general population has the ability to see through /who all, however, you'll need to edit the
commands table of the database to ensure that they don't have access to any commands that you don't want them to have.
Good luck.