prontera,155,181,5 script Sample 757,{
if( getgmlevel() > 80 ){
mes "Enter Items ID :";
mes " 0 = Cancel";
do{
input .@ItemID;
if( .@ItemID < 1 ) close;
}while( getitemname( .@ItemID ) == "null" );
mes "Enter Amount :";
input .@Amount,1,30000;
mes "Enter Name :";
input .@Name$;
next;
mes "Name : "+.@Name$;
mes "Item : "+getitemname( .@ItemID );
mes "Amount : "+.@Amount;
if( select("Confirm:Cancel") == 1 ){
if( !attachrid( getcharid(3,.@Name$) ) )
message strcharinfo(0),"Player not Found.";
else{
getitem .@ItemID,.@Amount,getcharid(3,.@Name$);
message strcharinfo(0),"Item Sent";
message .@Name$,"You Received item from "+strcharinfo(0);
}
}
}
close;
}
try this one
Creadit to mr.emistry