Thanks for that!I have uploaded on the ftp JRH files 16-02-09. It's preparations for another part of WoodesRogers 2.

But can you pretty please double-check your code in 'TakeItems'? If I read it correctly, it ends up as:
Code:
if (something )
{
if(itm2=="item1")
{
}
}
else
{
if(itm2=="item2")
{
}
}
else
{
if(itm2=="item3")
{
}
}
Note how there are multiple 'else' statements there for the same 'if'.
It should probably be either:
Code:
if (something )
{
if(itm2=="item1")
{
}
else
{
if(itm2=="item2")
{
}
else
{
if(itm2=="item3")
{
}
}
}
}
OR it should be:
Code:
if (something )
{
switch(itm2)
{
case "item1":
break;
case "item2":
break;
case "item3":
break;
}
}
You could probably even use:
Code:
if (something )
{
if(itm2=="item1")
{
}
if(itm2=="item2")
{
}
if(itm2=="item3")
{
}
}