Pokemaster: You need to install the shop mod (v1.2.0) first.
Alienz: That's probably a problem with the points mod and not with this one. I know I don't have that problem at SFC.
Right, now for the long bit...
I've tried to get together a list of all the stuff I'll need to change in the file (hopefully tomorrow) for the 'final' (but still 'as-is'

If I've missed anything off, or if I noticed a problem but didn't spot the fix and you know where/what the fix is, please reply with the info, thanks!!
Fixes:
Arena ticket:
User attacks don't miss, due to an = instead of a ==. I'll fix this & add instructions for fixing it. Also a misnamed variable (which didn't matter when missing wasn't working, but will now

Stockmarket:
bulkbuy/sell qty bugfix (as posted on p60)
Cashmod compatability:
mode != edit fix, preventing points/exp gain on edit.
Auction:
messaging fix (as on p79)
config.php 'headers problem on bid' fix, as posted by Suede on this page (or sometime recently)
Salary:
admin pay fix? - Couldn't spot the fix for this... nor really what the problem was!
Admin panel: Add Mav's code
before //main page add
if(is_array($_GET))
{
extract($_GET, EXTR_PREFIX_SAME, "get");
}
if(is_array($_POST))
{
extract($_POST, EXTR_PREFIX_SAME, "post");
}
I assume Mav's code will have no negative side effects for those who don't actually need it?
There was also mention of some problem in the admin panel for adding shops or updating items or something... I don't have this problem and didn't spot a fix. Anyone?
HQ: Add Mav's code
$action = ( isset($HTTP_POST_VARS['action']) ) ? htmlspecialchars($HTTP_POST_VARS['action']) : '';
after
$user_id = ( isset($HTTP_GET_VARS['user_id']) ) ? intval($HTTP_GET_VARS['user_id']) : 0;
I assume Mav's code will have no negative side effects for those who don't actually need it?
Usable items mod:
Add the append _sid (was there also a need for removing the ucwords() bits?) to prevent constant login pages!
All PHP files: (is this really necessary in all files? ... or would a mention of it as a possible common fix be enough?)
Add
import_request_variables("gp");
after
define('IN_PHPBB', 1);
Instructions:
Remove the border=0 from a FIND bit
Fix the td classes - I think this was mentioned somewhere, but I've no idea which bits need to change as my templates are so different!
Add some apparently missing SQL: (thought I already did...)
ALTER TABLE phpbb_shopitems ADD cauldron tinyint( 1 ) unsigned NOT NULL default '0'
CREATE TABLE phpbb_cauldron (itemcombo TEXT NOT NULL , itemresult VARCHAR( 32 ) NOT NULL , hidden TINYINT( 1 ) UNSIGNED DEFAULT '0' NOT NULL);
New Stuff
Add new usable items to zip - Heal/Detox spell out of battle
Upload other animations from theanimewizard
Extras:
Include the "armour has real effect" & "defend against first attack" extras
Add links on my phpBB mods page:
link to instructions for shop 2.0.6 from Narc0sis
http://eric.best-1.biz/index.php for more mods

Have I missed anything out?
So, that's the stuff I hope to add. Things in red are things I'm not 100% sure on and could do with some responses to help out
