Jump to content
  • 0

@ccommands


Mael

Question


  • Group:  Forum Moderator
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  830
  • Reputation:   316
  • Joined:  02/11/19
  • Last Seen:  

hi rAthena! ? somebody could help me?

I'm looking for a custom command, that allows the user to know what the customs commands are on the server. With similar logic to the @commands command.

When using the @ccommands command, should appear in the chat window of the user and only for the user who uses it.

example:

@segurity - This command is used to protect your account and items.
@pvproom - This command is used to enter from anywhere in the pvp room.

the idea is that you can manually implement the commands and their descriptions in the script. 

I will be attentive to your comments and thanks!

Edited by Mael
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 1

  • Group:  Content Moderator
  • Topic Count:  55
  • Topics Per Day:  0.02
  • Content Count:  1676
  • Reputation:   702
  • Joined:  12/21/14
  • Last Seen:  

26 minutes ago, Mael said:

hi rAthena! ? somebody could help me?

I'm looking for a custom command, that allows the user to know what the customs commands are on the server. With similar logic to the @commands command.

When using the @ccommands command, should appear in the chat window of the user and only for the user who uses it.

example:


@segurity - This command is used to protect your account and items.
@pvproom - This command is used to enter from anywhere in the pvp room.

the idea is that you can manually implement the commands and their descriptions in the script. 

I will be attentive to your comments and thanks!

@command it self shows the custom commands

type @command

see the last commands you will see "script commands"

and than you will see all the commands made by scripts

ofc you can do this too

-	script	ccommand	-1,{
OnAtcommand:
	dispbottom "@segurity - This command is used to protect your account and items.";
	dispbottom "@pvproom - This command is used to enter from anywhere in the pvp room.";
	dispbottom "more commands";
end;
OnInit:
	bindatcmd "ccommand",strnpcinfo(3)+"::OnAtcommand";
end;
}

 

  • Upvote 1
  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  830
  • Reputation:   316
  • Joined:  02/11/19
  • Last Seen:  

4 minutes ago, Royr said:

1.

 

I'm looking for a command that explains what these 2 commands that I put in my example.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  90
  • Reputation:   34
  • Joined:  10/01/18
  • Last Seen:  

4 minutes ago, Mael said:

I'm looking for a command that explains what these 2 commands that I put in my example.

Search Engine is the 'key' there are tons of that similar to your requests.

Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  830
  • Reputation:   316
  • Joined:  02/11/19
  • Last Seen:  

4 minutes ago, Royr said:

Search Engine is the 'key' there are tons of that similar to your requests.

I think you can not understand my request...

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  90
  • Reputation:   34
  • Joined:  10/01/18
  • Last Seen:  

4 minutes ago, Mael said:

I think you can not understand my request...

If you know how to modify the script then your good to go.

 

Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  830
  • Reputation:   316
  • Joined:  02/11/19
  • Last Seen:  

22 minutes ago, sader1992 said:

@command it self shows the custom commands

type @command

see the last commands you will see "script commands"

and than you will see all the commands made by scripts

ofc you can do this too


-	script	ccommand	-1,{
OnAtcommand:
	dispbottom "@segurity - This command is used to protect your account and items.";
	dispbottom "@pvproom - This command is used to enter from anywhere in the pvp room.";
	dispbottom "more commands";
end;
OnInit:
	bindatcmd "ccommand",strnpcinfo(3)+"::OnAtcommand";
end;
}

 

This is what I'm talking about, thank you very much @sader1992 ❤️ 

Link to comment
Share on other sites

  • -2

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  90
  • Reputation:   34
  • Joined:  10/01/18
  • Last Seen:  

25 minutes ago, Mael said:

hi rAthena! ? somebody could help me?

I'm looking for a custom command, that allows the user to know what the customs commands are on the server. With similar logic to the @commands command.

When using the @ccommands command, should appear in the chat window of the user and only for the user who uses it.

example:


@segurity - This command is used to protect your account and items.
@pvproom - This command is used to enter from anywhere in the pvp room.

the idea is that you can manually implement the commands and their descriptions in the script. 

I will be attentive to your comments and thanks!

References

 

Edited by Royr
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...