diff options
author | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-14 23:45:41 +0000 |
---|---|---|
committer | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-14 23:45:41 +0000 |
commit | 21be322479695f6fb792c19e13498a34c6fad7bd (patch) | |
tree | ff6686bd93ac1589a3aa7fd6e2bc9d12d4c26411 /npc/jobs | |
parent | d533ac380d98effd3667a1090e889cd6811b8ce9 (diff) | |
download | hercules-21be322479695f6fb792c19e13498a34c6fad7bd.tar.gz hercules-21be322479695f6fb792c19e13498a34c6fad7bd.tar.bz2 hercules-21be322479695f6fb792c19e13498a34c6fad7bd.tar.xz hercules-21be322479695f6fb792c19e13498a34c6fad7bd.zip |
Fixed bad variables on dancer job quest, bugreport:1685
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12835 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs')
-rw-r--r-- | npc/jobs/2-2/dancer.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/jobs/2-2/dancer.txt b/npc/jobs/2-2/dancer.txt index 6d7b768f6..b4e5a6f44 100644 --- a/npc/jobs/2-2/dancer.txt +++ b/npc/jobs/2-2/dancer.txt @@ -15,6 +15,7 @@ //= No longer uses function "F_BlockHigh" //= 3.2a Deleted unused variables. [Samuray22] //= 3.3 Updated waiting room. (Removes global var) [L0ne_W0lf] +//= 3.4 Fixed bad variables, bugreport:1685 [Brainstorm] //============================================================ comodo,180,153,4 script Sonotora#1 90,{ @@ -326,10 +327,10 @@ job_duncer,43,93,4 script Aile#da 724,{ mes "Bring..."; mes "^CD688910,000 Zeny^000000,"; if (DANC_Q == 2) { - mes "^CD6889"+.@count[0]+" "+getitemname(.@items[0])+"^000000,"; - mes "^CD6889"+.@count[1]+" "+getitemname(.@items[1])+"^000000,"; - mes "^CD6889"+.@count[2]+" "+getitemname(.@items[2])+"^000000 and"; - mes "^CD6889"+.@count[3]+" "+getitemname(.@items[3])+"^000000."; + mes "^CD6889"+.@count[0]+" "+getitemname(.@item[0])+"^000000,"; + mes "^CD6889"+.@count[1]+" "+getitemname(.@item[1])+"^000000,"; + mes "^CD6889"+.@count[2]+" "+getitemname(.@item[2])+"^000000 and"; + mes "^CD6889"+.@count[3]+" "+getitemname(.@item[3])+"^000000."; } else if (DANC_Q == 3) { mes "^CD6889"+.@count[0]+" "+getitemname(.@item[0])+"^000000 and"; |