<?php
// $to из банка
if (strpos($to,"_")!==false) $ti=substr($to,0,strpos($to,"_")); else $ti=$to;
if (substr($to,0,5)=="i.rr.") $item=explode("|","руна|50"); else if (file_exists("items/".$ti)) $item=explode("|",implode("",file("items/".$ti))); else die("err: no items/".$to);
$count=intval(preg_replace('/.*'.$to.':(\d+).*/',"\\1",$loc_i[$loc][$login]["bank"]));
if ($count==0) msg("В банке нет ".$item[0],$tchar[0]);
if ($count>1 && !$num) { // кол-во
$stmp="<p>Укажите количество:\n<br/><input name=\"num\" format=\"*N\" maxlength=\"7\" value=\"".$count."\"/>\n<br/><a href=\"$PHP_SELF?sid=$sid&speak=$speak&id=$id&start=$start&to=$to&num=$(num)\">Отправить</a>";
msg($stmp,$tchar[0],1,"","num",$count);
}
if (!$num || $num<1) $num=1;
if ($num>$count) $num=$count;
additem($loc,$login,$login,$to,$num,"bank","items",0,-1,1);
msg("Вы забрали из банка ".$num." ".$item[0]."<br/><a href=\"$PHP_SELF?sid=$sid&speak=$speak&id=$id&start=$start\">Продолжить</a>");