Q>what does this warning means
This happen'd when I tried to do this:
Map server error:
A function call'ed on another npc with getmapflag check...of all mapflag found in constants
This happen'd when I tried to do this:
Map server error:
[Warning]: Unexpected type for argument 1. Expected number.
[Debug]: Data: label pos=3668
[Debug]: Function: __jump_zero
[Debug]: Source (NPC): TesterClone#TC01 at prontera (154,174)
[Debug]: Data: label pos=3668
[Debug]: Function: __jump_zero
[Debug]: Source (NPC): TesterClone#TC01 at prontera (154,174)
function script F_MFCheck {
if ( getmapflag( strcharinfo(PC_MAP), mf_nomemo ) ) {
dispbottom ( " Yes mf_nomemo " ) ;
} else {
dispbottom ( " Not mf_nomemo " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noteleport ) ) {
dispbottom ( " Yes mf_noteleport " ) ;
} else {
dispbottom ( " Not mf_noteleport " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nosave ) ) {
dispbottom ( " Yes mf_nosave " ) ;
} else {
dispbottom ( " Not mf_nosave " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nobranch ) ) {
dispbottom ( " Yes mf_nobranch " ) ;
} else {
dispbottom ( " Not mf_nobranch " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nopenalty ) ) {
dispbottom ( " Yes mf_nopenalty " ) ;
} else {
dispbottom ( " Not mf_nopenalty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nozenypenalty ) ) {
dispbottom ( " Yes mf_nozenypenalty " ) ;
} else {
dispbottom ( " Not mf_nozenypenalty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp ) ) {
dispbottom ( " Yes mf_pvp " ) ;
} else {
dispbottom ( " Not mf_pvp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp_noparty ) ) {
dispbottom ( " Yes mf_pvp_noparty " ) ;
} else {
dispbottom ( " Not mf_pvp_noparty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp_noguild ) ) {
dispbottom ( " Yes mf_pvp_noguild " ) ;
} else {
dispbottom ( " Not mf_pvp_noguild " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg ) ) {
dispbottom ( " Yes mf_gvg " ) ;
} else {
dispbottom ( " Not mf_gvg " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg_noparty ) ) {
dispbottom ( " Yes mf_gvg_noparty " ) ;
} else {
dispbottom ( " Not mf_gvg_noparty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_notrade ) ) {
dispbottom ( " Yes mf_notrade " ) ;
} else {
dispbottom ( " Not mf_notrade " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noskill ) ) {
dispbottom ( " Yes mf_noskill " ) ;
} else {
dispbottom ( " Not mf_noskill " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nowarp ) ) {
dispbottom ( " Yes mf_nowarp " ) ;
} else {
dispbottom ( " Not mf_nowarp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_partylock ) ) {
dispbottom ( " Yes mf_partylock " ) ;
} else {
dispbottom ( " Not mf_partylock " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noicewall ) ) {
dispbottom ( " Yes mf_noicewall " ) ;
} else {
dispbottom ( " Not mf_noicewall " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_snow ) ) {
dispbottom ( " Yes mf_snow " ) ;
} else {
dispbottom ( " Not mf_snow " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_fog ) ) {
dispbottom ( " Yes mf_fog " ) ;
} else {
dispbottom ( " Not mf_fog " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_sakura ) ) {
dispbottom ( " Yes mf_sakura " ) ;
} else {
dispbottom ( " Not mf_sakura " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_leaves ) ) {
dispbottom ( " Yes mf_leaves " ) ;
} else {
dispbottom ( " Not mf_leaves " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_clouds ) ) {
dispbottom ( " Yes mf_clouds " ) ;
} else {
dispbottom ( " Not mf_clouds " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_clouds2 ) ) {
dispbottom ( " Yes mf_clouds2 " ) ;
} else {
dispbottom ( " Not mf_clouds2 " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_fireworks ) ) {
dispbottom ( " Yes mf_fireworks " ) ;
} else {
dispbottom ( " Not mf_fireworks " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg_castle ) ) {
dispbottom ( " Yes mf_gvg_castle " ) ;
} else {
dispbottom ( " Not mf_gvg_castle " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg_dungeon ) ) {
dispbottom ( " Yes mf_gvg_dungeon " ) ;
} else {
dispbottom ( " Not mf_gvg_dungeon " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nightenabled ) ) {
dispbottom ( " Yes mf_nightenabled " ) ;
} else {
dispbottom ( " Not mf_nightenabled " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nobaseexp ) ) {
dispbottom ( " Yes mf_nobaseexp " ) ;
} else {
dispbottom ( " Not mf_nobaseexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nojobexp ) ) {
dispbottom ( " Yes mf_nojobexp " ) ;
} else {
dispbottom ( " Not mf_nojobexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nomobloot ) ) {
dispbottom ( " Yes mf_nomobloot " ) ;
} else {
dispbottom ( " Not mf_nomobloot " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nomvploot ) ) {
dispbottom ( " Yes mf_nomvploot " ) ;
} else {
dispbottom ( " Not mf_nomvploot " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noreturn ) ) {
dispbottom ( " Yes mf_noreturn " ) ;
} else {
dispbottom ( " Not mf_noreturn " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nowarpto ) ) {
dispbottom ( " Yes mf_nowarpto " ) ;
} else {
dispbottom ( " Not mf_nowarpto " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nightmaredrop ) ) {
dispbottom ( " Yes mf_nightmaredrop " ) ;
} else {
dispbottom ( " Not mf_nightmaredrop " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_zone ) ) {
dispbottom ( " Yes mf_zone " ) ;
} else {
dispbottom ( " Not mf_zone " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nocommand ) ) {
dispbottom ( " Yes mf_nocommand " ) ;
} else {
dispbottom ( " Not mf_nocommand " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nodrop ) ) {
dispbottom ( " Yes mf_nodrop " ) ;
} else {
dispbottom ( " Not mf_nodrop " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_jexp ) ) {
dispbottom ( " Yes mf_jexp " ) ;
} else {
dispbottom ( " Not mf_jexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_bexp ) ) {
dispbottom ( " Yes mf_bexp " ) ;
} else {
dispbottom ( " Not mf_bexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_novending ) ) {
dispbottom ( " Yes mf_novending " ) ;
} else {
dispbottom ( " Not mf_novending " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_loadevent ) ) {
dispbottom ( " Yes mf_loadevent " ) ;
} else {
dispbottom ( " Not mf_loadevent " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nochat ) ) {
dispbottom ( " Yes mf_nochat " ) ;
} else {
dispbottom ( " Not mf_nochat " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noexppenalty ) ) {
dispbottom ( " Yes mf_noexppenalty " ) ;
} else {
dispbottom ( " Not mf_noexppenalty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_guildlock ) ) {
dispbottom ( " Yes mf_guildlock " ) ;
} else {
dispbottom ( " Not mf_guildlock " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_town ) ) {
dispbottom ( " Yes mf_town " ) ;
} else {
dispbottom ( " Not mf_town " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_autotrade ) ) {
dispbottom ( " Yes mf_autotrade " ) ;
} else {
dispbottom ( " Not mf_autotrade " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_allowks ) ) {
dispbottom ( " Yes mf_allowks " ) ;
} else {
dispbottom ( " Not mf_allowks " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_monster_noteleport ) ) {
dispbottom ( " Yes mf_monster_noteleport " ) ;
} else {
dispbottom ( " Not mf_monster_noteleport " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp_nocalcrank ) ) {
dispbottom ( " Yes mf_pvp_nocalcrank " ) ;
} else {
dispbottom ( " Not mf_pvp_nocalcrank " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_battleground ) ) {
dispbottom ( " Yes mf_battleground " ) ;
} else {
dispbottom ( " Not mf_battleground " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_reset ) ) {
dispbottom ( " Yes mf_reset " ) ;
} else {
dispbottom ( " Not mf_reset " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_notomb ) ) {
dispbottom ( " Yes mf_notomb " ) ;
} else {
dispbottom ( " Not mf_notomb " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nocashshop ) ) {
dispbottom ( " Yes mf_nocashshop " ) ;
} else {
dispbottom ( " Not mf_nocashshop " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noautoloot ) ) {
dispbottom ( " Yes mf_noautoloot " ) ;
} else {
dispbottom ( " Not mf_noautoloot " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noviewid ) ) {
dispbottom ( " Yes mf_noviewid " ) ;
} else {
dispbottom ( " Not mf_noviewid " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pairship_startable ) ) {
dispbottom ( " Yes mf_pairship_startable " ) ;
} else {
dispbottom ( " Not mf_pairship_startable " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pairship_endable ) ) {
dispbottom ( " Yes mf_pairship_endable " ) ;
} else {
dispbottom ( " Not mf_pairship_endable " ) ;
}
return;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nomemo ) ) {
dispbottom ( " Yes mf_nomemo " ) ;
} else {
dispbottom ( " Not mf_nomemo " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noteleport ) ) {
dispbottom ( " Yes mf_noteleport " ) ;
} else {
dispbottom ( " Not mf_noteleport " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nosave ) ) {
dispbottom ( " Yes mf_nosave " ) ;
} else {
dispbottom ( " Not mf_nosave " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nobranch ) ) {
dispbottom ( " Yes mf_nobranch " ) ;
} else {
dispbottom ( " Not mf_nobranch " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nopenalty ) ) {
dispbottom ( " Yes mf_nopenalty " ) ;
} else {
dispbottom ( " Not mf_nopenalty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nozenypenalty ) ) {
dispbottom ( " Yes mf_nozenypenalty " ) ;
} else {
dispbottom ( " Not mf_nozenypenalty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp ) ) {
dispbottom ( " Yes mf_pvp " ) ;
} else {
dispbottom ( " Not mf_pvp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp_noparty ) ) {
dispbottom ( " Yes mf_pvp_noparty " ) ;
} else {
dispbottom ( " Not mf_pvp_noparty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp_noguild ) ) {
dispbottom ( " Yes mf_pvp_noguild " ) ;
} else {
dispbottom ( " Not mf_pvp_noguild " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg ) ) {
dispbottom ( " Yes mf_gvg " ) ;
} else {
dispbottom ( " Not mf_gvg " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg_noparty ) ) {
dispbottom ( " Yes mf_gvg_noparty " ) ;
} else {
dispbottom ( " Not mf_gvg_noparty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_notrade ) ) {
dispbottom ( " Yes mf_notrade " ) ;
} else {
dispbottom ( " Not mf_notrade " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noskill ) ) {
dispbottom ( " Yes mf_noskill " ) ;
} else {
dispbottom ( " Not mf_noskill " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nowarp ) ) {
dispbottom ( " Yes mf_nowarp " ) ;
} else {
dispbottom ( " Not mf_nowarp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_partylock ) ) {
dispbottom ( " Yes mf_partylock " ) ;
} else {
dispbottom ( " Not mf_partylock " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noicewall ) ) {
dispbottom ( " Yes mf_noicewall " ) ;
} else {
dispbottom ( " Not mf_noicewall " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_snow ) ) {
dispbottom ( " Yes mf_snow " ) ;
} else {
dispbottom ( " Not mf_snow " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_fog ) ) {
dispbottom ( " Yes mf_fog " ) ;
} else {
dispbottom ( " Not mf_fog " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_sakura ) ) {
dispbottom ( " Yes mf_sakura " ) ;
} else {
dispbottom ( " Not mf_sakura " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_leaves ) ) {
dispbottom ( " Yes mf_leaves " ) ;
} else {
dispbottom ( " Not mf_leaves " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_clouds ) ) {
dispbottom ( " Yes mf_clouds " ) ;
} else {
dispbottom ( " Not mf_clouds " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_clouds2 ) ) {
dispbottom ( " Yes mf_clouds2 " ) ;
} else {
dispbottom ( " Not mf_clouds2 " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_fireworks ) ) {
dispbottom ( " Yes mf_fireworks " ) ;
} else {
dispbottom ( " Not mf_fireworks " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg_castle ) ) {
dispbottom ( " Yes mf_gvg_castle " ) ;
} else {
dispbottom ( " Not mf_gvg_castle " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_gvg_dungeon ) ) {
dispbottom ( " Yes mf_gvg_dungeon " ) ;
} else {
dispbottom ( " Not mf_gvg_dungeon " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nightenabled ) ) {
dispbottom ( " Yes mf_nightenabled " ) ;
} else {
dispbottom ( " Not mf_nightenabled " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nobaseexp ) ) {
dispbottom ( " Yes mf_nobaseexp " ) ;
} else {
dispbottom ( " Not mf_nobaseexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nojobexp ) ) {
dispbottom ( " Yes mf_nojobexp " ) ;
} else {
dispbottom ( " Not mf_nojobexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nomobloot ) ) {
dispbottom ( " Yes mf_nomobloot " ) ;
} else {
dispbottom ( " Not mf_nomobloot " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nomvploot ) ) {
dispbottom ( " Yes mf_nomvploot " ) ;
} else {
dispbottom ( " Not mf_nomvploot " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noreturn ) ) {
dispbottom ( " Yes mf_noreturn " ) ;
} else {
dispbottom ( " Not mf_noreturn " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nowarpto ) ) {
dispbottom ( " Yes mf_nowarpto " ) ;
} else {
dispbottom ( " Not mf_nowarpto " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nightmaredrop ) ) {
dispbottom ( " Yes mf_nightmaredrop " ) ;
} else {
dispbottom ( " Not mf_nightmaredrop " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_zone ) ) {
dispbottom ( " Yes mf_zone " ) ;
} else {
dispbottom ( " Not mf_zone " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nocommand ) ) {
dispbottom ( " Yes mf_nocommand " ) ;
} else {
dispbottom ( " Not mf_nocommand " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nodrop ) ) {
dispbottom ( " Yes mf_nodrop " ) ;
} else {
dispbottom ( " Not mf_nodrop " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_jexp ) ) {
dispbottom ( " Yes mf_jexp " ) ;
} else {
dispbottom ( " Not mf_jexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_bexp ) ) {
dispbottom ( " Yes mf_bexp " ) ;
} else {
dispbottom ( " Not mf_bexp " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_novending ) ) {
dispbottom ( " Yes mf_novending " ) ;
} else {
dispbottom ( " Not mf_novending " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_loadevent ) ) {
dispbottom ( " Yes mf_loadevent " ) ;
} else {
dispbottom ( " Not mf_loadevent " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nochat ) ) {
dispbottom ( " Yes mf_nochat " ) ;
} else {
dispbottom ( " Not mf_nochat " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noexppenalty ) ) {
dispbottom ( " Yes mf_noexppenalty " ) ;
} else {
dispbottom ( " Not mf_noexppenalty " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_guildlock ) ) {
dispbottom ( " Yes mf_guildlock " ) ;
} else {
dispbottom ( " Not mf_guildlock " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_town ) ) {
dispbottom ( " Yes mf_town " ) ;
} else {
dispbottom ( " Not mf_town " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_autotrade ) ) {
dispbottom ( " Yes mf_autotrade " ) ;
} else {
dispbottom ( " Not mf_autotrade " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_allowks ) ) {
dispbottom ( " Yes mf_allowks " ) ;
} else {
dispbottom ( " Not mf_allowks " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_monster_noteleport ) ) {
dispbottom ( " Yes mf_monster_noteleport " ) ;
} else {
dispbottom ( " Not mf_monster_noteleport " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pvp_nocalcrank ) ) {
dispbottom ( " Yes mf_pvp_nocalcrank " ) ;
} else {
dispbottom ( " Not mf_pvp_nocalcrank " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_battleground ) ) {
dispbottom ( " Yes mf_battleground " ) ;
} else {
dispbottom ( " Not mf_battleground " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_reset ) ) {
dispbottom ( " Yes mf_reset " ) ;
} else {
dispbottom ( " Not mf_reset " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_notomb ) ) {
dispbottom ( " Yes mf_notomb " ) ;
} else {
dispbottom ( " Not mf_notomb " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_nocashshop ) ) {
dispbottom ( " Yes mf_nocashshop " ) ;
} else {
dispbottom ( " Not mf_nocashshop " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noautoloot ) ) {
dispbottom ( " Yes mf_noautoloot " ) ;
} else {
dispbottom ( " Not mf_noautoloot " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_noviewid ) ) {
dispbottom ( " Yes mf_noviewid " ) ;
} else {
dispbottom ( " Not mf_noviewid " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pairship_startable ) ) {
dispbottom ( " Yes mf_pairship_startable " ) ;
} else {
dispbottom ( " Not mf_pairship_startable " ) ;
}
if ( getmapflag( strcharinfo(PC_MAP), mf_pairship_endable ) ) {
dispbottom ( " Yes mf_pairship_endable " ) ;
} else {
dispbottom ( " Not mf_pairship_endable " ) ;
}
return;
}