Jump to content
  • 0

Question

Posted (edited)

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

7 answers to this question

Recommended Posts

  • 1
Posted
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
  • 0
Posted
4 minutes ago, Royr said:

1.

 

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

  • 0
Posted
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.

  • 0
Posted
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...

  • 0
Posted
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.

 

  • 0
Posted
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 ❤️ 

  • -2
Posted (edited)
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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...