diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-30 23:08:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-30 23:53:01 +0300 |
commit | fa3cebb9833c816fc465df3cbcde00097021e7f5 (patch) | |
tree | 0859ad1dd331a75b8b3982e3c6976eea16bfd428 /npc/001-1/fexil.txt | |
parent | de42250f8fc22714dd5887c60a99d41d17a990fc (diff) | |
download | serverdata-fa3cebb9833c816fc465df3cbcde00097021e7f5.tar.gz serverdata-fa3cebb9833c816fc465df3cbcde00097021e7f5.tar.bz2 serverdata-fa3cebb9833c816fc465df3cbcde00097021e7f5.tar.xz serverdata-fa3cebb9833c816fc465df3cbcde00097021e7f5.zip |
Replace countitemcolor to countitem.
Diffstat (limited to 'npc/001-1/fexil.txt')
-rw-r--r-- | npc/001-1/fexil.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/001-1/fexil.txt b/npc/001-1/fexil.txt index 5a13b094..ddf908b0 100644 --- a/npc/001-1/fexil.txt +++ b/npc/001-1/fexil.txt @@ -79,7 +79,7 @@ menuint l("OK, let's trade."), 1, rif(.@fexil == 2, l("Do you still need help?")), 2, - rif(.@fexil > 2 && countitemcolor(729) > 0, l("I have some fur for you.")), 3, + rif(.@fexil > 2 && countitem(729) > 0, l("I have some fur for you.")), 3, l("No, Sorry."), 4; switch (@menuret) @@ -107,7 +107,7 @@ l("Please enter a valid amount."); continue; } - if (.@amount > countitemcolor(729)) + if (.@amount > countitem(729)) { speech 5, l("You don't have enough @@ on yourself.", getitemlink(729)); |