diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-06 01:07:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-06 01:07:47 -0300 |
commit | dcde90dd4a4f9d8166dbdab050a0a8e3b8ff2c8e (patch) | |
tree | 9eaf32e66a9ee95e4e26c4e6cb96d35008f56425 /npc | |
parent | ceb03f41b574e8b6e5b57e40dcfe2ad38573cc99 (diff) | |
download | serverdata-dcde90dd4a4f9d8166dbdab050a0a8e3b8ff2c8e.tar.gz serverdata-dcde90dd4a4f9d8166dbdab050a0a8e3b8ff2c8e.tar.bz2 serverdata-dcde90dd4a4f9d8166dbdab050a0a8e3b8ff2c8e.tar.xz serverdata-dcde90dd4a4f9d8166dbdab050a0a8e3b8ff2c8e.zip |
Try to fix a few rough edges on @titulate
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/titulate.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/commands/titulate.txt b/npc/commands/titulate.txt index 4e9358e0f..6ec8d6e26 100644 --- a/npc/commands/titulate.txt +++ b/npc/commands/titulate.txt @@ -1,7 +1,7 @@ // TMW2 Script // -// @grantpower <username> -// Grants a legendary weapon to <username>. Cannot be undone. +// @titulate <username> +// Grants a title to <username>. Cannot be undone. // Only way to bypass restrictions on legendary weapons. - script @titulate 32767,{ @@ -10,6 +10,7 @@ OnCall: .@request$ = ""; .@request$ += implode(.@atcmd_parameters$, " "); + .@request$ = strip(.@request$); // No argument supplied if (.@request$ == "") { @@ -29,7 +30,7 @@ OnCall: mes ".:: " + l("Titulation") + " ::."; if (.@mine <= .@them || .@them < 0) { - mesc l("You can only concede or vouch a title for people of academic rank smaller or equal to your own."); + mesc l("You can only concede or vouch a title for people of academic rank inferior than your own."); close; } |