Jump to content
  • 0

Permanent no_nightmare_drop everywhere.


Currently

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  313
  • Reputation:   1
  • Joined:  01/22/12
  • Last Seen:  

So, my server for some reason drops equips (nightmare mode) in the pvp arenas.

 

I looked into mapflags and all of the scripts I got but I can't find the cause of it.

 

Is it possible to command the server (every start or restart of the server) to disable nightmare drop?

 

I guess kinda like this but ONLY disable NIGHTMARE and restart server or start of the server?

- script mf -1,{


OnWhisperGlobal:
set .@name$,"[^0000FFMap Flag Manager^000000]";
if(getgmlevel() >= 50) {
mes .@name$;
mes "I can ^00FF00activate^000000 or ^FF0000deactivate^000000 Map Flags on any map.";
mes "[^FF0000NOTE: Do not use this system on special maps such as PVP, GvP, BG, or Towns.^000000]";
set .@act1,select("Activate Map Flag:Deactivate Map Flag");
next;
mes .@name$;
mes "Please enter the desired ^0000FFMap^000000";
input(.@map$);
next;
mes "Please select Map Flag";
set .@act2,select("No Memo:No Teleport:No Save:No Branch:PvP:PvP No Party:PvP No Guild:GvG:GvG No Party:No Trade:No Skill:No Warp:Party Lock:No Ice Wall:Indoors:No Go:No Base EXP Gain:No Job EXP Gain:No EXP Penalty:No Mob Loot:No MvP Loot:No Return:No Warp To:No Nightmare Drop:No Command:No Drop:No Vending:No Chat:Guild Lock") - 1;
close2;
setarray .@mf_name[0],mf_nomemo,mf_noteleport,mf_nosave,mf_nobranch,mf_pvp,mf_pvp_noparty,mf_pvp_noguild,mf_gvg,mf_gvg_noparty,mf_notrade,mf_noskill,mf_nowarp,mf_partylock,mf_noicewall,mf_indoors,mf_nogo,mf_nobaseexp,mf_nojobexp,mf_noexppenalty,mf_nomobloot,mf_nomvploot,mf_noreturn,mf_nowarpto,mf_nonightmaredrop,mf_nocommand,mf_nodrop,mf_novending,mf_nochat,mf_guildlock;
if(.@act2 == 3) {
switch(.@act1) {
case 1:
setmapflag .@map$,.@mf_name[.@act2],"SavePoint";
break;
case 2:
removemapflag .@map$,.@mf_name[.@act2];
break;
}
} else {
switch(.@act1) {
case 1:
setmapflag .@map$,.@mf_name[.@act2];
break;
case 2:
removemapflag .@map$,.@mf_name[.@act2];
break;
}
}
dispbottom "Command sent.";
} else {
message strcharinfo(0),"Access Denied: You are not authorized to use this system.";
}
end;
}

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 1

  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

OnInit: setmapflag "<map name>",mf_nightmaredrop,off;

Or

<map_name>	mapflag	pvp_nightmaredrop	off

Also did you check mapflag/nightmare.txt

  • Upvote 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...