diff options
author | wushin <pasekei@gmail.com> | 2015-08-02 22:43:33 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2015-08-02 22:43:33 -0500 |
commit | 25eeb39dfe54120166f15048a85b3783a492c570 (patch) | |
tree | 5f2e32a25ea318a9c0ff5a7c3e91f6eb0c900b86 /world/map/npc/functions | |
parent | a11983b67bfd934add90457494a3bbdfb7c7cd9a (diff) | |
download | serverdata-25eeb39dfe54120166f15048a85b3783a492c570.tar.gz serverdata-25eeb39dfe54120166f15048a85b3783a492c570.tar.bz2 serverdata-25eeb39dfe54120166f15048a85b3783a492c570.tar.xz serverdata-25eeb39dfe54120166f15048a85b3783a492c570.zip |
Fix Broken Nick Message
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r-- | world/map/npc/functions/default_npc_checks.txt | 4 | ||||
-rw-r--r-- | world/map/npc/functions/motdconfig.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/functions/default_npc_checks.txt b/world/map/npc/functions/default_npc_checks.txt index c714c931..da080e82 100644 --- a/world/map/npc/functions/default_npc_checks.txt +++ b/world/map/npc/functions/default_npc_checks.txt @@ -21,11 +21,11 @@ function|script|PCtoNPCRange if(@distance_handler) goto L_Return; set @dnpc_name$, strnpcinfo(1); if(@dnpc_name$ != "") goto L_Named; - message strcharinfo(0), "##3Server : ##BYou need to move closer to interact with this npc."; + message strcharinfo(0), "Server : ##BYou need to move closer to interact with this npc."; goto L_Return; L_Named: - message strcharinfo(0), "##3"+@dnpc_name$+" : ##BPlease move closer."; + message strcharinfo(0), ""+@dnpc_name$+" : ##BPlease move closer."; goto L_Return; L_Return: diff --git a/world/map/npc/functions/motdconfig.txt b/world/map/npc/functions/motdconfig.txt index 9ad2b43f..2d0ae049 100644 --- a/world/map/npc/functions/motdconfig.txt +++ b/world/map/npc/functions/motdconfig.txt @@ -30,7 +30,7 @@ function|script|DisplayMOTD goto L_MOTD; L_MOTD: - message strcharinfo(0), "##7Server : " + $@MOTD$[@motd_index]; + message strcharinfo(0), "Server : " + $@MOTD$[@motd_index]; set @motd_index, @motd_index + 1; if($@MOTD$[@motd_index] == "") goto L_Return; goto L_MOTD; |