From 8354b22e70f5bab38942dfd43725476c82bf9acf Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 17 Jan 2020 18:07:27 -0300 Subject: Improve readability on pet sales scripts --- npc/functions/petsales.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'npc/functions/petsales.txt') diff --git a/npc/functions/petsales.txt b/npc/functions/petsales.txt index c23712be4..8e3715eae 100644 --- a/npc/functions/petsales.txt +++ b/npc/functions/petsales.txt @@ -11,7 +11,9 @@ function script PDQ_InnerSwitch { .@iid=getarg(1); .@val=getarg(2, 30); - .@price=.@val*(PETMEMO[GHQ_GetQuestIDByMonsterID(.@mid)]+1)+PETMEMO[GHQ_GetQuestIDByMonsterID(.@mid)]; + .@qid=GHQ_GetQuestIDByMonsterID(.@mid); + .@price=.@val*(PETMEMO[.@qid]+1)+PETMEMO[.@qid]; + mesn; mesq l("That'll cost you @@/@@ @@.", countitem(.@iid), .@price, getitemlink(.@iid)); next; @@ -20,7 +22,7 @@ function script PDQ_InnerSwitch { delitem .@iid, .@price; makepet .@mid; getexp .@price*BaseLevel, 0; - PETMEMO[GHQ_GetQuestIDByMonsterID(.@mid)]+=1; + PETMEMO[.@qid]+=1; mesn; mesq l("There you go!"); return 1; -- cgit v1.2.3-60-g2f50