diff options
author | remoitnane <remoit(DOT)nane(AT)gmail(DOT)com> | 2010-08-14 12:10:48 -0700 |
---|---|---|
committer | Chuck Miller <shadowmil@gmail.com> | 2010-08-15 13:56:16 -0400 |
commit | c4430fb3b870ac2def588efe638abba1dbcdf3a9 (patch) | |
tree | 3daf4bb648f4748292b3382631492af6e81d814f /npc/items | |
parent | 46bf43b3f428cb131d1494d7bbf55db2698be2fd (diff) | |
download | serverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.tar.gz serverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.tar.bz2 serverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.tar.xz serverdata-c4430fb3b870ac2def588efe638abba1dbcdf3a9.zip |
Update scripts to reflect gmcommand's simplification
If you are using mainline TMW-eAthena, you will have to update your
scripts as well.
Signed-off-by: Chuck Miller <shadowmil@gmail.com>
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/restricted_item.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/restricted_item.txt b/npc/items/restricted_item.txt index 4ce1d096..7d8e96ab 100644 --- a/npc/items/restricted_item.txt +++ b/npc/items/restricted_item.txt @@ -12,7 +12,7 @@ function script RestrictedItem { message strcharinfo(0), "This item repells you with extreme force. It does not seem to be meant for you."; unequipbyid @slotId; if (getgmlevel(0)) return; - gmcommand strcharinfo(0) + " : @wgm Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'."; - gmcommand strcharinfo(0) + " : @l Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'."; + gmcommand "@wgm Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'."; + gmcommand "@l Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'."; end; } |