Jump to content
  • 0

Display @command in mes?


GreenMagic793

Question


  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.01
  • Content Count:  157
  • Reputation:   19
  • Joined:  08/18/15
  • Last Seen:  

Hey guys,

 

I have an NPC that lets players use "@mapinfo". However, instead of displaying that information on the player's chat log, how can I display it in a dialogue box instead? I simply need a way to display @commands in 'mes' boxes but not in the player's chat log. Thanks for any help.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  513
  • Reputation:   84
  • Joined:  08/11/12
  • Last Seen:  

This approach is a bit manual. But it can work IMO

prontera,150,150,5	script	mapflag_checker	700,{
mes "------ Map Info ------";
mes "Map name:"+strnpcinfo(3)+" | Players in Map: "+getmapusers(strnpcinfo(3));
mes "------ Map Flags ------";
for(set .@x, 0; .@x < getarraysize(.@mapflags$); set .@x, .@x + 1){
	if (getmapflag(strnpcinfo(3),.@mapflags$[.@x]) {
		explode (.@mapflagcontainer$,.@mapflags$[.@x],"_");
		mes .@mapflagcontainer$[1];
	}

}
end;

OnInit:
setarray .@mapflags$[0], "mf_nosave","mf_nocommands"; //put all mapflags that you wanna check
end;

}
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  88
  • Reputation:   10
  • Joined:  01/15/16
  • Last Seen:  

I think that this is not what he wanted, he asked for the commands.

I can do it, but its a source modification, not a script one.

In a few hours after sleep i will give yo what you have to change to do that.

PD: I suggest to a moderator to move this topic to source support

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...