Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/src/map/atcommand.c b/src/map/atcommand.c
- index 0cb552b..da09fff 100644
- --- a/src/map/atcommand.c
- +++ b/src/map/atcommand.c
- @@ -7480,7 +7480,7 @@ int atcommand_mutearea_sub(struct block_list *bl,va_list ap)
- CHECKFLAG(nojobexp); CHECKFLAG(nomobloot); CHECKFLAG(nomvploot); CHECKFLAG(nightenabled);
- CHECKFLAG(nodrop); CHECKFLAG(novending); CHECKFLAG(loadevent);
- CHECKFLAG(nochat); CHECKFLAG(partylock); CHECKFLAG(guildlock); CHECKFLAG(src4instance);
- - CHECKFLAG(notomb); CHECKFLAG(nocashshop);
- + CHECKFLAG(notomb); CHECKFLAG(nocashshop); CHECKFLAG(nositting);
- clif->message(sd->fd," ");
- clif->message(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_noteleport 1" (0=Off | 1=On)
- clif->message(sd->fd,msg_txt(1313)); // Type "@mapflag available" to list the available mapflags.
- @@ -7517,7 +7517,7 @@ int atcommand_mutearea_sub(struct block_list *bl,va_list ap)
- SETFLAG(nojobexp); SETFLAG(nomobloot); SETFLAG(nomvploot); SETFLAG(nightenabled);
- SETFLAG(nodrop); SETFLAG(novending); SETFLAG(loadevent);
- SETFLAG(nochat); SETFLAG(partylock); SETFLAG(guildlock); SETFLAG(src4instance);
- - SETFLAG(notomb); SETFLAG(nocashshop);
- + SETFLAG(notomb); SETFLAG(nocashshop); SETFLAG(nositting);
- clif->message(sd->fd,msg_txt(1314)); // Invalid flag name or flag.
- clif->message(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_noteleport 1" (0=Off | 1=On)
- @@ -7529,7 +7529,7 @@ int atcommand_mutearea_sub(struct block_list *bl,va_list ap)
- clif->message(sd->fd,"nozenypenalty, notrade, noskill, nowarp, nowarpto, noicewall, snow, clouds, clouds2,");
- clif->message(sd->fd,"fog, fireworks, sakura, leaves, nobaseexp, nojobexp, nomobloot,");
- clif->message(sd->fd,"nomvploot, nightenabled, nodrop, novending, loadevent, nochat, partylock,");
- - clif->message(sd->fd,"guildlock, src4instance, notomb, nocashshop");
- + clif->message(sd->fd,"guildlock, src4instance, notomb, nocashshop, nositting");
- #undef CHECKFLAG
- #undef SETFLAG
- diff --git a/src/map/clif.c b/src/map/clif.c
- index 975a5aa..e45d907 100644
- --- a/src/map/clif.c
- +++ b/src/map/clif.c
- @@ -10108,6 +10108,13 @@ void clif_parse_ActionRequest_sub(struct map_session_data *sd, int action_type,
- break;
- }
- + if( sd->bl.m >= 0 && map->list[sd->bl.m].flag.nositting
- + && !pc_has_permission(sd, PC_PERM_SIT_ANYWHERE))
- + {
- + clif->message(sd->fd,"You can't sit in this map!");
- + return;
- + }
- +
- if(pc_issit(sd)) {
- //Bugged client? Just refresh them.
- clif->sitting(&sd->bl);
- diff --git a/src/map/map.c b/src/map/map.c
- index 07881ea..187b48c 100644
- --- a/src/map/map.c
- +++ b/src/map/map.c
- @@ -4417,8 +4417,16 @@ bool map_zone_mf_cache(int m, char *flag, char *params) {
- else if( map->list[m].flag.nocashshop )
- map_zone_mf_cache_add(m,"nocashshop");
- }
- + } else if(!strcmpi(flag, "nossiting")) {
- + if( state && map->list[m].flag.nositting )
- + ; /* already set */
- + else {
- + if( state )
- + map_zone_mf_cache_add(m,"nositting\tooff");
- + else if( map->list[m].flag.nositting )
- + map_zone_mf_cache_add(m,"nositting");
- + }
- }
- -
- return false;
- }
- void map_zone_apply(int m, struct map_zone_data *zone, const char* start, const char* buffer, const char* filepath) {
- diff --git a/src/map/map.h b/src/map/map.h
- index 130b181..2a61649 100644
- --- a/src/map/map.h
- +++ b/src/map/map.h
- @@ -647,6 +647,7 @@ struct map_data {
- unsigned noknockback : 1;
- unsigned notomb : 1;
- unsigned nocashshop : 1;
- + unsigned nositting : 1;
- } flag;
- struct point save;
- struct npc_data *npc[MAX_NPC_PER_MAP];
- diff --git a/src/map/npc.c b/src/map/npc.c
- index 722e519..25970b3 100644
- --- a/src/map/npc.c
- +++ b/src/map/npc.c
- @@ -3908,6 +3908,8 @@ const char* npc_parse_mapflag(char* w1, char* w2, char* w3, char* w4, const char
- map->list[m].flag.src4instance = (state) ? 1 : 0;
- } else if ( !strcmpi(w3,"nocashshop") ) {
- map->list[m].flag.nocashshop = (state) ? 1 : 0;
- + } else if ( !strcmpi(w3,"nositting") ) {
- + map->list[m].flag.nositting = (state) ? 1 : 0;
- } else
- ShowError("npc_parse_mapflag: unrecognized mapflag '%s' in file '%s', line '%d'.\n", w3, filepath, strline(buffer,start-buffer));
- diff --git a/src/map/pc_groups.c b/src/map/pc_groups.c
- index 906462c..661a313 100644
- --- a/src/map/pc_groups.c
- +++ b/src/map/pc_groups.c
- @@ -418,6 +418,7 @@ void do_init_pc_groups(void) {
- { "disable_commands_when_dead", PC_PERM_DISABLE_CMD_DEAD },
- { "hchsys_admin", PC_PERM_HCHSYS_ADMIN },
- { "can_trade_bound", PC_PERM_TRADE_BOUND },
- + { "can_sit_anywhere", PC_PERM_SIT_ANYWHERE },
- };
- unsigned char i, len = ARRAYLENGTH(pc_g_defaults);
- diff --git a/src/map/pc_groups.h b/src/map/pc_groups.h
- index 3396512..dddbcd0 100644
- --- a/src/map/pc_groups.h
- +++ b/src/map/pc_groups.h
- @@ -31,6 +31,7 @@ enum e_pc_permission {
- PC_PERM_DISABLE_CMD_DEAD = 0x100000,
- PC_PERM_HCHSYS_ADMIN = 0x200000,
- PC_PERM_TRADE_BOUND = 0x400000,
- + PC_PERM_SIT_ANYWHERE = 0x800000,
- };
- // Cached config settings for quick lookup
- diff --git a/src/map/script.c b/src/map/script.c
- index 8e8f897..b82eae2 100644
- --- a/src/map/script.c
- +++ b/src/map/script.c
- @@ -10739,6 +10739,7 @@ void script_detach_rid(struct script_state* st) {
- case MF_RESET: script_pushint(st,map->list[m].flag.reset); break;
- case MF_NOTOMB: script_pushint(st,map->list[m].flag.notomb); break;
- case MF_NOCASHSHOP: script_pushint(st,map->list[m].flag.nocashshop); break;
- + case MF_NOSITTING: script_pushint(st,map->list[m].flag.nositting); break;
- }
- }
- @@ -10855,6 +10856,7 @@ int script_mapflag_pvp_sub(struct block_list *bl,va_list ap) {
- case MF_RESET: map->list[m].flag.reset = 1; break;
- case MF_NOTOMB: map->list[m].flag.notomb = 1; break;
- case MF_NOCASHSHOP: map->list[m].flag.nocashshop = 1; break;
- + case MF_NOSITTING: map->list[m].flag.nositting = 1; break;
- }
- }
- @@ -10941,6 +10943,7 @@ int script_mapflag_pvp_sub(struct block_list *bl,va_list ap) {
- case MF_RESET: map->list[m].flag.reset = 0; break;
- case MF_NOTOMB: map->list[m].flag.notomb = 0; break;
- case MF_NOCASHSHOP: map->list[m].flag.nocashshop = 0; break;
- + case MF_NOSITTING: map->list[m].flag.nositting = 0; break;
- }
- }
- diff --git a/src/map/script.h b/src/map/script.h
- index 97db2a7..188fe7a 100644
- --- a/src/map/script.h
- +++ b/src/map/script.h
- @@ -303,7 +303,8 @@ enum {
- MF_BATTLEGROUND,
- MF_RESET,
- MF_NOTOMB,
- - MF_NOCASHSHOP
- + MF_NOCASHSHOP,
- + MF_NOSITTING
- };
- /**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement