diff options
author | Jonatas L. Nogueira <cpntb1@ymail.com> | 2016-11-14 23:28:41 -0200 |
---|---|---|
committer | Jonatas L. Nogueira <cpntb1@ymail.com> | 2016-11-14 23:28:41 -0200 |
commit | d43253529080a39f807826fb7f8fb91144c46065 (patch) | |
tree | 51be5d917bd2d467f9cfa0bbfebf6ea04f502a04 | |
parent | e0f9a1490c524532f452dcb6891f6a434c4ee08d (diff) | |
download | serverdata-d43253529080a39f807826fb7f8fb91144c46065.tar.gz serverdata-d43253529080a39f807826fb7f8fb91144c46065.tar.bz2 serverdata-d43253529080a39f807826fb7f8fb91144c46065.tar.xz serverdata-d43253529080a39f807826fb7f8fb91144c46065.zip |
Upper case player name when shouting it to Darlin (map: 000-1).
-rw-r--r-- | npc/000-1/darlin.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/000-1/darlin.txt b/npc/000-1/darlin.txt index 57544533..1288ad83 100644 --- a/npc/000-1/darlin.txt +++ b/npc/000-1/darlin.txt @@ -70,12 +70,12 @@ menu l("I said... WHY DON'T YOU COME DOWN TO TALK?"), L_GoDown, l("I SAID, SEE YOU LATER!"), L_Bye, - l("I'M CALLED, @@!", strcharinfo(0)), -; + l("I'M CALLED, @@!", strtoupper(strcharinfo(0))), -; setcamnpc; mes ""; mesn; - mesq strcharinfo(0) + "? " + l("THAT'S A NICE NAME!"); + mesq strtoupper(strcharinfo(0)) + "? " + l("THAT'S A NICE NAME!"); next; mesq l("SO WHAT'S UP?! WHAT ARE YOU DOING?!"); next; |