summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorxazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-24 18:43:19 +0000
committerxazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-24 18:43:19 +0000
commite5afdf66b950242e33f9c163f0f70a8efa91ed08 (patch)
treedf08f4bd64cc7a3bc20499c54eb9093adc37df6b /src/map/atcommand.c
parent99451e33d3d7e6905b18fc9eddd96c16779728fd (diff)
downloadhercules-e5afdf66b950242e33f9c163f0f70a8efa91ed08.tar.gz
hercules-e5afdf66b950242e33f9c163f0f70a8efa91ed08.tar.bz2
hercules-e5afdf66b950242e33f9c163f0f70a8efa91ed08.tar.xz
hercules-e5afdf66b950242e33f9c163f0f70a8efa91ed08.zip
Moved a few messages from source to msg_athena.conf.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16495 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 9fe68da08..f3e75658e 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -552,7 +552,7 @@ ACMD_FUNC(jumpto)
if( pc_isdead(sd) )
{
- clif_displaymessage(fd, "You cannot use this command when dead.");
+ clif_displaymessage(fd, msg_txt(664));
return -1;
}
@@ -583,7 +583,7 @@ ACMD_FUNC(jump)
if( pc_isdead(sd) )
{
- clif_displaymessage(fd, "You cannot use this command when dead.");
+ clif_displaymessage(fd, msg_txt(664));
return -1;
}
@@ -1280,7 +1280,7 @@ ACMD_FUNC(alive)
nullpo_retr(-1, sd);
if (!status_revive(&sd->bl, 100, 100))
{
- clif_displaymessage(fd, "You're not dead.");
+ clif_displaymessage(fd, msg_txt(667));
return -1;
}
clif_skill_nodamage(&sd->bl,&sd->bl,ALL_RESURRECTION,4,1);
@@ -2451,7 +2451,7 @@ ACMD_FUNC(memo)
if( !message || !*message || sscanf(message, "%d", &position) < 1 )
{
int i;
- clif_displaymessage(sd->fd, "Your actual memo positions are:");
+ clif_displaymessage(sd->fd, msg_txt(668));
for( i = 0; i < MAX_MEMOPOINTS; i++ )
{
if( sd->status.memo_point[i].map )