|
@@ -4507,6 +4507,10 @@ ACMD_FUNC(mapinfo) {
|
|
strcat(atcmd_output, " NoGo |"); //
|
|
strcat(atcmd_output, " NoGo |"); //
|
|
if (map_getmapflag(m_id, MF_NOMEMO))
|
|
if (map_getmapflag(m_id, MF_NOMEMO))
|
|
strcat(atcmd_output, " NoMemo |");
|
|
strcat(atcmd_output, " NoMemo |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_PRIVATEAIRSHIP_SOURCE))
|
|
|
|
+ strcat(atcmd_output, " PrivateAirship_Source |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_PRIVATEAIRSHIP_DESTINATION))
|
|
|
|
+ strcat(atcmd_output, " PrivateAirship_Destination |");
|
|
clif_displaymessage(fd, atcmd_output);
|
|
clif_displaymessage(fd, atcmd_output);
|
|
|
|
|
|
sprintf(atcmd_output, msg_txt(sd,1065), // No Exp Penalty: %s | No Zeny Penalty: %s
|
|
sprintf(atcmd_output, msg_txt(sd,1065), // No Exp Penalty: %s | No Zeny Penalty: %s
|
|
@@ -4567,9 +4571,6 @@ ACMD_FUNC(mapinfo) {
|
|
strcat(atcmd_output, " Reset |");
|
|
strcat(atcmd_output, " Reset |");
|
|
if (map_getmapflag(m_id, MF_HIDEMOBHPBAR))
|
|
if (map_getmapflag(m_id, MF_HIDEMOBHPBAR))
|
|
strcat(atcmd_output, " HideMobHPBar |");
|
|
strcat(atcmd_output, " HideMobHPBar |");
|
|
- clif_displaymessage(fd, atcmd_output);
|
|
|
|
-
|
|
|
|
- strcpy(atcmd_output,msg_txt(sd,1051)); // Other Flags2:
|
|
|
|
if (map_getmapflag(m_id, MF_NOCOMMAND))
|
|
if (map_getmapflag(m_id, MF_NOCOMMAND))
|
|
strcat(atcmd_output, " NoCommand |");
|
|
strcat(atcmd_output, " NoCommand |");
|
|
if (map_getmapflag(m_id, MF_NOBASEEXP))
|
|
if (map_getmapflag(m_id, MF_NOBASEEXP))
|
|
@@ -4580,12 +4581,18 @@ ACMD_FUNC(mapinfo) {
|
|
strcat(atcmd_output, " NoMobLoot |");
|
|
strcat(atcmd_output, " NoMobLoot |");
|
|
if (map_getmapflag(m_id, MF_NOMVPLOOT))
|
|
if (map_getmapflag(m_id, MF_NOMVPLOOT))
|
|
strcat(atcmd_output, " NoMVPLoot |");
|
|
strcat(atcmd_output, " NoMVPLoot |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_NORENEWALEXPPENALTY))
|
|
|
|
+ strcat(atcmd_output, " NoRenewalExpPenalty |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_NORENEWALDROPPENALTY))
|
|
|
|
+ strcat(atcmd_output, " NoRenewalDropPenalty |");
|
|
if (map_getmapflag(m_id, MF_PARTYLOCK))
|
|
if (map_getmapflag(m_id, MF_PARTYLOCK))
|
|
strcat(atcmd_output, " PartyLock |");
|
|
strcat(atcmd_output, " PartyLock |");
|
|
if (map_getmapflag(m_id, MF_GUILDLOCK))
|
|
if (map_getmapflag(m_id, MF_GUILDLOCK))
|
|
strcat(atcmd_output, " GuildLock |");
|
|
strcat(atcmd_output, " GuildLock |");
|
|
if (map_getmapflag(m_id, MF_LOADEVENT))
|
|
if (map_getmapflag(m_id, MF_LOADEVENT))
|
|
strcat(atcmd_output, " Loadevent |");
|
|
strcat(atcmd_output, " Loadevent |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_NODYNAMICNPC))
|
|
|
|
+ strcat(atcmd_output, " NoDynamicNPC |");
|
|
if (map_getmapflag(m_id, MF_NOMAPCHANNELAUTOJOIN))
|
|
if (map_getmapflag(m_id, MF_NOMAPCHANNELAUTOJOIN))
|
|
strcat(atcmd_output, " NoMapChannelAutoJoin |");
|
|
strcat(atcmd_output, " NoMapChannelAutoJoin |");
|
|
if (map_getmapflag(m_id, MF_NOUSECART))
|
|
if (map_getmapflag(m_id, MF_NOUSECART))
|
|
@@ -4604,6 +4611,12 @@ ACMD_FUNC(mapinfo) {
|
|
strcat(atcmd_output, " NoCostume |");
|
|
strcat(atcmd_output, " NoCostume |");
|
|
if (map_getmapflag(m_id, MF_NOBANK))
|
|
if (map_getmapflag(m_id, MF_NOBANK))
|
|
strcat(atcmd_output, " NoBank |");
|
|
strcat(atcmd_output, " NoBank |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_NOCASHSHOP))
|
|
|
|
+ strcat(atcmd_output, " NoCashShop |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_NORODEX))
|
|
|
|
+ strcat(atcmd_output, " NoRODex |");
|
|
|
|
+ if (map_getmapflag(m_id, MF_NOPETCAPTURE))
|
|
|
|
+ strcat(atcmd_output, " NoPetCapture |");
|
|
clif_displaymessage(fd, atcmd_output);
|
|
clif_displaymessage(fd, atcmd_output);
|
|
|
|
|
|
switch (list) {
|
|
switch (list) {
|