try this
prontera,155,181,5 script Sample 757,{
if( !getcharid(1) || getpartyleader( getcharid(1),2 ) == getcharid(0) ) {
mes "^FF0000Failed^000000.Perhaps you are not in a Party or your are the Leader.";
}else if( !isloggedin( getpartyleader( getcharid(1),1 ) )){
mes "Your Party Leader is Offline.";
}else{
mes "Warp to Leader Location ?";
if( select("Yes","No") == 2 ) close;
set .@CID,getcharid(0);
attachrid( getpartyleader( getcharid(1),1 ) );
getmapxy .@MAP$,.@X,.@Y,0;
warpchar .@MAP$,.@X,.@Y,.@CID;
end;
}
close;
}