viewing paste [func] warptomap | Athena

Posted on the | Last edited on
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
 
// ........{ callfunc "warptomap"; },{},{}
 
function    script  script  warptomap   {
    mes "Enter Map Name";
    do{
        input .@map$;
    }while( getmapusers( .@map$ ) < 0 );
    set .@party_id,getcharid(1);
    if( .@party_id ){
        warpparty .@map$,0,0,.@party_id;
    }else{
        warp .@map$,0,0;
    }
    return;
}
Viewed 1436 times, submitted by Emistry.