summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-13 16:11:22 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-13 16:11:22 +0000
commit8f2296100ab52e631b0bf4e00ed6018d6596bcc0 (patch)
tree253975de68417dbde54062a3be4511f7c6609de1
parenta73bf03c82495f4ff0fe7c2f757ef20415f9ede5 (diff)
downloadhercules-8f2296100ab52e631b0bf4e00ed6018d6596bcc0.tar.gz
hercules-8f2296100ab52e631b0bf4e00ed6018d6596bcc0.tar.bz2
hercules-8f2296100ab52e631b0bf4e00ed6018d6596bcc0.tar.xz
hercules-8f2296100ab52e631b0bf4e00ed6018d6596bcc0.zip
- Modified the nocommand mapflag so you can specify the GM range that is blocked from using commands (eg: "prontera.gat mapflag nocommand 40" disables commands to characters in the GM range 0~39)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8733 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt3
-rw-r--r--src/map/atcommand.c6
-rw-r--r--src/map/charcommand.c4
-rw-r--r--src/map/map.h2
-rw-r--r--src/map/npc.c8
-rw-r--r--src/map/script.c4
6 files changed, 18 insertions, 9 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 9a218ffdf..fa897dc94 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,9 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/09/13
+ * Modified the nocommand mapflag so you can specify the GM range that is
+ blocked from using commands (eg: "prontera.gat mapflag nocommand 40"
+ disables commands to characters in the GM range 0~39) [Skotlex]
* Modified the char-server TXT whisper system to use the online_db to know
to which map server forward whispers, instead of just sending the whisper
to every map server. [Skotlex]
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 10b226257..9ac6d6862 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -807,8 +807,8 @@ is_atcommand(const int fd, struct map_session_data* sd, const char* message, int
if (!*str)
return AtCommand_None;
- if (map[sd->bl.m].flag.nocommand &&
- (gmlvl > 0? gmlvl:pc_isGM(sd)) < battle_config.gm_skilluncond)
+ if (map[sd->bl.m].nocommand &&
+ (gmlvl > 0? gmlvl:pc_isGM(sd)) < map[sd->bl.m].nocommand)
{ //Command not allowed on this map.
sprintf(atcmd_output, msg_txt(143));
clif_displaymessage(fd, atcmd_output);
@@ -5820,7 +5820,7 @@ int atcommand_mapinfo(
clif_displaymessage(fd, atcmd_output);
strcpy(atcmd_output,"Other Flags: ");
- if (map[m_id].flag.nocommand)
+ if (map[m_id].nocommand)
strcat(atcmd_output, "NoCommand | ");
if (map[m_id].flag.nobaseexp)
strcat(atcmd_output, "NoBaseEXP | ");
diff --git a/src/map/charcommand.c b/src/map/charcommand.c
index 66905faba..c4530dcd0 100644
--- a/src/map/charcommand.c
+++ b/src/map/charcommand.c
@@ -148,8 +148,8 @@ is_charcommand(const int fd, struct map_session_data* sd, const char* message, i
if (!*str)
return CharCommand_None;
- if (map[sd->bl.m].flag.nocommand &&
- (gmlvl > 0? gmlvl:pc_isGM(sd)) < battle_config.gm_skilluncond)
+ if (map[sd->bl.m].nocommand &&
+ (gmlvl > 0? gmlvl:pc_isGM(sd)) < map[sd->bl.m].nocommand)
{ //Command not allowed on this map.
char output[200];
sprintf(output, msg_table[143]);
diff --git a/src/map/map.h b/src/map/map.h
index 32394a3e7..b0b114f99 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -1115,7 +1115,6 @@ struct map_data {
unsigned nomvploot : 1; // [Lorky]
unsigned nightenabled :1; //For night display. [Skotlex]
unsigned restricted : 1; // [Komurka]
- unsigned nocommand : 1; //Blocks @/# commands for non-gms. [Skotlex]
unsigned nodrop : 1;
unsigned novending : 1;
unsigned loadevent : 1;
@@ -1134,6 +1133,7 @@ struct map_data {
int zone; // [Komurka]
int jexp; // map experience multiplicator
int bexp; // map experience multiplicator
+ int nocommand; //Blocks @/# commands for non-gms. [Skotlex]
};
struct map_data_other_server {
diff --git a/src/map/npc.c b/src/map/npc.c
index 9c3b4f096..8e1cfd336 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -2521,7 +2521,13 @@ static int npc_parse_mapflag (char *w1, char *w2, char *w3, char *w4)
map[m].flag.nomvploot=state;
}
else if (strcmpi(w3,"nocommand")==0) { // Skotlex
- map[m].flag.nocommand=state;
+ if (state) {
+ if (sscanf(w4, "%d", &state) == 1)
+ map[m].nocommand =state;
+ else //No level specified, block everyone.
+ map[m].nocommand =100;
+ } else
+ map[m].nocommand=0;
}
else if (strcmpi(w3,"restricted")==0) { // Komurka
if (state) {
diff --git a/src/map/script.c b/src/map/script.c
index 4bd8d4186..73bf0d7d0 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -8317,7 +8317,7 @@ int buildin_setmapflag(struct script_state *st)
map[m].flag.restricted=1;
break;
case MF_NOCOMMAND:
- map[m].flag.nocommand=1;
+ map[m].nocommand = (!val || atoi(val) <= 0) ? 100 : atoi(val);
break;
case MF_JEXP:
map[m].jexp = (!val || atoi(val) < 0) ? 100 : atoi(val);
@@ -8461,7 +8461,7 @@ int buildin_removemapflag(struct script_state *st)
map[m].flag.restricted=0;
break;
case MF_NOCOMMAND:
- map[m].flag.nocommand=0;
+ map[m].nocommand=0;
break;
case MF_JEXP:
map[m].jexp=100;